diff --git a/code/ATMOSPHERICS/components/trinary_devices/mixer.dm b/code/ATMOSPHERICS/components/trinary_devices/mixer.dm index 84c5d49daa..8bf3d3477c 100644 --- a/code/ATMOSPHERICS/components/trinary_devices/mixer.dm +++ b/code/ATMOSPHERICS/components/trinary_devices/mixer.dm @@ -85,20 +85,21 @@ to_chat(user, "Access denied.") return usr.set_machine(src) + var/list/node_connects = get_node_connect_dirs() var/dat = {"Power: [use_power?"On":"Off"]
Set Flow Rate Limit: [set_flow_rate]L/s | Change
Flow Rate: [round(last_flow_rate, 0.1)]L/s

- Node 1 Concentration: + Node 1 ([dir_name(node_connects[1],TRUE)]) Concentration: - - [mixing_inputs[air1]]([mixing_inputs[air1]*100]%) + +
- Node 2 Concentration: + Node 2 ([dir_name(node_connects[2],TRUE)]) Concentration: - - [mixing_inputs[air2]]([mixing_inputs[air2]*100]%) diff --git a/code/ATMOSPHERICS/components/unary/vent_pump.dm b/code/ATMOSPHERICS/components/unary/vent_pump.dm index 1f7414e17f..0d72808545 100644 --- a/code/ATMOSPHERICS/components/unary/vent_pump.dm +++ b/code/ATMOSPHERICS/components/unary/vent_pump.dm @@ -47,6 +47,8 @@ var/radio_filter_out var/radio_filter_in + var/datum/looping_sound/air_pump/soundloop + /obj/machinery/atmospherics/unary/vent_pump/on use_power = 1 icon_state = "map_vent_out" @@ -68,6 +70,10 @@ pressure_checks = 2 pressure_checks_default = 2 +/obj/machinery/atmospherics/unary/vent_pump/Initialize() + . = ..() + soundloop = new(list(src), FALSE) + /obj/machinery/atmospherics/unary/vent_pump/New() ..() air_contents.volume = ATMOS_DEFAULT_VOLUME_PUMP @@ -84,6 +90,7 @@ if(initial_loc) initial_loc.air_vent_info -= id_tag initial_loc.air_vent_names -= id_tag + QDEL_NULL(soundloop) return ..() /obj/machinery/atmospherics/unary/vent_pump/high_volume @@ -164,11 +171,15 @@ /obj/machinery/atmospherics/unary/vent_pump/proc/can_pump() if(stat & (NOPOWER|BROKEN)) + soundloop.stop() return 0 if(!use_power) + soundloop.stop() return 0 if(welded) + soundloop.stop() return 0 + soundloop.start() return 1 /obj/machinery/atmospherics/unary/vent_pump/process() diff --git a/code/ZAS/Airflow.dm b/code/ZAS/Airflow.dm index 394fe72478..59837bbe5f 100644 --- a/code/ZAS/Airflow.dm +++ b/code/ZAS/Airflow.dm @@ -9,13 +9,13 @@ mob/proc/airflow_stun() if(last_airflow_stun > world.time - vsc.airflow_stun_cooldown) return 0 if(!(status_flags & CANSTUN) && !(status_flags & CANWEAKEN)) - src << "You stay upright as the air rushes past you." + to_chat(src, "You stay upright as the air rushes past you.") return 0 if(buckled) - src << "Air suddenly rushes past you!" + to_chat(src, "Air suddenly rushes past you!") return 0 if(!lying) - src << "The sudden rush of air knocks you over!" + to_chat(src, "The sudden rush of air knocks you over!") Weaken(5) last_airflow_stun = world.time diff --git a/code/ZAS/Diagnostic.dm b/code/ZAS/Diagnostic.dm index 29ab678ef1..41fcdcad85 100644 --- a/code/ZAS/Diagnostic.dm +++ b/code/ZAS/Diagnostic.dm @@ -10,10 +10,10 @@ client/proc/ZoneTick() var/result = air_master.Tick() if(result) - src << "Successfully Processed." + to_chat(src, "Successfully Processed.") else - src << "Failed to process! ([air_master.tick_progress])" + to_chat(src, "Failed to process! ([air_master.tick_progress])") */ client/proc/Zone_Info(turf/T as null|turf) diff --git a/code/ZAS/Phoron.dm b/code/ZAS/Phoron.dm index 6ffec0be99..e12beb900f 100644 --- a/code/ZAS/Phoron.dm +++ b/code/ZAS/Phoron.dm @@ -102,11 +102,12 @@ obj/var/contaminated = 0 if(vsc.plc.SKIN_BURNS && (species.breath_type != "phoron")) if(!pl_head_protected() || !pl_suit_protected()) burn_skin(0.75) - if(prob(20)) src << "Your skin burns!" + if(prob(20)) + to_chat(src, "Your skin burns!") updatehealth() //Burn eyes if exposed. - if(vsc.plc.EYE_BURNS && (species.breath_type != "phoron")) + if(vsc.plc.EYE_BURNS && species.breath_type && (species.breath_type != "phoron")) //VOREStation Edit: those who don't breathe var/burn_eyes = 1 //Check for protective glasses @@ -133,17 +134,18 @@ obj/var/contaminated = 0 if(vsc.plc.GENETIC_CORRUPTION && (species.breath_type != "phoron")) if(rand(1,10000) < vsc.plc.GENETIC_CORRUPTION) randmutb(src) - src << "High levels of toxins cause you to spontaneously mutate!" + to_chat(src, "High levels of toxins cause you to spontaneously mutate!") domutcheck(src,null) /mob/living/carbon/human/proc/burn_eyes() var/obj/item/organ/internal/eyes/E = internal_organs_by_name[O_EYES] if(E) - if(prob(20)) src << "Your eyes burn!" + if(prob(20)) + to_chat(src, "Your eyes burn!") E.damage += 2.5 eye_blurry = min(eye_blurry+1.5,50) if (prob(max(0,E.damage - 15) + 1) &&!eye_blind) - src << "You are blinded!" + to_chat(src, "You are blinded!") Blind(20) /mob/living/carbon/human/proc/pl_head_protected() diff --git a/code/__defines/chemistry.dm b/code/__defines/chemistry.dm index 399c7e879b..0976ed5ea3 100644 --- a/code/__defines/chemistry.dm +++ b/code/__defines/chemistry.dm @@ -35,6 +35,7 @@ #define CE_ALCOHOL_TOXIC "alcotoxic" // Liver damage #define CE_SPEEDBOOST "gofast" // Hyperzine #define CE_SLOWDOWN "goslow" // Slowdown +#define CE_ANTACID "nopuke" // Don't puke. #define REAGENTS_PER_SHEET 20 diff --git a/code/__defines/chemistry_vr.dm b/code/__defines/chemistry_vr.dm index 094bfc2139..f15ebd4a56 100644 --- a/code/__defines/chemistry_vr.dm +++ b/code/__defines/chemistry_vr.dm @@ -1,2 +1,3 @@ // More for our custom races -#define IS_CHIMERA 12 \ No newline at end of file +#define IS_CHIMERA 12 +#define IS_SHADEKIN 13 \ No newline at end of file diff --git a/code/__defines/misc.dm b/code/__defines/misc.dm index 7f7e9e705e..69b91d0dc3 100644 --- a/code/__defines/misc.dm +++ b/code/__defines/misc.dm @@ -348,10 +348,12 @@ var/global/list/##LIST_NAME = list();\ #define RCD_MAX_CAPACITY 30 * RCD_SHEETS_PER_MATTER_UNIT // Radiation 'levels'. Used for the geiger counter, for visuals and sound. They are in different files so this goes here. -#define RAD_LEVEL_LOW 0.01 // Around the level at which radiation starts to become harmful -#define RAD_LEVEL_MODERATE 10 +#define RAD_LEVEL_LOW 0.5 // Around the level at which radiation starts to become harmful +#define RAD_LEVEL_MODERATE 5 #define RAD_LEVEL_HIGH 25 -#define RAD_LEVEL_VERY_HIGH 50 +#define RAD_LEVEL_VERY_HIGH 75 + +#define RADIATION_THRESHOLD_CUTOFF 0.1 // Radiation will not affect a tile when below this value. //https://secure.byond.com/docs/ref/info.html#/atom/var/mouse_opacity #define MOUSE_OPACITY_TRANSPARENT 0 diff --git a/code/__defines/mobs.dm b/code/__defines/mobs.dm index efb94d4963..de9ffa6cf9 100644 --- a/code/__defines/mobs.dm +++ b/code/__defines/mobs.dm @@ -194,10 +194,24 @@ #define O_KIDNEYS "kidneys" #define O_APPENDIX "appendix" #define O_VOICE "voicebox" -#define O_STANDARD list(O_EYES, O_HEART, O_LUNGS, O_BRAIN, O_LIVER, O_KIDNEYS, O_APPENDIX, O_VOICE) +#define O_SPLEEN "spleen" +#define O_STOMACH "stomach" +#define O_INTESTINE "intestine" +#define O_STANDARD list(O_EYES, O_HEART, O_LUNGS, O_BRAIN, O_LIVER, O_KIDNEYS, O_SPLEEN, O_APPENDIX, O_VOICE, O_STOMACH, O_INTESTINE) // Augments -#define O_AUG_TSHADE "integrated thermolensing implant" +#define O_AUG_EYES "occular augment" + +#define O_AUG_L_FOREARM "left forearm augment" +#define O_AUG_R_FOREARM "right forearm augment" +#define O_AUG_L_UPPERARM "left upperarm augment" +#define O_AUG_R_UPPERARM "right upperarm augment" +#define O_AUG_L_HAND "left hand augment" +#define O_AUG_R_HAND "right hand augment" + +#define O_AUG_RIBS "rib augment" +#define O_AUG_SPINE "spinal augment" +#define O_AUG_PELVIC "pelvic augment" // Non-Standard organs #define O_MOUTH "mouth" diff --git a/code/__defines/mobs_vr.dm b/code/__defines/mobs_vr.dm index fadd802c84..924b8b4814 100644 --- a/code/__defines/mobs_vr.dm +++ b/code/__defines/mobs_vr.dm @@ -35,3 +35,6 @@ #define SPECIES_MONKEY_NEVREAN "Sparra" #define SPECIES_MONKEY_SERGAL "Saru" #define SPECIES_MONKEY_VULPKANIN "Wolpin" + +#define SPECIES_WEREBEAST "Werebeast" +#define SPECIES_SHADEKIN "Shadekin" diff --git a/code/__defines/mobs_yw.dm b/code/__defines/mobs_yw.dm new file mode 100644 index 0000000000..adceca8519 --- /dev/null +++ b/code/__defines/mobs_yw.dm @@ -0,0 +1 @@ +#define SPECIES_SHADEKIN_YW "GeneShadekin" \ No newline at end of file diff --git a/code/__defines/sound.dm b/code/__defines/sound.dm index 0995f0e071..d954d34b2a 100644 --- a/code/__defines/sound.dm +++ b/code/__defines/sound.dm @@ -8,11 +8,12 @@ #define CHANNEL_AMBIENCE 1018 #define CHANNEL_BUZZ 1017 #define CHANNEL_BICYCLE 1016 +#define CHANNEL_PREYLOOP 1015 //VORESTATION ADD - Fancy Sound Loop channel //THIS SHOULD ALWAYS BE THE LOWEST ONE! //KEEP IT UPDATED -#define CHANNEL_HIGHEST_AVAILABLE 1015 +#define CHANNEL_HIGHEST_AVAILABLE 1014 //VORESTATION EDIT - Fancy Sound Loop channel from 1015 #define SOUND_MINIMUM_PRESSURE 10 #define FALLOFF_SOUNDS 0.5 diff --git a/code/_helpers/_global_objects_vr.dm b/code/_helpers/_global_objects_vr.dm new file mode 100644 index 0000000000..84642cc4d1 --- /dev/null +++ b/code/_helpers/_global_objects_vr.dm @@ -0,0 +1 @@ +var/datum/gear_tweak/collar_tag/gear_tweak_collar_tag = new() \ No newline at end of file diff --git a/code/_helpers/atmospherics.dm b/code/_helpers/atmospherics.dm index 2fe393b4dc..e211ed329a 100644 --- a/code/_helpers/atmospherics.dm +++ b/code/_helpers/atmospherics.dm @@ -1,4 +1,4 @@ -/obj/proc/analyze_gases(var/obj/A, var/mob/user) +/obj/proc/analyze_gases(var/atom/A, var/mob/user) if(src != A) user.visible_message("\The [user] has used \an [src] on \the [A]") @@ -13,12 +13,12 @@ user << "Your [src] flashes a red light as it fails to analyze \the [A]." return 0 -/proc/atmosanalyzer_scan(var/obj/target, var/datum/gas_mixture/mixture, var/mob/user) - var/pressure = mixture.return_pressure() - var/total_moles = mixture.total_moles - +/proc/atmosanalyzer_scan(var/atom/target, var/datum/gas_mixture/mixture, var/mob/user) var/list/results = list() - if (total_moles>0) + + if (mixture && mixture.total_moles > 0) + var/pressure = mixture.return_pressure() + var/total_moles = mixture.total_moles results += "Pressure: [round(pressure,0.1)] kPa" for(var/mix in mixture.gas) results += "[gas_data.name[mix]]: [round((mixture.gas[mix] / total_moles) * 100)]%" @@ -28,7 +28,10 @@ return results -/obj/proc/atmosanalyze(var/mob/user) +/turf/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air, user) + +/atom/proc/atmosanalyze(var/mob/user) return /obj/item/weapon/tank/atmosanalyze(var/mob/user) @@ -40,6 +43,33 @@ /obj/machinery/atmospherics/pipe/atmosanalyze(var/mob/user) return atmosanalyzer_scan(src, src.parent.air, user) +/obj/machinery/atmospherics/portables_connector/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.network.gases, user) + +/obj/machinery/atmospherics/unary/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air_contents, user) + +/obj/machinery/atmospherics/binary/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air1, user) + +/obj/machinery/atmospherics/trinary/atmos_filter/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air1, user) + +/obj/machinery/atmospherics/trinary/mixer/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.air3, user) + +/obj/machinery/atmospherics/omni/atmos_filter/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.input.air, user) + +/obj/machinery/atmospherics/omni/mixer/atmosanalyze(var/mob/user) + return atmosanalyzer_scan(src, src.output.air, user) + +/obj/machinery/meter/atmosanalyze(var/mob/user) + var/datum/gas_mixture/mixture = null + if(src.target) + mixture = src.target.parent.air + return atmosanalyzer_scan(src, mixture, user) + /obj/machinery/power/rad_collector/atmosanalyze(var/mob/user) if(P) return atmosanalyzer_scan(src, src.P.air_contents, user) diff --git a/code/_helpers/files.dm b/code/_helpers/files.dm index 4a7b9fa646..dd8c5dd690 100644 --- a/code/_helpers/files.dm +++ b/code/_helpers/files.dm @@ -39,7 +39,7 @@ var/extension = copytext(path,-4,0) if( !fexists(path) || !(extension in valid_extensions) ) - src << "Error: browse_files(): File not found/Invalid file([path])." + to_chat(src, "Error: browse_files(): File not found/Invalid file([path]).") return return path @@ -53,7 +53,7 @@ /client/proc/file_spam_check() var/time_to_wait = fileaccess_timer - world.time if(time_to_wait > 0) - src << "Error: file_spam_check(): Spam. Please wait [round(time_to_wait/10)] seconds." + to_chat(src, "Error: file_spam_check(): Spam. Please wait [round(time_to_wait/10)] seconds.") return 1 fileaccess_timer = world.time + FTPDELAY return 0 diff --git a/code/_helpers/global_lists_vr.dm b/code/_helpers/global_lists_vr.dm index d1037b37ab..702cca5139 100644 --- a/code/_helpers/global_lists_vr.dm +++ b/code/_helpers/global_lists_vr.dm @@ -42,40 +42,8 @@ var/global/list/item_vore_blacklist = list( /obj/item/weapon/disk/nuclear, /obj/item/clothing/suit/storage/hooded/wintercoat/roiz) -var/global/list/digestion_sounds = list( - 'sound/vore/digest1.ogg', - 'sound/vore/digest2.ogg', - 'sound/vore/digest3.ogg', - 'sound/vore/digest4.ogg', - 'sound/vore/digest5.ogg', - 'sound/vore/digest6.ogg', - 'sound/vore/digest7.ogg', - 'sound/vore/digest8.ogg', - 'sound/vore/digest9.ogg', - 'sound/vore/digest10.ogg', - 'sound/vore/digest11.ogg', - 'sound/vore/digest12.ogg') - -var/global/list/death_sounds = list( - 'sound/vore/death1.ogg', - 'sound/vore/death2.ogg', - 'sound/vore/death3.ogg', - 'sound/vore/death4.ogg', - 'sound/vore/death5.ogg', - 'sound/vore/death6.ogg', - 'sound/vore/death7.ogg', - 'sound/vore/death8.ogg', - 'sound/vore/death9.ogg', - 'sound/vore/death10.ogg') - -var/global/list/hunger_sounds = list( - 'sound/vore/growl1.ogg', - 'sound/vore/growl2.ogg', - 'sound/vore/growl3.ogg', - 'sound/vore/growl4.ogg', - 'sound/vore/growl5.ogg') - -var/global/list/vore_sounds = list( +//Classic Vore sounds +var/global/list/classic_vore_sounds = list( "Gulp" = 'sound/vore/gulp.ogg', "Insert" = 'sound/vore/insert.ogg', "Insertion1" = 'sound/vore/insertion1.ogg', @@ -86,15 +54,55 @@ var/global/list/vore_sounds = list( "Squish2" = 'sound/vore/squish2.ogg', "Squish3" = 'sound/vore/squish3.ogg', "Squish4" = 'sound/vore/squish4.ogg', - "Rustle (cloth)" = 'sound/effects/rustle5.ogg', + "Rustle (cloth)" = 'sound/effects/rustle1.ogg', + "Rustle 2 (cloth)" = 'sound/effects/rustle2.ogg', + "Rustle 3 (cloth)" = 'sound/effects/rustle3.ogg', + "Rustle 4 (cloth)" = 'sound/effects/rustle4.ogg', + "Rustle 5 (cloth)" = 'sound/effects/rustle5.ogg', "None" = null) -var/global/list/struggle_sounds = list( - "Squish1" = 'sound/vore/squish1.ogg', - "Squish2" = 'sound/vore/squish2.ogg', - "Squish3" = 'sound/vore/squish3.ogg', - "Squish4" = 'sound/vore/squish4.ogg') +var/global/list/classic_release_sounds = list( + "Rustle (cloth)" = 'sound/effects/rustle1.ogg', + "Rustle 2 (cloth)" = 'sound/effects/rustle2.ogg', + "Rustle 3 (cloth)" = 'sound/effects/rustle3.ogg', + "Rustle 4 (cloth)" = 'sound/effects/rustle4.ogg', + "Rustle 5 (cloth)" = 'sound/effects/rustle5.ogg', + "Splatter" = 'sound/effects/splat.ogg', + "None" = null + ) +//Poojy's Fancy Sounds +var/global/list/fancy_vore_sounds = list( + "Gulp" = 'sound/vore/sunesound/pred/swallow_01.ogg', + "Swallow" = 'sound/vore/sunesound/pred/swallow_02.ogg', + "Insertion1" = 'sound/vore/sunesound/pred/insertion_01.ogg', + "Insertion2" = 'sound/vore/sunesound/pred/insertion_02.ogg', + "Tauric Swallow" = 'sound/vore/sunesound/pred/taurswallow.ogg', + "Stomach Move" = 'sound/vore/sunesound/pred/stomachmove.ogg', + "Schlorp" = 'sound/vore/sunesound/pred/schlorp.ogg', + "Squish1" = 'sound/vore/sunesound/pred/squish_01.ogg', + "Squish2" = 'sound/vore/sunesound/pred/squish_02.ogg', + "Squish3" = 'sound/vore/sunesound/pred/squish_03.ogg', + "Squish4" = 'sound/vore/sunesound/pred/squish_04.ogg', + "Rustle (cloth)" = 'sound/effects/rustle1.ogg', + "Rustle 2 (cloth)" = 'sound/effects/rustle2.ogg', + "Rustle 3 (cloth)" = 'sound/effects/rustle3.ogg', + "Rustle 4 (cloth)" = 'sound/effects/rustle4.ogg', + "Rustle 5 (cloth)" = 'sound/effects/rustle5.ogg', + "None" = null + ) + +var/global/list/fancy_release_sounds = list( + "Rustle (cloth)" = 'sound/effects/rustle1.ogg', + "Rustle 2 (cloth)" = 'sound/effects/rustle2.ogg', + "Rustle 3 (cloth)" = 'sound/effects/rustle3.ogg', + "Rustle 4 (cloth)" = 'sound/effects/rustle4.ogg', + "Rustle 5 (cloth)" = 'sound/effects/rustle5.ogg', + "Stomach Move" = 'sound/vore/sunesound/pred/stomachmove.ogg', + "Pred Escape" = 'sound/vore/sunesound/pred/escape.ogg', + "Splatter" = 'sound/effects/splat.ogg', + "None" = null + ) var/global/list/global_vore_egg_types = list( "Unathi" = UNATHI_EGG, @@ -399,7 +407,7 @@ var/global/list/contamination_colors = list("green", "beige", "pink") -//For the mechanic of leaving remains. Ones listed below are basically ones that got no bones. +//For the mechanic of leaving remains. Ones listed below are basically ones that got no bones or leave no trace after death. var/global/list/remainless_species = list(SPECIES_PROMETHEAN, SPECIES_DIONA, SPECIES_ALRAUNE, @@ -418,7 +426,9 @@ var/global/list/remainless_species = list(SPECIES_PROMETHEAN, SPECIES_XENO_SENTINEL, SPECIES_XENO_QUEEN, SPECIES_SHADOW, - SPECIES_GOLEM) //Some special species that may or may not be ever used in event too + SPECIES_GOLEM, //Some special species that may or may not be ever used in event too, + SPECIES_SHADEKIN, //Shadefluffers just poof away + SPECIES_SHADEKIN_YW) //YW edits /hook/startup/proc/init_vore_datum_ref_lists() var/paths diff --git a/code/_helpers/unsorted.dm b/code/_helpers/unsorted.dm index f031194a06..38773ce621 100644 --- a/code/_helpers/unsorted.dm +++ b/code/_helpers/unsorted.dm @@ -361,7 +361,7 @@ Turf and target are seperate in case you want to teleport some distance from a t break if(newname) break //That's a suitable name! - src << "Sorry, that [role]-name wasn't appropriate, please try another. It's possibly too long/short, has bad characters or is already taken." + to_chat(src, "Sorry, that [role]-name wasn't appropriate, please try another. It's possibly too long/short, has bad characters or is already taken.") if(!newname) //we'll stick with the oldname then return diff --git a/code/_onclick/click.dm b/code/_onclick/click.dm index 6cde264566..6fc470cc81 100644 --- a/code/_onclick/click.dm +++ b/code/_onclick/click.dm @@ -134,6 +134,12 @@ // A is a turf or is on a turf, or in something on a turf (pen in a box); but not something in something on a turf (pen in a box in a backpack) sdepth = A.storage_depth_turf() if(isturf(A) || isturf(A.loc) || (sdepth != -1 && sdepth <= 1)) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = src + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(A.Adjacent(src) || (W && W.attack_can_reach(src, A, W.reach)) ) // see adjacent.dm if(W) // Return 1 in attackby() to prevent afterattack() effects (when safely moving items for example) @@ -183,7 +189,7 @@ /mob/living/UnarmedAttack(var/atom/A, var/proximity_flag) if(!ticker) - src << "You cannot attack people before the game has started." + to_chat(src, "You cannot attack people before the game has started.") return 0 if(stat) @@ -316,7 +322,7 @@ nutrition = max(nutrition - rand(1,5),0) handle_regular_hud_updates() else - src << "You're out of energy! You need food!" + to_chat(src, "You're out of energy! You need food!") // Simple helper to face what you clicked on, in case it should be needed in more than one place /mob/proc/face_atom(var/atom/A) diff --git a/code/_onclick/cyborg.dm b/code/_onclick/cyborg.dm index 1dcc2bc955..8d107e8f64 100644 --- a/code/_onclick/cyborg.dm +++ b/code/_onclick/cyborg.dm @@ -45,7 +45,7 @@ if(is_component_functioning("camera")) aiCamera.captureimage(A, usr) else - src << "Your camera isn't functional." + to_chat(src, "Your camera isn't functional.") return /* diff --git a/code/_onclick/hud/_defines_vr.dm b/code/_onclick/hud/_defines_vr.dm new file mode 100644 index 0000000000..e72150b44c --- /dev/null +++ b/code/_onclick/hud/_defines_vr.dm @@ -0,0 +1,2 @@ +#define ui_shadekin_dark_display "EAST-1:28,CENTER-3:15" +#define ui_shadekin_energy_display "EAST-1:28,CENTER-4:15" \ No newline at end of file diff --git a/code/_onclick/hud/ability_screen_objects.dm b/code/_onclick/hud/ability_screen_objects.dm index d29ef9dd96..655a451e92 100644 --- a/code/_onclick/hud/ability_screen_objects.dm +++ b/code/_onclick/hud/ability_screen_objects.dm @@ -180,7 +180,8 @@ /mob/New() ..() - ability_master = new /obj/screen/movable/ability_master(src) + if(!ability_master) //VOREStation Edit: S H A D E K I N + ability_master = new /obj/screen/movable/ability_master(src) ///////////ACTUAL ABILITIES//////////// //This is what you click to do things// @@ -282,7 +283,7 @@ if(!mob) return // Paranoid. if(isnull(slot) || !isnum(slot)) - src << ".activate_ability requires a number as input, corrisponding to the slot you wish to use." + to_chat(src, ".activate_ability requires a number as input, corrisponding to the slot you wish to use.") return // Bad input. if(!mob.ability_master) return // No abilities. diff --git a/code/_onclick/hud/human.dm b/code/_onclick/hud/human.dm index 1c903700b0..f1aba60b10 100644 --- a/code/_onclick/hud/human.dm +++ b/code/_onclick/hud/human.dm @@ -293,6 +293,18 @@ mymob.nutrition_icon.screen_loc = ui_nutrition hud_elements |= mymob.nutrition_icon + //VOREStation Addition begin + mymob.shadekin_dark_display = new /obj/screen/shadekin/darkness() + mymob.shadekin_dark_display.screen_loc = ui_shadekin_dark_display + mymob.shadekin_dark_display.icon_state = "dark" + hud_elements |= mymob.shadekin_dark_display + + mymob.shadekin_energy_display = new /obj/screen/shadekin/energy() + mymob.shadekin_energy_display.screen_loc = ui_shadekin_energy_display + mymob.shadekin_energy_display.icon_state = "energy0" + hud_elements |= mymob.shadekin_energy_display + //VOREStation Addition end + mymob.ling_chem_display = new /obj/screen/ling/chems() mymob.ling_chem_display.screen_loc = ui_ling_chemical_display mymob.ling_chem_display.icon_state = "ling_chems" diff --git a/code/_onclick/hud/screen_objects_vr.dm b/code/_onclick/hud/screen_objects_vr.dm index ea6b72cd10..c1fbd99448 100644 --- a/code/_onclick/hud/screen_objects_vr.dm +++ b/code/_onclick/hud/screen_objects_vr.dm @@ -1,16 +1,19 @@ -/obj/screen/proc/Click_vr(location, control, params) //VORESTATION AI TEMPORARY REMOVAL +/obj/screen/proc/Click_vr(location, control, params) if(!usr) return 1 switch(name) //Shadekin if("darkness") - var/mob/living/simple_mob/shadekin/sk = usr - var/turf/T = get_turf(sk) + var/turf/T = get_turf(usr) var/darkness = round(1 - T.get_lumcount(),0.1) to_chat(usr,"Darkness: [darkness]") if("energy") - var/mob/living/simple_mob/shadekin/sk = usr - to_chat(usr,"Energy: [sk.energy] ([sk.dark_gains])") + var/mob/living/simple_mob/shadekin/SK = usr + if(istype(SK)) + to_chat(usr,"Energy: [SK.energy] ([SK.dark_gains])") + var/mob/living/carbon/human/H = usr + if(istype(H) && istype(H.species, /datum/species/shadekin)) + to_chat(usr,"Energy: [H.shadekin_get_energy(H)]") diff --git a/code/_onclick/observer.dm b/code/_onclick/observer.dm index f34a68a742..d5197cb30f 100644 --- a/code/_onclick/observer.dm +++ b/code/_onclick/observer.dm @@ -6,9 +6,9 @@ if(!client) return client.inquisitive_ghost = !client.inquisitive_ghost if(client.inquisitive_ghost) - src << "You will now examine everything you click on." + to_chat(src, "You will now examine everything you click on.") else - src << "You will no longer examine things you click on." + to_chat(src, "You will no longer examine things you click on.") /mob/observer/dead/DblClickOn(var/atom/A, var/params) if(client.buildmode) diff --git a/code/_onclick/rig.dm b/code/_onclick/rig.dm index 5f2561c25c..ed7a1c7e2f 100644 --- a/code/_onclick/rig.dm +++ b/code/_onclick/rig.dm @@ -18,15 +18,15 @@ switch(hardsuit_click_mode) if(MIDDLE_CLICK) - src << "Hardsuit activation mode set to middle-click." + to_chat(src, "Hardsuit activation mode set to middle-click.") if(ALT_CLICK) - src << "Hardsuit activation mode set to alt-click." + to_chat(src, "Hardsuit activation mode set to alt-click.") if(CTRL_CLICK) - src << "Hardsuit activation mode set to control-click." + to_chat(src, "Hardsuit activation mode set to control-click.") else // should never get here, but just in case: soft_assert(0, "Bad hardsuit click mode: [hardsuit_click_mode] - expected 0 to [MAX_HARDSUIT_CLICK_MODE]") - src << "Somehow you bugged the system. Setting your hardsuit mode to middle-click." + to_chat(src, "Somehow you bugged the system. Setting your hardsuit mode to middle-click.") hardsuit_click_mode = MIDDLE_CLICK /mob/living/MiddleClickOn(atom/A) diff --git a/code/controllers/Processes/planet.dm b/code/controllers/Processes/planet.dm deleted file mode 100644 index 18043f9270..0000000000 --- a/code/controllers/Processes/planet.dm +++ /dev/null @@ -1,96 +0,0 @@ -var/datum/controller/process/planet/planet_controller = null - -/datum/controller/process/planet - var/list/planets = list() - var/list/z_to_planet = list() - -/datum/controller/process/planet/setup() - name = "planet controller" - planet_controller = src - schedule_interval = 1 MINUTE - start_delay = 20 SECONDS - - var/list/planet_datums = typesof(/datum/planet) - /datum/planet - for(var/P in planet_datums) - var/datum/planet/NP = new P() - planets.Add(NP) - - allocateTurfs() - -/datum/controller/process/planet/proc/allocateTurfs() - for(var/turf/simulated/OT in outdoor_turfs) - for(var/datum/planet/P in planets) - if(OT.z in P.expected_z_levels) - P.planet_floors |= OT - OT.vis_contents |= P.weather_holder.visuals - break - outdoor_turfs.Cut() //Why were you in there INCORRECTLY? - - for(var/turf/unsimulated/wall/planetary/PW in planetary_walls) - for(var/datum/planet/P in planets) - if(PW.type == P.planetary_wall_type) - P.planet_walls |= PW - break - planetary_walls.Cut() - -/datum/controller/process/planet/proc/unallocateTurf(var/turf/T) - for(var/planet in planets) - var/datum/planet/P = planet - if(T.z in P.expected_z_levels) - P.planet_floors -= T - T.vis_contents -= P.weather_holder.visuals - -/datum/controller/process/planet/doWork() - if(outdoor_turfs.len || planetary_walls.len) - allocateTurfs() - - for(var/datum/planet/P in planets) - P.process(schedule_interval / 10) - SCHECK //Your process() really shouldn't take this long... - - //Sun light needs changing - if(P.needs_work & PLANET_PROCESS_SUN) - P.needs_work &= ~PLANET_PROCESS_SUN - // Remove old value from corners - var/list/sunlit_corners = P.sunlit_corners - var/old_lum_r = -P.sun["lum_r"] - var/old_lum_g = -P.sun["lum_g"] - var/old_lum_b = -P.sun["lum_b"] - if(old_lum_r || old_lum_g || old_lum_b) - for(var/C in P.sunlit_corners) - var/datum/lighting_corner/LC = C - LC.update_lumcount(old_lum_r, old_lum_g, old_lum_b) - SCHECK - sunlit_corners.Cut() - - // Calculate new values to apply - var/new_brightness = P.sun["brightness"] - var/new_color = P.sun["color"] - var/lum_r = new_brightness * GetRedPart (new_color) / 255 - var/lum_g = new_brightness * GetGreenPart(new_color) / 255 - var/lum_b = new_brightness * GetBluePart (new_color) / 255 - var/static/update_gen = -1 // Used to prevent double-processing corners. Otherwise would happen when looping over adjacent turfs. - for(var/I in P.planet_floors) - var/turf/simulated/T = I - if(!T.lighting_corners_initialised) - T.generate_missing_corners() - for(var/C in T.get_corners()) - var/datum/lighting_corner/LC = C - if(LC.update_gen != update_gen && LC.active) - sunlit_corners += LC - LC.update_gen = update_gen - LC.update_lumcount(lum_r, lum_g, lum_b) - SCHECK - update_gen-- - P.sun["lum_r"] = lum_r - P.sun["lum_g"] = lum_g - P.sun["lum_b"] = lum_b - - //Temperature needs updating - if(P.needs_work & PLANET_PROCESS_TEMP) - P.needs_work &= ~PLANET_PROCESS_TEMP - //Set new temperatures - for(var/W in P.planet_walls) - var/turf/unsimulated/wall/planetary/wall = W - wall.set_temperature(P.weather_holder.temperature) - SCHECK diff --git a/code/controllers/Processes/radiation.dm b/code/controllers/Processes/radiation.dm deleted file mode 100644 index 71d9c60233..0000000000 --- a/code/controllers/Processes/radiation.dm +++ /dev/null @@ -1,56 +0,0 @@ -/datum/controller/process/radiation - var/repository/radiation/linked = null - -/datum/controller/process/radiation/setup() - name = "radiation controller" - schedule_interval = 20 // every 2 seconds - linked = radiation_repository - -/datum/controller/process/radiation/doWork() - sources_decay() - cache_expires() - irradiate_targets() - -// Step 1 - Sources Decay -/datum/controller/process/radiation/proc/sources_decay() - var/list/sources = linked.sources - for(var/thing in sources) - var/datum/radiation_source/S = thing - if(QDELETED(S)) - sources.Remove(S) - continue - if(S.decay) - S.update_rad_power(S.rad_power - config.radiation_decay_rate) - if(S.rad_power <= config.radiation_lower_limit) - sources.Remove(S) - SCHECK // This scheck probably just wastes resources, but better safe than sorry in this case. - -// Step 2 - Cache Expires -/datum/controller/process/radiation/proc/cache_expires() - var/list/resistance_cache = linked.resistance_cache - for(var/thing in resistance_cache) - var/turf/T = thing - if(QDELETED(T)) - resistance_cache.Remove(T) - continue - if((length(T.contents) + 1) != resistance_cache[T]) - resistance_cache.Remove(T) // If its stale REMOVE it! It will get added if its needed. - SCHECK - -// Step 3 - Registered irradiatable things are checked for radiation -/datum/controller/process/radiation/proc/irradiate_targets() - var/list/registered_listeners = living_mob_list // For now just use this. Nothing else is interested anyway. - if(length(linked.sources) > 0) - for(var/thing in registered_listeners) - var/atom/A = thing - if(QDELETED(A)) - continue - var/turf/T = get_turf(thing) - var/rads = linked.get_rads_at_turf(T) - if(rads) - A.rad_act(rads) - SCHECK - -/datum/controller/process/radiation/statProcess() - ..() - stat(null, "[linked.sources.len] sources, [linked.resistance_cache.len] cached turfs") diff --git a/code/controllers/Processes/scheduler.dm b/code/controllers/Processes/scheduler.dm deleted file mode 100644 index ac5e4696ab..0000000000 --- a/code/controllers/Processes/scheduler.dm +++ /dev/null @@ -1,169 +0,0 @@ -/var/datum/controller/process/scheduler/scheduler - -/************ -* Scheduler * -************/ -/datum/controller/process/scheduler - var/list/scheduled_tasks - -/datum/controller/process/scheduler/setup() - name = "scheduler" - schedule_interval = 1 SECOND - scheduled_tasks = list() - scheduler = src - -/datum/controller/process/scheduler/doWork() - var/world_time = world.time - for(last_object in scheduled_tasks) - var/datum/scheduled_task/scheduled_task = last_object - if(world_time < scheduled_task.trigger_time) - break // Too early for this one, and therefore too early for all remaining. - try - unschedule(scheduled_task) - scheduled_task.pre_process() - scheduled_task.process() - scheduled_task.post_process() - catch(var/exception/e) - catchException(e, last_object) - SCHECK - -// We've been restarted, probably due to having a massive list of tasks. -// Lets copy over the task list as safely as we can and try to chug thru it... -// Note: We won't be informed about tasks being destroyed, but this is the best we can do. -/datum/controller/process/scheduler/copyStateFrom(var/datum/controller/process/scheduler/target) - scheduled_tasks = list() - for(var/datum/scheduled_task/st in target.scheduled_tasks) - if(!QDELETED(st) && istype(st)) - schedule(st) - scheduler = src - -// We are being killed. Least we can do is deregister all those events we registered -/datum/controller/process/scheduler/onKill() - for(var/st in scheduled_tasks) - GLOB.destroyed_event.unregister(st, src) - -/datum/controller/process/scheduler/statProcess() - ..() - stat(null, "[scheduled_tasks.len] task\s") - -/datum/controller/process/scheduler/proc/schedule(var/datum/scheduled_task/st) - dd_insertObjectList(scheduled_tasks, st) - -/datum/controller/process/scheduler/proc/unschedule(var/datum/scheduled_task/st) - scheduled_tasks -= st - -/********** -* Helpers * -**********/ -/proc/schedule_task_in(var/in_time, var/procedure, var/list/arguments = list()) - return schedule_task(world.time + in_time, procedure, arguments) - -/proc/schedule_callback_in(var/in_time, var/datum/callback) - return schedule_callback(world.time + in_time, callback) - -/proc/schedule_task_with_source_in(var/in_time, var/source, var/procedure, var/list/arguments = list()) - return schedule_task_with_source(world.time + in_time, source, procedure, arguments) - -/proc/schedule_task(var/trigger_time, var/procedure, var/list/arguments) - var/datum/scheduled_task/st = new/datum/scheduled_task(trigger_time, procedure, arguments, /proc/destroy_scheduled_task, list()) - scheduler.schedule(st) - return st - -/proc/schedule_callback(var/trigger_time, var/datum/callback) - var/datum/scheduled_task/callback/st = new/datum/scheduled_task/callback(trigger_time, callback, /proc/destroy_scheduled_task, list()) - scheduler.schedule(st) - return st - -/proc/schedule_task_with_source(var/trigger_time, var/source, var/procedure, var/list/arguments) - var/datum/scheduled_task/st = new/datum/scheduled_task/source(trigger_time, source, procedure, arguments, /proc/destroy_scheduled_task, list()) - scheduler.schedule(st) - return st - -/proc/schedule_repeating_task(var/trigger_time, var/repeat_interval, var/procedure, var/list/arguments) - var/datum/scheduled_task/st = new/datum/scheduled_task(trigger_time, procedure, arguments, /proc/repeat_scheduled_task, list(repeat_interval)) - scheduler.schedule(st) - return st - -/proc/schedule_repeating_task_with_source(var/trigger_time, var/repeat_interval, var/source, var/procedure, var/list/arguments) - var/datum/scheduled_task/st = new/datum/scheduled_task/source(trigger_time, source, procedure, arguments, /proc/repeat_scheduled_task, list(repeat_interval)) - scheduler.schedule(st) - return st - -/************* -* Task Datum * -*************/ -/datum/scheduled_task - var/trigger_time - var/procedure - var/list/arguments - var/task_after_process - var/list/task_after_process_args - -/datum/scheduled_task/New(var/trigger_time, var/procedure, var/list/arguments, var/proc/task_after_process, var/list/task_after_process_args) - ..() - src.trigger_time = trigger_time - src.procedure = procedure - src.arguments = arguments ? arguments : list() - src.task_after_process = task_after_process ? task_after_process : /proc/destroy_scheduled_task - src.task_after_process_args = istype(task_after_process_args) ? task_after_process_args : list() - task_after_process_args += src - -/datum/scheduled_task/Destroy() - scheduler.unschedule(src) - procedure = null - arguments.Cut() - task_after_process = null - task_after_process_args.Cut() - return ..() - -/datum/scheduled_task/dd_SortValue() - return trigger_time - -/datum/scheduled_task/proc/pre_process() - task_triggered_event.raise_event(list(src)) - -/datum/scheduled_task/proc/process() - if(procedure) - call(procedure)(arglist(arguments)) - -/datum/scheduled_task/proc/post_process() - call(task_after_process)(arglist(task_after_process_args)) - -// Resets the trigger time, has no effect if the task has already triggered -/datum/scheduled_task/proc/trigger_task_in(var/trigger_in) - src.trigger_time = world.time + trigger_in - -/datum/scheduled_task/callback - var/datum/callback/callback - -/datum/scheduled_task/callback/New(var/trigger_time, var/datum/callback, var/proc/task_after_process, var/list/task_after_process_args) - src.callback = callback - ..(trigger_time = trigger_time, task_after_process = task_after_process, task_after_process_args = task_after_process_args) - -/datum/scheduled_task/callback/process() - callback.Invoke() - -/datum/scheduled_task/source - var/datum/source - -/datum/scheduled_task/source/New(var/trigger_time, var/datum/source, var/procedure, var/list/arguments, var/proc/task_after_process, var/list/task_after_process_args) - src.source = source - GLOB.destroyed_event.register(src.source, src, /datum/scheduled_task/source/proc/source_destroyed) - ..(trigger_time, procedure, arguments, task_after_process, task_after_process_args) - -/datum/scheduled_task/source/Destroy() - source = null - return ..() - -/datum/scheduled_task/source/process() - call(source, procedure)(arglist(arguments)) - -/datum/scheduled_task/source/proc/source_destroyed() - qdel(src) - -/proc/destroy_scheduled_task(var/datum/scheduled_task/st) - qdel(st) - -/proc/repeat_scheduled_task(var/trigger_delay, var/datum/scheduled_task/st) - st.trigger_time = world.time + trigger_delay - scheduler.schedule(st) diff --git a/code/controllers/subsystems/radiation.dm b/code/controllers/subsystems/radiation.dm new file mode 100644 index 0000000000..babc2c7d5d --- /dev/null +++ b/code/controllers/subsystems/radiation.dm @@ -0,0 +1,135 @@ +SUBSYSTEM_DEF(radiation) + name = "Radiation" + wait = 2 SECONDS + flags = SS_NO_INIT + + var/list/sources = list() // all radiation source datums + var/list/sources_assoc = list() // Sources indexed by turf for de-duplication. + var/list/resistance_cache = list() // Cache of turf's radiation resistance. + + var/tmp/list/current_sources = list() + var/tmp/list/current_res_cache = list() + var/tmp/list/listeners = list() + +/datum/controller/subsystem/radiation/fire(resumed = FALSE) + if (!resumed) + current_sources = sources.Copy() + current_res_cache = resistance_cache.Copy() + listeners = living_mob_list.Copy() + + while(current_sources.len) + var/datum/radiation_source/S = current_sources[current_sources.len] + current_sources.len-- + + if(QDELETED(S)) + sources -= S + else if(S.decay) + S.update_rad_power(S.rad_power - config.radiation_decay_rate) + if (MC_TICK_CHECK) + return + + while(current_res_cache.len) + var/turf/T = current_res_cache[current_res_cache.len] + current_res_cache.len-- + + if(QDELETED(T)) + resistance_cache -= T + else if((length(T.contents) + 1) != resistance_cache[T]) + resistance_cache -= T // If its stale REMOVE it! It will get added if its needed. + if (MC_TICK_CHECK) + return + + if(!sources.len) + listeners.Cut() + + while(listeners.len) + var/atom/A = listeners[listeners.len] + listeners.len-- + + if(!QDELETED(A)) + var/turf/T = get_turf(A) + var/rads = get_rads_at_turf(T) + if(rads) + A.rad_act(rads) + if (MC_TICK_CHECK) + return + +/datum/controller/subsystem/radiation/stat_entry() + ..("S:[sources.len], RC:[resistance_cache.len]") + +// Ray trace from all active radiation sources to T and return the strongest effect. +/datum/controller/subsystem/radiation/proc/get_rads_at_turf(var/turf/T) + . = 0 + if(!istype(T)) + return + + for(var/value in sources) + var/datum/radiation_source/source = value + if(source.rad_power < .) + continue // Already being affected by a stronger source + if(source.source_turf.z != T.z) + continue // Radiation is not multi-z + if(source.respect_maint) + var/area/A = T.loc + if(A.flags & RAD_SHIELDED) + continue // In shielded area + + var/dist = get_dist(source.source_turf, T) + if(dist > source.range) + continue // Too far to possibly affect + if(source.flat) + . = max(., source.rad_power) + continue // No need to ray trace for flat field + + // Okay, now ray trace to find resistence! + var/turf/origin = source.source_turf + var/working = source.rad_power + while(origin != T) + origin = get_step_towards(origin, T) //Raytracing + if(!resistance_cache[origin]) //Only get the resistance if we don't already know it. + origin.calc_rad_resistance() + if(origin.cached_rad_resistance) + working = round((working / (origin.cached_rad_resistance * config.radiation_resistance_multiplier)), 0.1) + if((working <= .) || (working <= RADIATION_THRESHOLD_CUTOFF)) + break // Already affected by a stronger source (or its zero...) + . = max((working / (dist ** 2)), .) //Butchered version of the inverse square law. Works for this purpose + if(. <= RADIATION_THRESHOLD_CUTOFF) + . = 0 + +// Add a radiation source instance to the repository. It will override any existing source on the same turf. +/datum/controller/subsystem/radiation/proc/add_source(var/datum/radiation_source/S) + if(!isturf(S.source_turf)) + return + var/datum/radiation_source/existing = sources_assoc[S.source_turf] + if(existing) + qdel(existing) + sources += S + sources_assoc[S.source_turf] = S + +// Creates a temporary radiation source that will decay +/datum/controller/subsystem/radiation/proc/radiate(source, power) //Sends out a radiation pulse, taking walls into account + if(!(source && power)) //Sanity checking + return + var/datum/radiation_source/S = new() + S.source_turf = get_turf(source) + S.update_rad_power(power) + add_source(S) + +// Sets the radiation in a range to a constant value. +/datum/controller/subsystem/radiation/proc/flat_radiate(source, power, range, var/respect_maint = TRUE) //VOREStation edit; Respect shielded areas by default please. + if(!(source && power && range)) + return + var/datum/radiation_source/S = new() + S.flat = TRUE + S.range = range + S.respect_maint = respect_maint + S.source_turf = get_turf(source) + S.update_rad_power(power) + add_source(S) + +// Irradiates a full Z-level. Hacky way of doing it, but not too expensive. +/datum/controller/subsystem/radiation/proc/z_radiate(var/atom/source, power, var/respect_maint = TRUE) //VOREStation edit; Respect shielded areas by default please. + if(!(power && source)) + return + var/turf/epicentre = locate(round(world.maxx / 2), round(world.maxy / 2), source.z) + flat_radiate(epicentre, power, world.maxx, respect_maint) \ No newline at end of file diff --git a/code/controllers/subsystems/vote.dm b/code/controllers/subsystems/vote.dm index 641f356632..c4a720ad62 100644 --- a/code/controllers/subsystems/vote.dm +++ b/code/controllers/subsystems/vote.dm @@ -105,7 +105,7 @@ SUBSYSTEM_DEF(vote) factor = 1.4 choices["Initiate Crew Transfer"] = round(choices["Initiate Crew Transfer"] * factor) world << "Crew Transfer Factor: [factor]" - greatest_votes = max(choices["Initiate Crew Transfer"], choices["Continue The Round"]) + greatest_votes = max(choices["Initiate Crew Transfer"], choices["Extend the Shift"]) //VOREStation Edit . = list() // Get all options with that many votes and return them in a list if(greatest_votes) @@ -220,8 +220,8 @@ SUBSYSTEM_DEF(vote) if(ticker.current_state <= GAME_STATE_SETTING_UP) initiator_key << "The crew transfer button has been disabled!" return 0 - question = "End the shift?" - choices.Add("Initiate Crew Transfer", "Continue The Round") + question = "Your PDA beeps with a message from Central. Would you like an additional four hours to finish ongoing projects?" //Yawn Wider Edit + choices.Add("Initiate Crew Transfer", "Extend the Shift") //VOREStation Edit if(VOTE_ADD_ANTAGONIST) if(!config.allow_extra_antags || ticker.current_state >= GAME_STATE_SETTING_UP) return 0 diff --git a/code/datums/autolathe/arms_vr.dm b/code/datums/autolathe/arms_vr.dm index 72f0b9d15a..546141457d 100644 --- a/code/datums/autolathe/arms_vr.dm +++ b/code/datums/autolathe/arms_vr.dm @@ -32,3 +32,21 @@ name = "magazine (.44 rubber)" path =/obj/item/ammo_magazine/m44/rubber hidden = 1 + +/datum/category_item/autolathe/arms/classic_smg_9mm + name = "SMG magazine (9mm)" + path = /obj/item/ammo_magazine/m9mml + hidden = 1 +/* De-coded? +/datum/category_item/autolathe/arms/classic_smg_9mmr + name = "SMG magazine (9mm rubber)" + path = /obj/item/ammo_magazine/m9mml/rubber + +/datum/category_item/autolathe/arms/classic_smg_9mmp + name = "SMG magazine (9mm practice)" + path = /obj/item/ammo_magazine/m9mml/practice + +/datum/category_item/autolathe/arms/classic_smg_9mmf + name = "SMG magazine (9mm flash)" + path = /obj/item/ammo_magazine/m9mml/flash +*/ \ No newline at end of file diff --git a/code/datums/beam.dm b/code/datums/beam.dm index 24f5e6c91f..88fe9dbf1c 100644 --- a/code/datums/beam.dm +++ b/code/datums/beam.dm @@ -138,6 +138,12 @@ return /obj/effect/ebeam/deadly/Crossed(atom/A) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = A + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() A.ex_act(1) @@ -157,6 +163,12 @@ on_contact(A) /obj/effect/ebeam/reactive/Crossed(atom/A) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = A + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() on_contact(A) diff --git a/code/datums/helper_datums/getrev.dm b/code/datums/helper_datums/getrev.dm index aef0fd0ac2..4dad60db89 100644 --- a/code/datums/helper_datums/getrev.dm +++ b/code/datums/helper_datums/getrev.dm @@ -35,10 +35,10 @@ client/verb/showrevinfo() set desc = "Check the current server code revision" if(revdata.revision) - src << "Server revision: [revdata.branch] - [revdata.date]" + to_chat(src, "Server revision: [revdata.branch] - [revdata.date]") if(config.githuburl) - src << "[revdata.revision]" + to_chat(src, "[revdata.revision]") else src << revdata.revision else - src << "Revision unknown" + to_chat(src, "Revision unknown") diff --git a/code/datums/looping_sounds/machinery_sounds.dm b/code/datums/looping_sounds/machinery_sounds.dm index 8b927b3a54..599f8f4632 100644 --- a/code/datums/looping_sounds/machinery_sounds.dm +++ b/code/datums/looping_sounds/machinery_sounds.dm @@ -43,4 +43,15 @@ mid_sounds = list('sound/machines/microwave/microwave-mid1.ogg'=10, 'sound/machines/microwave/microwave-mid2.ogg'=1) mid_length = 10 end_sound = 'sound/machines/microwave/microwave-end.ogg' - volume = 90 \ No newline at end of file + volume = 90 + +//////////////////////////////////////////////////////////////////////////////////////////////////////////////////////// + +/datum/looping_sound/air_pump + start_sound = 'sound/machines/air_pump/airpumpstart.ogg' + start_length = 10 + mid_sounds = list('sound/machines/air_pump/airpumpidle.ogg' = 1) + mid_length = 4 + end_sound = 'sound/machines/air_pump/airpumpshutdown.ogg' + volume = 15 + pref_check = /datum/client_preference/air_pump_noise \ No newline at end of file diff --git a/code/datums/repositories/radiation.dm b/code/datums/repositories/radiation.dm deleted file mode 100644 index 4525032e20..0000000000 --- a/code/datums/repositories/radiation.dm +++ /dev/null @@ -1,138 +0,0 @@ -var/global/repository/radiation/radiation_repository = new() - -/repository/radiation - var/list/sources = list() // all radiation source datums - var/list/sources_assoc = list() // Sources indexed by turf for de-duplication. - var/list/resistance_cache = list() // Cache of turf's radiation resistance. - -// Describes a point source of radiation. Created either in response to a pulse of radiation, or over an irradiated atom. -// Sources will decay over time, unless something is renewing their power! -/datum/radiation_source - var/turf/source_turf // Location of the radiation source. - var/rad_power // Strength of the radiation being emitted. - var/decay = TRUE // True for automatic decay. False if owner promises to handle it (i.e. supermatter) - var/respect_maint = FALSE // True for not affecting RAD_SHIELDED areas. - var/flat = FALSE // True for power falloff with distance. - var/range // Cached maximum range, used for quick checks against mobs. - -/datum/radiation_source/Destroy() - radiation_repository.sources -= src - if(radiation_repository.sources_assoc[src.source_turf] == src) - radiation_repository.sources_assoc -= src.source_turf - src.source_turf = null - . = ..() - -/datum/radiation_source/proc/update_rad_power(var/new_power = null) - if(new_power == null || new_power == rad_power) - return // No change - else if(new_power <= 0) - qdel(src) // Decayed to nothing - else - rad_power = new_power - if(!flat) - range = min(round(sqrt(rad_power / config.radiation_lower_limit)), 31) // R = rad_power / dist**2 - Solve for dist - -// Ray trace from all active radiation sources to T and return the strongest effect. -/repository/radiation/proc/get_rads_at_turf(var/turf/T) - if(!istype(T)) return 0 - - . = 0 - for(var/value in sources) - var/datum/radiation_source/source = value - if(source.rad_power < .) - continue // Already being affected by a stronger source - if(source.source_turf.z != T.z) - continue // Radiation is not multi-z - var/dist = get_dist(source.source_turf, T) - if(dist > source.range) - continue // Too far to possibly affect - if(source.respect_maint) - var/atom/A = T.loc - if(A.flags & RAD_SHIELDED) - continue // In shielded area - if(source.flat) - . = max(., source.rad_power) - continue // No need to ray trace for flat field - - // Okay, now ray trace to find resistence! - var/turf/origin = source.source_turf - var/working = source.rad_power - while(origin != T) - origin = get_step_towards(origin, T) //Raytracing - if(!(origin in resistance_cache)) //Only get the resistance if we don't already know it. - origin.calc_rad_resistance() - working = max((working - (origin.cached_rad_resistance * config.radiation_resistance_multiplier)), 0) - if(working <= .) - break // Already affected by a stronger source (or its zero...) - . = max((working * (1 / (dist ** 2))), .) //Butchered version of the inverse square law. Works for this purpose - -// Add a radiation source instance to the repository. It will override any existing source on the same turf. -/repository/radiation/proc/add_source(var/datum/radiation_source/S) - if(!isturf(S.source_turf)) - return - var/datum/radiation_source/existing = sources_assoc[S.source_turf] - if(existing) - qdel(existing) - sources += S - sources_assoc[S.source_turf] = S - -// Creates a temporary radiation source that will decay -/repository/radiation/proc/radiate(source, power) //Sends out a radiation pulse, taking walls into account - if(!(source && power)) //Sanity checking - return - var/datum/radiation_source/S = new() - S.source_turf = get_turf(source) - S.update_rad_power(power) - add_source(S) - -// Sets the radiation in a range to a constant value. -/repository/radiation/proc/flat_radiate(source, power, range, var/respect_maint = TRUE) //VOREStation edit; Respect shielded areas by default please. - if(!(source && power && range)) - return - var/datum/radiation_source/S = new() - S.flat = TRUE - S.range = range - S.respect_maint = respect_maint - S.source_turf = get_turf(source) - S.update_rad_power(power) - add_source(S) - -// Irradiates a full Z-level. Hacky way of doing it, but not too expensive. -/repository/radiation/proc/z_radiate(var/atom/source, power, var/respect_maint = TRUE) //VOREStation edit; Respect shielded areas by default please. - if(!(power && source)) - return - var/turf/epicentre = locate(round(world.maxx / 2), round(world.maxy / 2), source.z) - flat_radiate(epicentre, power, world.maxx, respect_maint) - -/turf - var/cached_rad_resistance = 0 - -/turf/proc/calc_rad_resistance() - cached_rad_resistance = 0 - for(var/obj/O in src.contents) - if(O.rad_resistance) //Override - cached_rad_resistance += O.rad_resistance - - else if(O.density) //So open doors don't get counted - var/material/M = O.get_material() - if(!M) continue - cached_rad_resistance += M.weight + M.radiation_resistance - // Looks like storing the contents length is meant to be a basic check if the cache is stale due to items enter/exiting. Better than nothing so I'm leaving it as is. ~Leshana - radiation_repository.resistance_cache[src] = (length(contents) + 1) - -/turf/simulated/wall/calc_rad_resistance() - radiation_repository.resistance_cache[src] = (length(contents) + 1) - cached_rad_resistance = (density ? material.weight + material.radiation_resistance : 0) - -/obj - var/rad_resistance = 0 // Allow overriding rad resistance - -// If people expand the system, this may be useful. Here as a placeholder until then -/atom/proc/rad_act(var/severity) - return 1 - -/mob/living/rad_act(var/severity) - if(severity && !isbelly(loc)) //eaten mobs are made immune to radiation //VOREStation Edit Start - src.apply_effect(severity, IRRADIATE, src.getarmor(null, "rad")) - for(var/atom/I in src) - I.rad_act(severity) ///VOREStation Edit End diff --git a/code/datums/supplypacks/medical.dm b/code/datums/supplypacks/medical.dm index e345b18505..554a826f20 100644 --- a/code/datums/supplypacks/medical.dm +++ b/code/datums/supplypacks/medical.dm @@ -349,3 +349,24 @@ cost = 250 containertype = /obj/structure/largecrate containername = "Industrial Chemical distiller crate" + +/datum/supply_pack/med/oxypump + name = "Oxygen pump crate" + contains = list(/obj/machinery/oxygen_pump/mobile = 1) + cost = 125 + containertype = /obj/structure/largecrate + containername = "Oxygen pump crate" + +/datum/supply_pack/med/anestheticpump + name = "Anesthetic pump crate" + contains = list(/obj/machinery/oxygen_pump/mobile/anesthetic = 1) + cost = 130 + containertype = /obj/structure/largecrate + containername = "Anesthetic pump crate" + +/datum/supply_pack/med/stablepump + name = "Portable stabilizer crate" + contains = list(/obj/machinery/oxygen_pump/mobile/stabilizer = 1) + cost = 175 + containertype = /obj/structure/largecrate + containername = "Portable stabilizer crate" diff --git a/code/datums/supplypacks/misc.dm b/code/datums/supplypacks/misc.dm index bf5b8ba53b..7f4f0362db 100644 --- a/code/datums/supplypacks/misc.dm +++ b/code/datums/supplypacks/misc.dm @@ -170,3 +170,12 @@ cost = 25 containertype = /obj/structure/closet/crate/freezer containername = "emergency rations" + +/datum/supply_pack/misc/medical_rations + name = "Emergency - VitaPaste" + contains = list( + /obj/item/weapon/storage/mre/menu13 = 2 + ) + cost = 40 + containertype = /obj/structure/closet/crate/freezer + containername = "emergency rations" diff --git a/code/datums/uplink/implants.dm b/code/datums/uplink/implants.dm index 7e3e2f3005..e36396c9cd 100644 --- a/code/datums/uplink/implants.dm +++ b/code/datums/uplink/implants.dm @@ -23,3 +23,53 @@ name = "Uplink Implant" //Original name: "Uplink Implant (Contains 5 Telecrystals)" item_cost = 50 //Original cost: 10 path = /obj/item/weapon/storage/box/syndie_kit/imp_uplink + +/datum/uplink_item/item/implants/imp_shades + name = "Integrated Thermal-Shades Implant (Organic)" + item_cost = 80 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug + +/datum/uplink_item/item/implants/imp_taser + name = "Integrated Taser Implant (Organic)" + item_cost = 30 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/taser + +/datum/uplink_item/item/implants/imp_laser + name = "Integrated Laser Implant (Organic)" + item_cost = 50 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/laser + +/datum/uplink_item/item/implants/imp_dart + name = "Integrated Dart Implant (Organic)" + item_cost = 60 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/dart + +/datum/uplink_item/item/implants/imp_toolkit + name = "Integrated Toolkit Implant (Organic)" + item_cost = 80 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/toolkit + +/datum/uplink_item/item/implants/imp_medkit + name = "Integrated Medkit Implant (Organic)" + item_cost = 60 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/medkit + +/datum/uplink_item/item/implants/imp_analyzer + name = "Integrated Research Scanner Implant (Organic)" + item_cost = 20 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/analyzer + +/datum/uplink_item/item/implants/imp_sword + name = "Integrated Sword Implant (Organic)" + item_cost = 40 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/sword + +/datum/uplink_item/item/implants/imp_sprinter + name = "Integrated Sprinter Implant (Organic)" + item_cost = 40 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/sprinter + +/datum/uplink_item/item/implants/imp_sprinter + name = "Integrated Surge Implant (Organic)" + item_cost = 40 + path = /obj/item/weapon/storage/box/syndie_kit/imp_aug/surge diff --git a/code/datums/uplink/medical_vr.dm b/code/datums/uplink/medical_vr.dm new file mode 100644 index 0000000000..324398843f --- /dev/null +++ b/code/datums/uplink/medical_vr.dm @@ -0,0 +1,57 @@ +/********** +* Medical * +**********/ +/datum/uplink_item/item/medical/mre + name = "Meal, Ready to eat (Random)" + item_cost = 5 + path = /obj/item/weapon/storage/mre/random + +/datum/uplink_item/item/medical/protein + name = "Meal, Ready to eat (Protein)" + item_cost = 5 + path = /obj/item/weapon/storage/mre/menu10 + +/datum/uplink_item/item/medical/emergency + name = "Meal, Ready to eat (Emergency)" + item_cost = 5 + path = /obj/item/weapon/storage/mre/menu11 + +/datum/uplink_item/item/medical/glucose + name = "Glucose injector" + item_cost = 5 + path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/glucose + +/datum/uplink_item/item/medical/purity + name = "Purity injector" + item_cost = 5 + path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/purity + +/datum/uplink_item/item/medical/brute + name = "Brute injector" + item_cost = 5 + path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/brute + +/datum/uplink_item/item/medical/burn + name = "Burn injector" + item_cost = 5 + path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/burn + +/datum/uplink_item/item/medical/toxin + name = "Toxin injector" + item_cost = 5 + path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/toxin + +/datum/uplink_item/item/medical/oxy + name = "Oxy injector" + item_cost = 5 + path = /obj/item/weapon/reagent_containers/hypospray/autoinjector/biginjector/oxy + +/datum/uplink_item/item/medical/nanites + name = "Healing Nanite pill bottle" + item_cost = 30 + path = /obj/item/weapon/storage/pill_bottle/healing_nanites + +/datum/uplink_item/item/medical/insiderepair + name = "Combat organ kit" + item_cost = 120 + path = /obj/item/weapon/storage/firstaid/insiderepair diff --git a/code/datums/uplink/tools_vr.dm b/code/datums/uplink/tools_vr.dm new file mode 100644 index 0000000000..5a165f7aac --- /dev/null +++ b/code/datums/uplink/tools_vr.dm @@ -0,0 +1,42 @@ +/******************** +* Devices and Tools * +********************/ +/datum/uplink_item/item/tools/basiclaptop + name = "Laptop (Basic)" + item_cost = 5 + path = /obj/item/modular_computer/laptop/preset/custom_loadout/cheap + +/datum/uplink_item/item/tools/survivalcapsule + name = "Survival Capsule" + item_cost = 5 + path = /obj/item/device/survivalcapsule + +/datum/uplink_item/item/tools/nanopaste + name = "Nanopaste (Advanced)" + item_cost = 10 + path = /obj/item/stack/nanopaste/advanced + +/datum/uplink_item/item/tools/elitetablet + name = "Tablet (Advanced)" + item_cost = 15 + path = /obj/item/modular_computer/tablet/preset/custom_loadout/advanced + +/datum/uplink_item/item/tools/elitelaptop + name = "Laptop (Advanced)" + item_cost = 20 + path = /obj/item/modular_computer/laptop/preset/custom_loadout/elite + +/datum/uplink_item/item/tools/luxurycapsule + name = "Survival Capsule (Luxury)" + item_cost = 40 + path = /obj/item/device/survivalcapsule/luxury + +/datum/uplink_item/item/tools/translocator + name = "Translocator" + item_cost = 40 + path = /obj/item/device/perfect_tele + +/datum/uplink_item/item/tools/barcapsule + name = "Survival Capsule (Bar)" + item_cost = 80 + path = /obj/item/device/survivalcapsule/luxurybar diff --git a/code/datums/uplink/visible_weapons.dm b/code/datums/uplink/visible_weapons.dm index e8a69d2aaf..e4c27752f0 100644 --- a/code/datums/uplink/visible_weapons.dm +++ b/code/datums/uplink/visible_weapons.dm @@ -15,37 +15,17 @@ path = /obj/item/weapon/material/knife/tacknife/combatknife /datum/uplink_item/item/visible_weapons/energy_sword - name = "Energy Sword, Random" + name = "Energy Sword, Colorable" item_cost = 40 path = /obj/item/weapon/melee/energy/sword -/datum/uplink_item/item/visible_weapons/energy_sword_blue - name = "Energy Sword, Blue" - item_cost = 40 - path = /obj/item/weapon/melee/energy/sword/blue - -/datum/uplink_item/item/visible_weapons/energy_sword_green - name = "Energy Sword, Green" - item_cost = 40 - path = /obj/item/weapon/melee/energy/sword/green - -/datum/uplink_item/item/visible_weapons/energy_sword_red - name = "Energy Sword, Red" - item_cost = 40 - path = /obj/item/weapon/melee/energy/sword/red - -/datum/uplink_item/item/visible_weapons/energy_sword_purple - name = "Energy Sword, Purple" - item_cost = 40 - path = /obj/item/weapon/melee/energy/sword/purple - /datum/uplink_item/item/visible_weapons/energy_sword_pirate - name = "Energy Cutlass" + name = "Energy Cutlass, Colorable" item_cost = 40 path = /obj/item/weapon/melee/energy/sword/pirate /datum/uplink_item/item/visible_weapons/energy_spear - name = "Energy Spear" + name = "Energy Spear, Colorable" item_cost = 50 path = /obj/item/weapon/melee/energy/spear @@ -192,4 +172,4 @@ /datum/uplink_item/item/visible_weapons/xray name = "Xray Gun" item_cost = 85 - path = /obj/item/weapon/gun/energy/xray \ No newline at end of file + path = /obj/item/weapon/gun/energy/xray diff --git a/code/game/antagonist/antagonist_factions.dm b/code/game/antagonist/antagonist_factions.dm index 83c9957be2..a072196c1b 100644 --- a/code/game/antagonist/antagonist_factions.dm +++ b/code/game/antagonist/antagonist_factions.dm @@ -14,33 +14,33 @@ return if(faction.is_antagonist(player)) - src << "\The [player.current] already serves the [faction.faction_descriptor]." + to_chat(src, "\The [player.current] already serves the [faction.faction_descriptor].") return if(player_is_antag(player)) - src << "\The [player.current]'s loyalties seem to be elsewhere..." + to_chat(src, "\The [player.current]'s loyalties seem to be elsewhere...") return if(!faction.can_become_antag(player)) - src << "\The [player.current] cannot be \a [faction.faction_role_text]!" + to_chat(src, "\The [player.current] cannot be \a [faction.faction_role_text]!") return if(world.time < player.rev_cooldown) - src << "You must wait five seconds between attempts." + to_chat(src, "You must wait five seconds between attempts.") return - src << "You are attempting to convert \the [player.current]..." + to_chat(src, "You are attempting to convert \the [player.current]...") log_admin("[src]([src.ckey]) attempted to convert [player.current].") message_admins("[src]([src.ckey]) attempted to convert [player.current].") player.rev_cooldown = world.time+100 var/choice = alert(player.current,"Asked by [src]: Do you want to join the [faction.faction_descriptor]?","Join the [faction.faction_descriptor]?","No!","Yes!") if(choice == "Yes!" && faction.add_antagonist_mind(player, 0, faction.faction_role_text, faction.faction_welcome)) - src << "\The [player.current] joins the [faction.faction_descriptor]!" + to_chat(src, "\The [player.current] joins the [faction.faction_descriptor]!") return if(choice == "No!") player << "You reject this traitorous cause!" - src << "\The [player.current] does not support the [faction.faction_descriptor]!" + to_chat(src, "\The [player.current] does not support the [faction.faction_descriptor]!") /mob/living/proc/convert_to_loyalist(mob/M as mob in oview(src)) set name = "Convert Recidivist" diff --git a/code/game/antagonist/antagonist_objectives.dm b/code/game/antagonist/antagonist_objectives.dm index 5dc6c5f327..fba6467983 100644 --- a/code/game/antagonist/antagonist_objectives.dm +++ b/code/game/antagonist/antagonist_objectives.dm @@ -38,8 +38,8 @@ if(!mind) return if(!is_special_character(mind)) - src << "While you may perhaps have goals, this verb's meant to only be visible \ - to antagonists. Please make a bug report!" + to_chat(src, "While you may perhaps have goals, this verb's meant to only be visible \ + to antagonists. Please make a bug report!") return var/new_ambitions = input(src, "Write a short sentence of what your character hopes to accomplish \ today as an antagonist. Remember that this is purely optional. It will be shown at the end of the \ @@ -49,7 +49,7 @@ new_ambitions = sanitize(new_ambitions) mind.ambitions = new_ambitions if(new_ambitions) - src << "You've set your goal to be '[new_ambitions]'." + to_chat(src, "You've set your goal to be '[new_ambitions]'.") else - src << "You leave your ambitions behind." + to_chat(src, "You leave your ambitions behind.") log_and_message_admins("has set their ambitions to now be: [new_ambitions].") diff --git a/code/game/antagonist/outsider/wizard.dm b/code/game/antagonist/outsider/wizard.dm index feaf8857ba..6f2a7fe2e3 100644 --- a/code/game/antagonist/outsider/wizard.dm +++ b/code/game/antagonist/outsider/wizard.dm @@ -115,18 +115,18 @@ obj/item/clothing /*Checks if the wizard is wearing the proper attire. Made a proc so this is not repeated 14 (or more) times.*/ /mob/proc/wearing_wiz_garb() - src << "Silly creature, you're not a human. Only humans can cast this spell." + to_chat(src, "Silly creature, you're not a human. Only humans can cast this spell.") return 0 // Humans can wear clothes. /mob/living/carbon/human/wearing_wiz_garb() if(!is_wiz_garb(src.wear_suit)) - src << "I don't feel strong enough without my robe." + to_chat(src, "I don't feel strong enough without my robe.") return 0 if(!is_wiz_garb(src.shoes)) - src << "I don't feel strong enough without my sandals." + to_chat(src, "I don't feel strong enough without my sandals.") return 0 if(!is_wiz_garb(src.head)) - src << "I don't feel strong enough without my hat." + to_chat(src, "I don't feel strong enough without my hat.") return 0 return 1 diff --git a/code/game/dna/dna2.dm b/code/game/dna/dna2.dm index ceebe5df22..daa87810fd 100644 --- a/code/game/dna/dna2.dm +++ b/code/game/dna/dna2.dm @@ -111,6 +111,8 @@ var/global/list/datum/dna/gene/dna_genes[0] // New stuff var/species = SPECIES_HUMAN var/list/body_markings = list() + var/list/body_descriptors = null + var/list/genetic_modifiers = list() // Modifiers with the MODIFIER_GENETIC flag are saved. Note that only the type is saved, not an instance. // Make a copy of this strand. // USE THIS WHEN COPYING STUFF OR YOU'LL GET CORRUPTION! diff --git a/code/game/dna/dna_modifier.dm b/code/game/dna/dna_modifier.dm index 998b712828..1fe5d43a59 100644 --- a/code/game/dna/dna_modifier.dm +++ b/code/game/dna/dna_modifier.dm @@ -18,6 +18,8 @@ var/mind=null var/languages=null var/list/flavor=null + var/gender = null + var/list/body_descriptors = null var/list/genetic_modifiers = list() // Modifiers with the MODIFIER_GENETIC flag are saved. Note that only the type is saved, not an instance. /datum/dna2/record/proc/GetData() @@ -706,7 +708,10 @@ databuf.types = DNA2_BUF_UE databuf.dna = src.connected.occupant.dna.Clone() if(ishuman(connected.occupant)) - databuf.dna.real_name=connected.occupant.dna.real_name + var/mob/living/carbon/human/H = connected.occupant + databuf.dna.real_name = H.dna.real_name + databuf.gender = H.gender + databuf.body_descriptors = H.descriptors databuf.name = "Unique Identifier" src.buffers[bufferId] = databuf return 1 @@ -717,7 +722,10 @@ databuf.types = DNA2_BUF_UI|DNA2_BUF_UE databuf.dna = src.connected.occupant.dna.Clone() if(ishuman(connected.occupant)) - databuf.dna.real_name=connected.occupant.dna.real_name + var/mob/living/carbon/human/H = connected.occupant + databuf.dna.real_name = H.dna.real_name + databuf.gender = H.gender + databuf.body_descriptors = H.descriptors databuf.name = "Unique Identifier + Unique Enzymes" src.buffers[bufferId] = databuf return 1 @@ -728,7 +736,10 @@ databuf.types = DNA2_BUF_SE databuf.dna = src.connected.occupant.dna.Clone() if(ishuman(connected.occupant)) - databuf.dna.real_name=connected.occupant.dna.real_name + var/mob/living/carbon/human/H = connected.occupant + databuf.dna.real_name = H.dna.real_name + databuf.gender = H.gender + databuf.body_descriptors = H.descriptors databuf.name = "Structural Enzymes" src.buffers[bufferId] = databuf return 1 @@ -764,10 +775,18 @@ if ((buf.types & DNA2_BUF_UE)) src.connected.occupant.real_name = buf.dna.real_name src.connected.occupant.name = buf.dna.real_name + if(ishuman(connected.occupant)) + var/mob/living/carbon/human/H = connected.occupant + H.gender = buf.gender + H.descriptors = buf.body_descriptors src.connected.occupant.UpdateAppearance(buf.dna.UI.Copy()) else if (buf.types & DNA2_BUF_SE) src.connected.occupant.dna.SE = buf.dna.SE src.connected.occupant.dna.UpdateSE() + if(ishuman(connected.occupant)) + var/mob/living/carbon/human/H = connected.occupant + H.gender = buf.gender + H.descriptors = buf.body_descriptors domutcheck(src.connected.occupant,src.connected) src.connected.occupant.apply_effect(rand(20,50), IRRADIATE, check_protection = 0) return 1 diff --git a/code/game/gamemodes/changeling/changeling_powers.dm b/code/game/gamemodes/changeling/changeling_powers.dm index 627b4e8b14..373aefa0d8 100644 --- a/code/game/gamemodes/changeling/changeling_powers.dm +++ b/code/game/gamemodes/changeling/changeling_powers.dm @@ -129,19 +129,19 @@ var/global/list/possible_changeling_IDs = list("Alpha","Beta","Gamma","Delta","E return if(src.stat > max_stat) - src << "We are incapacitated." + to_chat(src, "We are incapacitated.") return if(changeling.absorbed_dna.len < required_dna) - src << "We require at least [required_dna] samples of compatible DNA." + to_chat(src, "We require at least [required_dna] samples of compatible DNA.") return if(changeling.chem_charges < required_chems) - src << "We require at least [required_chems] units of chemicals to do that!" + to_chat(src, "We require at least [required_chems] units of chemicals to do that!") return if(changeling.geneticdamage > max_genetic_damage) - src << "Our genomes are still reassembling. We need time to recover first." + to_chat(src, "Our genomes are still reassembling. We need time to recover first.") return return changeling @@ -204,11 +204,11 @@ turf/proc/AdjacentTurfsRangedSting() if(M.loc == src.loc) return 1 //target and source are in the same thing if(!isturf(src.loc) || !isturf(M.loc)) - src << "We cannot reach \the [M] with a sting!" + to_chat(src, "We cannot reach \the [M] with a sting!") return 0 //One is inside, the other is outside something. // Maximum queued turfs set to 25; I don't *think* anything raises sting_range above 2, but if it does the 25 may need raising if(!AStar(src.loc, M.loc, /turf/proc/AdjacentTurfsRangedSting, /turf/proc/Distance, max_nodes=25, max_node_depth=sting_range)) //If we can't find a path, fail - src << "We cannot find a path to sting \the [M] by!" + to_chat(src, "We cannot find a path to sting \the [M] by!") return 0 return 1 @@ -225,7 +225,7 @@ turf/proc/AdjacentTurfsRangedSting() if(!T) return if(T.isSynthetic()) - src << "We are unable to pierce the outer shell of [T]." + to_chat(src, "We are unable to pierce the outer shell of [T].") return if(!(T in view(changeling.sting_range))) return if(!sting_can_reach(T, changeling.sting_range)) return @@ -236,7 +236,7 @@ turf/proc/AdjacentTurfsRangedSting() src.verbs -= verb_path spawn(10) src.verbs += verb_path - src << "We stealthily sting [T]." + to_chat(src, "We stealthily sting [T].") if(!T.mind || !T.mind.changeling) return T //T will be affected by the sting T << "You feel a tiny prick." return diff --git a/code/game/gamemodes/changeling/generic_equip_procs.dm b/code/game/gamemodes/changeling/generic_equip_procs.dm index ef1ab650a1..f2d7b45831 100644 --- a/code/game/gamemodes/changeling/generic_equip_procs.dm +++ b/code/game/gamemodes/changeling/generic_equip_procs.dm @@ -32,7 +32,7 @@ return 1 if(M.head || M.wear_suit) //Make sure our slots aren't full - src << "We require nothing to be on our head, and we cannot wear any external suits, or shoes." + to_chat(src, "We require nothing to be on our head, and we cannot wear any external suits, or shoes.") return 0 var/obj/item/clothing/suit/A = new armor_type(src) @@ -242,7 +242,7 @@ var/mob/living/carbon/human/M = src if(M.hands_are_full()) //Make sure our hands aren't full. - src << "Our hands are full. Drop something first." + to_chat(src, "Our hands are full. Drop something first.") return 0 var/obj/item/weapon/W = new weapon_type(src) diff --git a/code/game/gamemodes/changeling/powers/absorb.dm b/code/game/gamemodes/changeling/powers/absorb.dm index 45b230b00c..02285a0c7e 100644 --- a/code/game/gamemodes/changeling/powers/absorb.dm +++ b/code/game/gamemodes/changeling/powers/absorb.dm @@ -16,41 +16,41 @@ var/obj/item/weapon/grab/G = src.get_active_hand() if(!istype(G)) - src << "We must be grabbing a creature in our active hand to absorb them." + to_chat(src, "We must be grabbing a creature in our active hand to absorb them.") return var/mob/living/carbon/human/T = G.affecting if(!istype(T) || T.isSynthetic()) - src << "\The [T] is not compatible with our biology." + to_chat(src, "\The [T] is not compatible with our biology.") return if(T.species.flags & NO_SCAN) - src << "We do not know how to parse this creature's DNA!" + to_chat(src, "We do not know how to parse this creature's DNA!") return if(HUSK in T.mutations) //Lings can always absorb other lings, unless someone beat them to it first. if(!T.mind.changeling || T.mind.changeling && T.mind.changeling.geneticpoints < 0) - src << "This creature's DNA is ruined beyond useability!" + to_chat(src, "This creature's DNA is ruined beyond useability!") return if(G.state != GRAB_KILL) - src << "We must have a tighter grip to absorb this creature." + to_chat(src, "We must have a tighter grip to absorb this creature.") return if(changeling.isabsorbing) - src << "We are already absorbing!" + to_chat(src, "We are already absorbing!") return changeling.isabsorbing = 1 for(var/stage = 1, stage<=3, stage++) switch(stage) if(1) - src << "This creature is compatible. We must hold still..." + to_chat(src, "This creature is compatible. We must hold still...") if(2) - src << "We extend a proboscis." + to_chat(src, "We extend a proboscis.") src.visible_message("[src] extends a proboscis!") if(3) - src << "We stab [T] with the proboscis." + to_chat(src, "We stab [T] with the proboscis.") src.visible_message("[src] stabs [T] with the proboscis!") T << "You feel a sharp stabbing pain!" add_attack_logs(src,T,"Absorbed (changeling)") @@ -60,11 +60,11 @@ feedback_add_details("changeling_powers","A[stage]") if(!do_mob(src, T, 150) || G.state != GRAB_KILL) - src << "Our absorption of [T] has been interrupted!" + to_chat(src, "Our absorption of [T] has been interrupted!") changeling.isabsorbing = 0 return - src << "We have absorbed [T]!" + to_chat(src, "We have absorbed [T]!") src.visible_message("[src] sucks the fluids from [T]!") T << "You have been absorbed by the changeling!" if(src.nutrition < 400) @@ -76,7 +76,7 @@ if(changeling.readapts > changeling.max_readapts) changeling.readapts = changeling.max_readapts - src << "We can now re-adapt, reverting our evolution so that we may start anew, if needed." + to_chat(src, "We can now re-adapt, reverting our evolution so that we may start anew, if needed.") var/datum/absorbed_dna/newDNA = new(T.real_name, T.dna, T.species.name, T.languages, T.identifying_gender, T.flavor_texts, T.modifiers) absorbDNA(newDNA) @@ -98,7 +98,7 @@ changeling.geneticpoints += 4 changeling.max_geneticpoints += 4 - src << "We absorbed another changeling, and we grow stronger. Our genomes increase." + to_chat(src, "We absorbed another changeling, and we grow stronger. Our genomes increase.") T.mind.changeling.chem_charges = 0 T.mind.changeling.geneticpoints = -1 diff --git a/code/game/gamemodes/changeling/powers/armblade.dm b/code/game/gamemodes/changeling/powers/armblade.dm index 947f06cee4..c05ad96e81 100644 --- a/code/game/gamemodes/changeling/powers/armblade.dm +++ b/code/game/gamemodes/changeling/powers/armblade.dm @@ -14,7 +14,7 @@ if(src.mind.changeling.recursive_enhancement) if(changeling_generic_weapon(/obj/item/weapon/melee/changeling/arm_blade/greater)) - src << "We prepare an extra sharp blade." + to_chat(src, "We prepare an extra sharp blade.") return 1 else @@ -39,7 +39,7 @@ if(src.mind.changeling.recursive_enhancement) if(changeling_generic_weapon(/obj/item/weapon/melee/changeling/claw/greater, 1, 15)) - src << "We prepare an extra sharp claw." + to_chat(src, "We prepare an extra sharp claw.") return 1 else diff --git a/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm b/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm index 3f3c1bd7ad..192f8b3874 100644 --- a/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm +++ b/code/game/gamemodes/changeling/powers/bioelectrogenesis.dm @@ -25,7 +25,7 @@ if(held_item == null) if(src.mind.changeling.recursive_enhancement) if(changeling_generic_weapon(/obj/item/weapon/electric_hand/efficent,0)) - src << "We will shock others more efficently." + to_chat(src, "We will shock others more efficently.") return 1 else if(changeling_generic_weapon(/obj/item/weapon/electric_hand,0)) //Chemical cost is handled in the equip proc. @@ -54,7 +54,7 @@ "Our hand channels raw electricity into [G.affecting].", "You hear sparks!") else - src << "Our gloves block us from shocking \the [G.affecting]." + to_chat(src, "Our gloves block us from shocking \the [G.affecting].") src.mind.changeling.chem_charges -= 10 return 1 @@ -92,7 +92,7 @@ sleep(1 SECOND) success = 1 if(success == 0) //If we couldn't do anything with the ability, don't deduct the chemicals. - src << "We are unable to affect \the [held_item]." + to_chat(src, "We are unable to affect \the [held_item].") else src.mind.changeling.chem_charges -= 10 return success @@ -143,7 +143,7 @@ var/mob/living/carbon/C = target if(user.mind.changeling.chem_charges < shock_cost) - src << "We require more chemicals to electrocute [C]!" + to_chat(src, "We require more chemicals to electrocute [C]!") return 0 C.electrocute_act(electrocute_amount * siemens,src,1.0,BP_TORSO) @@ -156,7 +156,7 @@ "Our hand channels raw electricity into [C]", "You hear sparks!") else - src << "Our gloves block us from shocking \the [C]." + to_chat(src, "Our gloves block us from shocking \the [C].") //qdel(src) //Since we're no longer a one hit stun, we need to stick around. user.mind.changeling.chem_charges -= shock_cost return 1 @@ -165,7 +165,7 @@ var/mob/living/silicon/S = target if(user.mind.changeling.chem_charges < 10) - src << "We require more chemicals to electrocute [S]!" + to_chat(src, "We require more chemicals to electrocute [S]!") return 0 S.electrocute_act(60,src,0.75) //If only they had surge protectors. @@ -205,7 +205,7 @@ success = 1 break if(success == 0) - src << "We are unable to affect \the [target]." + to_chat(src, "We are unable to affect \the [target].") else qdel(src) return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/blind_sting.dm b/code/game/gamemodes/changeling/powers/blind_sting.dm index 347881df9b..e2fede649e 100644 --- a/code/game/gamemodes/changeling/powers/blind_sting.dm +++ b/code/game/gamemodes/changeling/powers/blind_sting.dm @@ -21,7 +21,7 @@ var/duration = 300 if(src.mind.changeling.recursive_enhancement) duration = duration + 150 - src << "They will be deprived of sight for longer." + to_chat(src, "They will be deprived of sight for longer.") spawn(duration) T.disabilities &= ~NEARSIGHTED T.Blind(10) diff --git a/code/game/gamemodes/changeling/powers/cryo_sting.dm b/code/game/gamemodes/changeling/powers/cryo_sting.dm index bc68428d89..e1a2b10cff 100644 --- a/code/game/gamemodes/changeling/powers/cryo_sting.dm +++ b/code/game/gamemodes/changeling/powers/cryo_sting.dm @@ -20,12 +20,12 @@ var/inject_amount = 10 if(src.mind.changeling.recursive_enhancement) inject_amount = inject_amount * 1.5 - src << "We inject extra chemicals." + to_chat(src, "We inject extra chemicals.") if(T.reagents) T.reagents.add_reagent("cryotoxin", inject_amount) feedback_add_details("changeling_powers","CS") src.verbs -= /mob/proc/changeling_cryo_sting spawn(3 MINUTES) - src << "Our cryogenic string is ready to be used once more." + to_chat(src, "Our cryogenic string is ready to be used once more.") src.verbs |= /mob/proc/changeling_cryo_sting return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/deaf_sting.dm b/code/game/gamemodes/changeling/powers/deaf_sting.dm index a94ad1744a..92e7a80a30 100644 --- a/code/game/gamemodes/changeling/powers/deaf_sting.dm +++ b/code/game/gamemodes/changeling/powers/deaf_sting.dm @@ -19,7 +19,7 @@ var/duration = 300 if(src.mind.changeling.recursive_enhancement) duration = duration + 100 - src << "They will be unable to hear for a little longer." + to_chat(src, "They will be unable to hear for a little longer.") T << "Your ears pop and begin ringing loudly!" T.sdisabilities |= DEAF spawn(duration) T.sdisabilities &= ~DEAF diff --git a/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm b/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm index 7853a9603e..f50460a826 100644 --- a/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm +++ b/code/game/gamemodes/changeling/powers/delayed_toxin_sting.dm @@ -32,7 +32,7 @@ var/type_to_give = /datum/modifier/delayed_toxin_sting if(src.mind.changeling.recursive_enhancement) type_to_give = /datum/modifier/delayed_toxin_sting/strong - src << "Our toxin will be extra potent, when it strikes." + to_chat(src, "Our toxin will be extra potent, when it strikes.") T.add_modifier(type_to_give, 2 MINUTES) diff --git a/code/game/gamemodes/changeling/powers/enfeebling_string.dm b/code/game/gamemodes/changeling/powers/enfeebling_string.dm index 16303f7c58..81930a7ebc 100644 --- a/code/game/gamemodes/changeling/powers/enfeebling_string.dm +++ b/code/game/gamemodes/changeling/powers/enfeebling_string.dm @@ -40,7 +40,7 @@ var/type_to_give = /datum/modifier/enfeeble if(src.mind.changeling.recursive_enhancement) type_to_give = /datum/modifier/enfeeble/strong - src << "We make them extremely weak." + to_chat(src, "We make them extremely weak.") H.add_modifier(type_to_give, 2 MINUTES) feedback_add_details("changeling_powers","ES") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/extract_dna_sting.dm b/code/game/gamemodes/changeling/powers/extract_dna_sting.dm index 0c5d91d83b..35ce94daf0 100644 --- a/code/game/gamemodes/changeling/powers/extract_dna_sting.dm +++ b/code/game/gamemodes/changeling/powers/extract_dna_sting.dm @@ -24,15 +24,15 @@ return if(!istype(T) || T.isSynthetic()) - src << "\The [T] is not compatible with our biology." + to_chat(src, "\The [T] is not compatible with our biology.") return 0 if(T.species.flags & NO_SCAN) - src << "We do not know how to parse this creature's DNA!" + to_chat(src, "We do not know how to parse this creature's DNA!") return 0 if(HUSK in T.mutations) - src << "This creature's DNA is ruined beyond useability!" + to_chat(src, "This creature's DNA is ruined beyond useability!") return 0 add_attack_logs(src,T,"DNA extraction sting (changeling)") diff --git a/code/game/gamemodes/changeling/powers/fake_death.dm b/code/game/gamemodes/changeling/powers/fake_death.dm index cae98164a0..3581a8d06a 100644 --- a/code/game/gamemodes/changeling/powers/fake_death.dm +++ b/code/game/gamemodes/changeling/powers/fake_death.dm @@ -19,7 +19,7 @@ var/mob/living/carbon/C = src if(changeling.max_geneticpoints < 0) //Absorbed by another ling - src << "We have no genomes, not even our own, and cannot regenerate." + to_chat(src, "We have no genomes, not even our own, and cannot regenerate.") return 0 if(!C.stat && alert("Are we sure we wish to regenerate? We will appear to be dead while doing so.","Revival","Yes","No") == "No") @@ -44,7 +44,7 @@ spawn(rand(2 MINUTES, 4 MINUTES)) //The ling will now be able to choose when to revive src.verbs += /mob/proc/changeling_revive - src << "We are ready to rise. Use the Revive verb when you are ready." + to_chat(src, "We are ready to rise. Use the Revive verb when you are ready.") feedback_add_details("changeling_powers","FD") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/fleshmend.dm b/code/game/gamemodes/changeling/powers/fleshmend.dm index f7760e9ce6..ed60400517 100644 --- a/code/game/gamemodes/changeling/powers/fleshmend.dm +++ b/code/game/gamemodes/changeling/powers/fleshmend.dm @@ -22,10 +22,10 @@ var/heal_amount = 2 if(src.mind.changeling.recursive_enhancement) heal_amount = heal_amount * 2 - src << "We will heal much faster." + to_chat(src, "We will heal much faster.") spawn(0) - src << "We begin to heal ourselves." + to_chat(src, "We begin to heal ourselves.") for(var/i = 0, i<50,i++) if(C) C.adjustBruteLoss(-heal_amount) @@ -35,7 +35,7 @@ src.verbs -= /mob/proc/changeling_fleshmend spawn(50 SECONDS) - src << "Our regeneration has slowed to normal levels." + to_chat(src, "Our regeneration has slowed to normal levels.") src.verbs += /mob/proc/changeling_fleshmend feedback_add_details("changeling_powers","FM") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/hivemind.dm b/code/game/gamemodes/changeling/powers/hivemind.dm index c8e5f11604..105de8f4f5 100644 --- a/code/game/gamemodes/changeling/powers/hivemind.dm +++ b/code/game/gamemodes/changeling/powers/hivemind.dm @@ -34,7 +34,7 @@ var/list/datum/dna/hivemind_bank = list() names += DNA.name if(names.len <= 0) - src << "The airwaves already have all of our DNA." + to_chat(src, "The airwaves already have all of our DNA.") return var/S = input("Select a DNA to channel: ", "Channel DNA", null) as null|anything in names @@ -46,7 +46,7 @@ var/list/datum/dna/hivemind_bank = list() changeling.chem_charges -= 10 hivemind_bank += chosen_dna - src << "We channel the DNA of [S] to the air." + to_chat(src, "We channel the DNA of [S] to the air.") feedback_add_details("changeling_powers","HU") return 1 @@ -64,7 +64,7 @@ var/list/datum/dna/hivemind_bank = list() names[DNA.name] = DNA if(names.len <= 0) - src << "There's no new DNA to absorb from the air." + to_chat(src, "There's no new DNA to absorb from the air.") return var/S = input("Select a DNA absorb from the air: ", "Absorb DNA", null) as null|anything in names @@ -75,6 +75,6 @@ var/list/datum/dna/hivemind_bank = list() changeling.chem_charges -= 20 absorbDNA(chosen_dna) - src << "We absorb the DNA of [S] from the air." + to_chat(src, "We absorb the DNA of [S] from the air.") feedback_add_details("changeling_powers","HD") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/lesser_form.dm b/code/game/gamemodes/changeling/powers/lesser_form.dm index f2742490f6..6a5cf80730 100644 --- a/code/game/gamemodes/changeling/powers/lesser_form.dm +++ b/code/game/gamemodes/changeling/powers/lesser_form.dm @@ -13,13 +13,13 @@ if(!changeling) return if(src.has_brain_worms()) - src << "We cannot perform this ability at the present time!" + to_chat(src, "We cannot perform this ability at the present time!") return var/mob/living/carbon/human/H = src if(!istype(H) || !H.species.primitive_form) - src << "We cannot perform this ability in this form!" + to_chat(src, "We cannot perform this ability in this form!") return changeling.chem_charges-- diff --git a/code/game/gamemodes/changeling/powers/mimic_voice.dm b/code/game/gamemodes/changeling/powers/mimic_voice.dm index ae95317683..6b84c577ff 100644 --- a/code/game/gamemodes/changeling/powers/mimic_voice.dm +++ b/code/game/gamemodes/changeling/powers/mimic_voice.dm @@ -19,7 +19,7 @@ if(changeling.mimicing) changeling.mimicing = "" - src << "We return our vocal glands to their original location." + to_chat(src, "We return our vocal glands to their original location.") return var/mimic_voice = sanitize(input(usr, "Enter a name to mimic.", "Mimic Voice", null), MAX_NAME_LEN) @@ -28,8 +28,8 @@ changeling.mimicing = mimic_voice - src << "We shape our glands to take the voice of [mimic_voice], this will stop us from regenerating chemicals while active." - src << "Use this power again to return to our original voice and reproduce chemicals again." + to_chat(src, "We shape our glands to take the voice of [mimic_voice], this will stop us from regenerating chemicals while active.") + to_chat(src, "Use this power again to return to our original voice and reproduce chemicals again.") feedback_add_details("changeling_powers","MV") diff --git a/code/game/gamemodes/changeling/powers/panacea.dm b/code/game/gamemodes/changeling/powers/panacea.dm index 660434d185..30679b6ef5 100644 --- a/code/game/gamemodes/changeling/powers/panacea.dm +++ b/code/game/gamemodes/changeling/powers/panacea.dm @@ -18,7 +18,7 @@ return 0 src.mind.changeling.chem_charges -= 20 - src << "We cleanse impurities from our form." + to_chat(src, "We cleanse impurities from our form.") var/mob/living/carbon/human/C = src @@ -32,7 +32,7 @@ var/heal_amount = 5 if(src.mind.changeling.recursive_enhancement) heal_amount = heal_amount * 2 - src << "We will heal much faster." + to_chat(src, "We will heal much faster.") for(var/i = 0, i<10,i++) if(C) diff --git a/code/game/gamemodes/changeling/powers/rapid_regen.dm b/code/game/gamemodes/changeling/powers/rapid_regen.dm index 2eb628b8f6..6d1e9ee300 100644 --- a/code/game/gamemodes/changeling/powers/rapid_regen.dm +++ b/code/game/gamemodes/changeling/powers/rapid_regen.dm @@ -24,7 +24,7 @@ var/healing_amount = 40 if(src.mind.changeling.recursive_enhancement) healing_amount = C.maxHealth - src << "We completely heal ourselves." + to_chat(src, "We completely heal ourselves.") spawn(0) C.adjustBruteLoss(-healing_amount) C.adjustFireLoss(-healing_amount) diff --git a/code/game/gamemodes/changeling/powers/recursive_enhancement.dm b/code/game/gamemodes/changeling/powers/recursive_enhancement.dm index 9362333c57..77bab9bd99 100644 --- a/code/game/gamemodes/changeling/powers/recursive_enhancement.dm +++ b/code/game/gamemodes/changeling/powers/recursive_enhancement.dm @@ -15,10 +15,10 @@ if(!changeling) return 0 if(src.mind.changeling.recursive_enhancement) - src << "We will no longer empower our abilities." + to_chat(src, "We will no longer empower our abilities.") src.mind.changeling.recursive_enhancement = 0 return 0 - src << "We empower ourselves. Our abilities will now be extra potent." + to_chat(src, "We empower ourselves. Our abilities will now be extra potent.") src.mind.changeling.recursive_enhancement = 1 feedback_add_details("changeling_powers","RE") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/respec.dm b/code/game/gamemodes/changeling/powers/respec.dm index 66f13e720f..a50a41269f 100644 --- a/code/game/gamemodes/changeling/powers/respec.dm +++ b/code/game/gamemodes/changeling/powers/respec.dm @@ -7,7 +7,7 @@ if(!changeling) return if(src.mind.changeling.readapts <= 0) - to_chat(src, "We must first absorb another compatable creature!") + to_chat(src, "We must first absorb another compatible creature!") src.mind.changeling.readapts = 0 return @@ -26,6 +26,6 @@ H.remove_modifiers_of_type(/datum/modifier/endoarmor) //Revert endoarmor too. src.make_changeling() //And give back our freebies. - src << "We have removed our evolutions from this form, and are now ready to readapt." + to_chat(src, "We have removed our evolutions from this form, and are now ready to readapt.") ling_datum.purchased_powers_history.Add("Re-adapt (Reset to [ling_datum.max_geneticpoints])") diff --git a/code/game/gamemodes/changeling/powers/revive.dm b/code/game/gamemodes/changeling/powers/revive.dm index 7fe4ab232b..0648fa8ab6 100644 --- a/code/game/gamemodes/changeling/powers/revive.dm +++ b/code/game/gamemodes/changeling/powers/revive.dm @@ -9,7 +9,7 @@ return 0 if(changeling.max_geneticpoints < 0) //Absorbed by another ling - src << "You have no genomes, not even your own, and cannot revive." + to_chat(src, "You have no genomes, not even your own, and cannot revive.") return 0 if(src.stat == DEAD) diff --git a/code/game/gamemodes/changeling/powers/self_respiration.dm b/code/game/gamemodes/changeling/powers/self_respiration.dm index 6d6228eba8..5108361669 100644 --- a/code/game/gamemodes/changeling/powers/self_respiration.dm +++ b/code/game/gamemodes/changeling/powers/self_respiration.dm @@ -19,13 +19,13 @@ if(istype(src,/mob/living/carbon)) var/mob/living/carbon/C = src if(C.suiciding) - src << "You're committing suicide, this isn't going to work." + to_chat(src, "You're committing suicide, this isn't going to work.") return 0 if(C.does_not_breathe == 0) C.does_not_breathe = 1 - src << "We stop breathing, as we no longer need to." + to_chat(src, "We stop breathing, as we no longer need to.") return 1 else C.does_not_breathe = 0 - src << "We resume breathing, as we now need to again." + to_chat(src, "We resume breathing, as we now need to again.") return 0 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/shriek.dm b/code/game/gamemodes/changeling/powers/shriek.dm index 4989c27f87..a2b9013c5a 100644 --- a/code/game/gamemodes/changeling/powers/shriek.dm +++ b/code/game/gamemodes/changeling/powers/shriek.dm @@ -95,13 +95,13 @@ if(!changeling) return 0 if(is_muzzled()) - src << "Mmmf mrrfff!" + to_chat(src, "Mmmf mrrfff!") return 0 if(ishuman(src)) var/mob/living/carbon/human/H = src if(H.silent) - src << "You can't speak!" + to_chat(src, "You can't speak!") return 0 if(world.time < (changeling.last_shriek + 10 SECONDS) ) @@ -125,7 +125,7 @@ range_med = range_med * 2 range_light = range_light * 2 range_long = range_long * 2 - src << "We are extra loud." + to_chat(src, "We are extra loud.") src.mind.changeling.recursive_enhancement = 0 visible_message("[src] appears to shout.") diff --git a/code/game/gamemodes/changeling/powers/silence_sting.dm b/code/game/gamemodes/changeling/powers/silence_sting.dm index 334b0c139f..16d24c878f 100644 --- a/code/game/gamemodes/changeling/powers/silence_sting.dm +++ b/code/game/gamemodes/changeling/powers/silence_sting.dm @@ -19,7 +19,7 @@ var/duration = 30 if(src.mind.changeling.recursive_enhancement) duration = duration + 10 - src << "They will be unable to cry out in fear for a little longer." + to_chat(src, "They will be unable to cry out in fear for a little longer.") T.silent += duration feedback_add_details("changeling_powers","SS") return 1 \ No newline at end of file diff --git a/code/game/gamemodes/changeling/powers/transform_sting.dm b/code/game/gamemodes/changeling/powers/transform_sting.dm index 678e195e22..1f6bc7b93d 100644 --- a/code/game/gamemodes/changeling/powers/transform_sting.dm +++ b/code/game/gamemodes/changeling/powers/transform_sting.dm @@ -34,7 +34,7 @@ if(!T) return 0 if((HUSK in T.mutations) || (!ishuman(T) && !issmall(T))) - src << "Our sting appears ineffective against its DNA." + to_chat(src, "Our sting appears ineffective against its DNA.") return 0 add_attack_logs(src,T,"Transformation sting (changeling)") T.visible_message("[T] transforms!") diff --git a/code/game/gamemodes/cult/cult_structures.dm b/code/game/gamemodes/cult/cult_structures.dm index 24c2ed5f52..986800ef9f 100644 --- a/code/game/gamemodes/cult/cult_structures.dm +++ b/code/game/gamemodes/cult/cult_structures.dm @@ -116,6 +116,12 @@ return /obj/effect/gateway/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN spawn(0) return return @@ -148,6 +154,12 @@ qdel(src) /obj/effect/gateway/active/Crossed(var/atom/A) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = A + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(!istype(A, /mob/living)) return diff --git a/code/game/gamemodes/cult/cultify/mob.dm b/code/game/gamemodes/cult/cultify/mob.dm index d78956c40a..0cadd06d6c 100644 --- a/code/game/gamemodes/cult/cultify/mob.dm +++ b/code/game/gamemodes/cult/cultify/mob.dm @@ -12,7 +12,7 @@ icon_state = "ghost-narsie" overlays = 0 invisibility = 0 - src << "Even as a non-corporal being, you can feel Nar-Sie's presence altering you. You are now visible to everyone." + to_chat(src, "Even as a non-corporal being, you can feel Nar-Sie's presence altering you. You are now visible to everyone.") /mob/living/cultify() if(iscultist(src) && client) diff --git a/code/game/gamemodes/meteor/meteors.dm b/code/game/gamemodes/meteor/meteors.dm index 4380331b50..1ac4779414 100644 --- a/code/game/gamemodes/meteor/meteors.dm +++ b/code/game/gamemodes/meteor/meteors.dm @@ -273,7 +273,7 @@ if(explode) explosion(src.loc, devastation_range = 0, heavy_impact_range = 0, light_impact_range = 4, flash_range = 6, adminlog = 0) new /obj/effect/decal/cleanable/greenglow(get_turf(src)) - radiation_repository.radiate(src, 50) + SSradiation.radiate(src, 50) // This meteor fries toasters. /obj/effect/meteor/emp diff --git a/code/game/gamemodes/technomancer/instability.dm b/code/game/gamemodes/technomancer/instability.dm index 7904b5cb6c..6dc3f2d52b 100644 --- a/code/game/gamemodes/technomancer/instability.dm +++ b/code/game/gamemodes/technomancer/instability.dm @@ -122,13 +122,13 @@ electrocute_act(instability * 0.3, "unstable energies", 0.75) if(1) adjustFireLoss(instability * 0.15) //7.5 burn @ 50 instability - src << "Your chassis alerts you to overheating from an unknown external force!" + to_chat(src, "Your chassis alerts you to overheating from an unknown external force!") if(2) adjustBruteLoss(instability * 0.15) //7.5 brute @ 50 instability - src << "Your chassis makes the sound of metal groaning!" + to_chat(src, "Your chassis makes the sound of metal groaning!") if(3) safe_blink(src, range = 6) - src << "You're teleported against your will!" + to_chat(src, "You're teleported against your will!") if(4) emp_act(3) @@ -141,10 +141,10 @@ emp_act(2) if(2) adjustFireLoss(instability * 0.3) //30 burn @ 100 instability - src << "Your chassis alerts you to extreme overheating from an unknown external force!" + to_chat(src, "Your chassis alerts you to extreme overheating from an unknown external force!") if(3) adjustBruteLoss(instability * 0.3) //30 brute @ 100 instability - src << "Your chassis makes the sound of metal groaning and tearing!" + to_chat(src, "Your chassis makes the sound of metal groaning and tearing!") if(101 to 200) //Lethal rng = rand(0,4) @@ -155,10 +155,10 @@ emp_act(1) if(2) adjustFireLoss(instability * 0.4) //40 burn @ 100 instability - src << "Your chassis alerts you to extreme overheating from an unknown external force!" + to_chat(src, "Your chassis alerts you to extreme overheating from an unknown external force!") if(3) adjustBruteLoss(instability * 0.4) //40 brute @ 100 instability - src << "Your chassis makes the sound of metal groaning and tearing!" + to_chat(src, "Your chassis makes the sound of metal groaning and tearing!") /mob/living/carbon/human/instability_effects() if(instability) @@ -190,23 +190,23 @@ if(2) if(can_feel_pain()) apply_effect(instability * 0.3, AGONY) - src << "You feel a sharp pain!" + to_chat(src, "You feel a sharp pain!") if(3) apply_effect(instability * 0.3, EYE_BLUR) - src << "Your eyes start to get cloudy!" + to_chat(src, "Your eyes start to get cloudy!") if(4) electrocute_act(instability * 0.3, "unstable energies") if(5) adjustFireLoss(instability * 0.15) //7.5 burn @ 50 instability - src << "You feel your skin burn!" + to_chat(src, "You feel your skin burn!") if(6) adjustBruteLoss(instability * 0.15) //7.5 brute @ 50 instability - src << "You feel a sharp pain as an unseen force harms your body!" + to_chat(src, "You feel a sharp pain as an unseen force harms your body!") if(7) adjustToxLoss(instability * 0.15) //7.5 tox @ 50 instability if(8) safe_blink(src, range = 6) - src << "You're teleported against your will!" + to_chat(src, "You're teleported against your will!") if(50 to 100) //Severe rng = rand(0,8) @@ -218,18 +218,18 @@ if(2) if(can_feel_pain()) apply_effect(instability * 0.7, AGONY) - src << "You feel an extremly angonizing pain from all over your body!" + to_chat(src, "You feel an extremly angonizing pain from all over your body!") if(3) apply_effect(instability * 0.5, EYE_BLUR) - src << "Your eyes start to get cloudy!" + to_chat(src, "Your eyes start to get cloudy!") if(4) electrocute_act(instability * 0.5, "extremely unstable energies") if(5) fire_act() - src << "You spontaneously combust!" + to_chat(src, "You spontaneously combust!") if(6) adjustCloneLoss(instability * 0.05) //5 cloneloss @ 100 instability - src << "You feel your body slowly degenerate." + to_chat(src, "You feel your body slowly degenerate.") if(7) adjustToxLoss(instability * 0.25) //25 tox @ 100 instability @@ -245,18 +245,18 @@ if(2) if(can_feel_pain()) apply_effect(instability, AGONY) - src << "You feel an extremly angonizing pain from all over your body!" + to_chat(src, "You feel an extremly angonizing pain from all over your body!") if(3) apply_effect(instability, EYE_BLUR) - src << "Your eyes start to get cloudy!" + to_chat(src, "Your eyes start to get cloudy!") if(4) electrocute_act(instability, "extremely unstable energies") if(5) fire_act() - src << "You spontaneously combust!" + to_chat(src, "You spontaneously combust!") if(6) adjustCloneLoss(instability * 0.10) //5 cloneloss @ 100 instability - src << "You feel your body slowly degenerate." + to_chat(src, "You feel your body slowly degenerate.") if(7) adjustToxLoss(instability * 0.40) //40 tox @ 100 instability diff --git a/code/game/gamemodes/technomancer/spell_objs.dm b/code/game/gamemodes/technomancer/spell_objs.dm index 681d29da50..adfeda58ab 100644 --- a/code/game/gamemodes/technomancer/spell_objs.dm +++ b/code/game/gamemodes/technomancer/spell_objs.dm @@ -292,7 +292,7 @@ if(l_spell.aspect == ASPECT_CHROMATIC) //Check the other hand too. l_spell.on_combine_cast(S, src) else //Welp - src << "You require a free hand to use this function." + to_chat(src, "You require a free hand to use this function.") return 0 if(S.run_checks()) diff --git a/code/game/jobs/job/captain.dm b/code/game/jobs/job/captain.dm index 8d52204d5e..397ba71882 100644 --- a/code/game/jobs/job/captain.dm +++ b/code/game/jobs/job/captain.dm @@ -83,8 +83,8 @@ var/datum/announcement/minor/captain_announcement = new(do_newscast = 1) minimal_player_age = 5 economic_modifier = 7 - access = list(access_heads, access_keycard_auth) - minimal_access = list(access_heads, access_keycard_auth) + access = list(access_heads, access_keycard_auth, access_RC_announce) //YAWN EDIT + minimal_access = list(access_heads, access_keycard_auth, access_RC_announce)//YAWN EDIT outfit_type = /decl/hierarchy/outfit/job/secretary diff --git a/code/game/jobs/job/science.dm b/code/game/jobs/job/science.dm index d669d63580..8ceacde5b6 100644 --- a/code/game/jobs/job/science.dm +++ b/code/game/jobs/job/science.dm @@ -15,11 +15,11 @@ access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, access_tox_storage, access_teleporter, access_sec_doors, access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage, - access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_network) + access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_network, access_maint_tunnels) //Yawn added "access_maint_tunnels" minimal_access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, access_tox_storage, access_teleporter, access_sec_doors, access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage, - access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_network) + access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_network, access_maint_tunnels) alt_titles = list("Research Supervisor") minimum_character_age = 25 diff --git a/code/game/jobs/job/science_vr.dm b/code/game/jobs/job/science_vr.dm index 408101842d..284dd1e856 100644 --- a/code/game/jobs/job/science_vr.dm +++ b/code/game/jobs/job/science_vr.dm @@ -4,11 +4,11 @@ access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, access_tox_storage, access_teleporter, access_sec_doors, access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage, - access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_eva, access_network) + access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_eva, access_network, access_maint_tunnels) //Yawn added "access_maint_tunnels" minimal_access = list(access_rd, access_heads, access_tox, access_genetics, access_morgue, access_tox_storage, access_teleporter, access_sec_doors, access_research, access_robotics, access_xenobiology, access_ai_upload, access_tech_storage, - access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_eva, access_network) + access_RC_announce, access_keycard_auth, access_tcomsat, access_gateway, access_xenoarch, access_eva, access_network, access_maint_tunnels) /datum/job/scientist alt_titles = list("Xenoarcheologist", "Anomalist", "Phoron Researcher", "Circuit Designer") \ No newline at end of file diff --git a/code/game/jobs/job_controller.dm b/code/game/jobs/job_controller.dm index e454c93b18..b5d42ba2f6 100644 --- a/code/game/jobs/job_controller.dm +++ b/code/game/jobs/job_controller.dm @@ -389,11 +389,9 @@ var/global/datum/controller/occupations/job_master H << "Your current species, job or whitelist status does not permit you to spawn with [thing]!" continue - if(G.exploitable) - H.amend_exploitable(G.path) - if(G.slot == "implant") var/obj/item/weapon/implant/I = G.spawn_item(H) + I.invisibility = 100 I.implant_loadout(H) continue diff --git a/code/game/machinery/autolathe_vr.dm b/code/game/machinery/autolathe_vr.dm deleted file mode 100644 index 489c97f2f5..0000000000 --- a/code/game/machinery/autolathe_vr.dm +++ /dev/null @@ -1,17 +0,0 @@ -/datum/category_item/autolathe/arms/classic_smg_9mm - name = "SMG magazine (9mm)" - path = /obj/item/ammo_magazine/m9mml - hidden = 1 -/* De-coded? -/datum/category_item/autolathe/arms/classic_smg_9mmr - name = "SMG magazine (9mm rubber)" - path = /obj/item/ammo_magazine/m9mml/rubber - -/datum/category_item/autolathe/arms/classic_smg_9mmp - name = "SMG magazine (9mm practice)" - path = /obj/item/ammo_magazine/m9mml/practice - -/datum/category_item/autolathe/arms/classic_smg_9mmf - name = "SMG magazine (9mm flash)" - path = /obj/item/ammo_magazine/m9mml/flash -*/ \ No newline at end of file diff --git a/code/game/machinery/bioprinter.dm b/code/game/machinery/bioprinter.dm index f60fcabbfa..19c790b06b 100644 --- a/code/game/machinery/bioprinter.dm +++ b/code/game/machinery/bioprinter.dm @@ -21,6 +21,10 @@ var/loaded_dna //Blood sample for DNA hashing. var/malfunctioning = FALSE // May cause rejection, or the printing of some alien limb instead! + var/complex_organs = FALSE // Can it print more 'complex' organs? + + var/anomalous_organs = FALSE // Can it print anomalous organs? + // These should be subtypes of /obj/item/organ // Costs roughly 20u Phoron (1 sheet) per internal organ, limbs are 60u for limb and extremity var/list/products = list( @@ -29,6 +33,7 @@ "Kidneys" = list(/obj/item/organ/internal/kidneys,20), "Eyes" = list(/obj/item/organ/internal/eyes, 20), "Liver" = list(/obj/item/organ/internal/liver, 20), + "Spleen" = list(/obj/item/organ/internal/spleen, 20), "Arm, Left" = list(/obj/item/organ/external/arm, 40), "Arm, Right" = list(/obj/item/organ/external/arm/right, 40), "Leg, Left" = list(/obj/item/organ/external/leg, 40), @@ -39,6 +44,18 @@ "Hand, Right" = list(/obj/item/organ/external/hand/right, 20) ) + var/list/complex_products = list( + "Brain" = list(/obj/item/organ/internal/brain, 60), + "Larynx" = list(/obj/item/organ/internal/voicebox, 20), + "Head" = list(/obj/item/organ/external/head, 40) + ) + + var/list/anomalous_products = list( + "Lymphatic Complex" = list(/obj/item/organ/internal/immunehub, 120), + "Respiration Nexus" = list(/obj/item/organ/internal/lungs/replicant/mending, 80), + "Adrenal Valve Cluster" = list(/obj/item/organ/internal/heart/replicant/rage, 80) + ) + /obj/machinery/organ_printer/attackby(var/obj/item/O, var/mob/user) if(default_deconstruction_screwdriver(user, O)) updateUsrDialog() @@ -90,6 +107,17 @@ else malfunctioning = initial(malfunctioning) + if(manip_rating >= 3) + complex_organs = TRUE + if(manip_rating >= 4) + anomalous_organs = TRUE + if(manip_rating >= 5) + malfunctioning = TRUE + else + complex_organs = initial(complex_organs) + anomalous_organs = initial(anomalous_organs) + malfunctioning = initial(malfunctioning) + . = ..() /obj/machinery/organ_printer/attack_hand(mob/user) @@ -113,7 +141,17 @@ to_chat(user, "\The [src] can't operate without a reagent reservoir!") /obj/machinery/organ_printer/proc/printing_menu(mob/user) - var/choice = input("What would you like to print?") as null|anything in products + var/list/possible_list = list() + + possible_list |= products + + if(complex_organs) + possible_list |= complex_products + + if(anomalous_organs) + possible_list |= anomalous_products + + var/choice = input("What would you like to print?") as null|anything in possible_list if(!choice || printing || (stat & (BROKEN|NOPOWER))) return diff --git a/code/game/machinery/camera/tracking.dm b/code/game/machinery/camera/tracking.dm index 4f6b7df94f..a1c954df00 100644 --- a/code/game/machinery/camera/tracking.dm +++ b/code/game/machinery/camera/tracking.dm @@ -47,24 +47,24 @@ loc = sanitize(loc) if(!loc) - src << "Must supply a location name" + to_chat(src, "Must supply a location name") return if(stored_locations.len >= max_locations) - src << "Cannot store additional locations. Remove one first" + to_chat(src, "Cannot store additional locations. Remove one first") return if(loc in stored_locations) - src << "There is already a stored location by this name" + to_chat(src, "There is already a stored location by this name") return var/L = src.eyeobj.getLoc() if (InvalidPlayerTurf(get_turf(L))) - src << "Unable to store this location" + to_chat(src, "Unable to store this location") return stored_locations[loc] = L - src << "Location '[loc]' stored" + to_chat(src, "Location '[loc]' stored") /mob/living/silicon/ai/proc/sorted_stored_locations() return sortList(stored_locations) @@ -75,7 +75,7 @@ set desc = "Returns to the selected camera location" if (!(loc in stored_locations)) - src << "Location [loc] not found" + to_chat(src, "Location [loc] not found") return var/L = stored_locations[loc] @@ -87,11 +87,11 @@ set desc = "Deletes the selected camera location" if (!(loc in stored_locations)) - src << "Location [loc] not found" + to_chat(src, "Location [loc] not found") return stored_locations.Remove(loc) - src << "Location [loc] removed" + to_chat(src, "Location [loc] removed") // Used to allow the AI is write in mob names/camera name from the CMD line. /datum/trackable @@ -134,7 +134,7 @@ set desc = "Select who you would like to track." if(src.stat == 2) - src << "You can't follow [target_name] with cameras because you are dead!" + to_chat(src, "You can't follow [target_name] with cameras because you are dead!") return if(!target_name) src.cameraFollow = null @@ -147,7 +147,7 @@ if(!cameraFollow) return - src << "Follow camera mode [forced ? "terminated" : "ended"]." + to_chat(src, "Follow camera mode [forced ? "terminated" : "ended"].") cameraFollow.tracking_cancelled() cameraFollow = null @@ -266,14 +266,14 @@ mob/living/proc/tracking_initiated() mob/living/silicon/robot/tracking_initiated() tracking_entities++ if(tracking_entities == 1 && has_zeroth_law()) - src << "Internal camera is currently being accessed." + to_chat(src, "Internal camera is currently being accessed.") mob/living/proc/tracking_cancelled() mob/living/silicon/robot/tracking_initiated() tracking_entities-- if(!tracking_entities && has_zeroth_law()) - src << "Internal camera is no longer being accessed." + to_chat(src, "Internal camera is no longer being accessed.") #undef TRACKING_POSSIBLE diff --git a/code/game/machinery/cloning.dm b/code/game/machinery/cloning.dm index 8e3cb117f9..52a31d5afe 100644 --- a/code/game/machinery/cloning.dm +++ b/code/game/machinery/cloning.dm @@ -113,6 +113,8 @@ if(!R.dna.real_name) //to prevent null names R.dna.real_name = "clone ([rand(0,999)])" H.real_name = R.dna.real_name + H.gender = R.gender + H.descriptors = R.body_descriptors //Get the clone body ready H.adjustCloneLoss(150) // New damage var so you can't eject a clone early then stab them to abuse the current damage system --NeoFite diff --git a/code/game/machinery/computer/cloning.dm b/code/game/machinery/computer/cloning.dm index 96e6f6b5f9..5178d77d82 100644 --- a/code/game/machinery/computer/cloning.dm +++ b/code/game/machinery/computer/cloning.dm @@ -335,6 +335,8 @@ R.name = R.dna.real_name R.types = DNA2_BUF_UI|DNA2_BUF_UE|DNA2_BUF_SE R.languages = subject.languages + R.gender = subject.gender + R.body_descriptors = subject.descriptors if(!brain_skip) //Brains don't have flavor text. R.flavor = subject.flavor_texts.Copy() else diff --git a/code/game/machinery/computer/guestpass.dm b/code/game/machinery/computer/guestpass.dm index a1fd7199b2..d4c490c2a9 100644 --- a/code/game/machinery/computer/guestpass.dm +++ b/code/game/machinery/computer/guestpass.dm @@ -52,6 +52,7 @@ icon_state = "guest_invalid" expiration_time = world.time expired = 1 + return return ..() /obj/item/weapon/card/id/guest/Initialize() diff --git a/code/game/machinery/doors/airlock.dm b/code/game/machinery/doors/airlock.dm index c31c8f650b..480effcf98 100644 --- a/code/game/machinery/doors/airlock.dm +++ b/code/game/machinery/doors/airlock.dm @@ -387,7 +387,7 @@ /obj/machinery/door/airlock/uranium/process() if(world.time > last_event+20) if(prob(50)) - radiation_repository.radiate(src, rad_power) + SSradiation.radiate(src, rad_power) last_event = world.time ..() diff --git a/code/game/machinery/doors/blast_door.dm b/code/game/machinery/doors/blast_door.dm index 615309d31c..b2a9941afa 100644 --- a/code/game/machinery/doors/blast_door.dm +++ b/code/game/machinery/doors/blast_door.dm @@ -56,7 +56,7 @@ icon_state = icon_state_closed else icon_state = icon_state_open - radiation_repository.resistance_cache.Remove(get_turf(src)) + SSradiation.resistance_cache.Remove(get_turf(src)) return // Has to be in here, comment at the top is older than the emag_act code on doors proper diff --git a/code/game/machinery/doors/blast_door_yw.dm b/code/game/machinery/doors/blast_door_yw.dm index 115df425be..791355e98e 100644 --- a/code/game/machinery/doors/blast_door_yw.dm +++ b/code/game/machinery/doors/blast_door_yw.dm @@ -10,6 +10,7 @@ icon_state = "pdoor1" maxhealth = 600 rad_resistance = 100 + id = "EngineShroud" /obj/machinery/door/blast/radproof/open icon_state = "pdoor0" @@ -24,3 +25,8 @@ /obj/machinery/door/blast/radproof/force_close() src.rad_resistance = 100 ..() + +/obj/machinery/button/remote/blast_door/radproof + name = "Reactor Shroud Control" + desc = "It the reactor shroud remotely." + id = "EngineShroud" diff --git a/code/game/machinery/doors/door.dm b/code/game/machinery/doors/door.dm index c55a7d8345..43fb8340ef 100644 --- a/code/game/machinery/doors/door.dm +++ b/code/game/machinery/doors/door.dm @@ -382,7 +382,7 @@ icon_state = "door1" else icon_state = "door0" - radiation_repository.resistance_cache.Remove(get_turf(src)) + SSradiation.resistance_cache.Remove(get_turf(src)) return diff --git a/code/game/machinery/frame.dm b/code/game/machinery/frame.dm index 0baa68cf22..41c7a33a19 100644 --- a/code/game/machinery/frame.dm +++ b/code/game/machinery/frame.dm @@ -105,7 +105,6 @@ /datum/frame/frame_types/reagent_distillery name = "Distillery" frame_class = FRAME_CLASS_MACHINE - circuit = /obj/item/weapon/circuitboard/distiller frame_size = 4 /datum/frame/frame_types/display @@ -192,13 +191,13 @@ ////////////////////////////// /obj/structure/frame - anchored = 0 + anchored = FALSE name = "frame" icon = 'icons/obj/stock_parts.dmi' icon_state = "machine_0" var/state = FRAME_PLACED var/obj/item/weapon/circuitboard/circuit = null - var/need_circuit = 1 + var/need_circuit = TRUE var/datum/frame/frame_types/frame_type = new /datum/frame/frame_types/machine var/list/components = null @@ -207,8 +206,8 @@ /obj/structure/frame/computer //used for maps frame_type = new /datum/frame/frame_types/computer - anchored = 1 - density = 1 + anchored = TRUE + density = TRUE /obj/structure/frame/examine(mob/user) ..() @@ -260,14 +259,14 @@ pixel_y = (dir & 3)? (dir == NORTH ? -frame_type.y_offset : frame_type.y_offset) : 0 if(frame_type.circuit) - need_circuit = 0 + need_circuit = FALSE circuit = new frame_type.circuit(src) if(frame_type.name == "Computer") - density = 1 + density = TRUE if(frame_type.frame_class == FRAME_CLASS_MACHINE) - density = 1 + density = TRUE update_icon() @@ -277,7 +276,7 @@ to_chat(user, "You start to wrench the frame into place.") playsound(src.loc, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) - anchored = 1 + anchored = TRUE if(!need_circuit && circuit) state = FRAME_FASTENED check_components() @@ -290,7 +289,7 @@ playsound(src, P.usesound, 50, 1) if(do_after(user, 20 * P.toolspeed)) to_chat(user, "You unfasten the frame.") - anchored = 0 + anchored = FALSE else if(istype(P, /obj/item/weapon/weldingtool)) if(state == FRAME_PLACED) @@ -587,11 +586,11 @@ set src in oview(1) if(usr.incapacitated()) - return 0 + return FALSE if(anchored) to_chat(usr, "It is fastened to the floor therefore you can't rotate it!") - return 0 + return FALSE src.set_dir(turn(src.dir, 90)) @@ -606,11 +605,11 @@ set src in oview(1) if(usr.incapacitated()) - return 0 + return FALSE if(anchored) to_chat(usr, "It is fastened to the floor therefore you can't rotate it!") - return 0 + return FALSE src.set_dir(turn(src.dir, 270)) diff --git a/code/game/machinery/oxygen_pump.dm b/code/game/machinery/oxygen_pump.dm index 74cc399beb..7665fd0e83 100644 --- a/code/game/machinery/oxygen_pump.dm +++ b/code/game/machinery/oxygen_pump.dm @@ -4,7 +4,7 @@ /obj/machinery/oxygen_pump name = "emergency oxygen pump" icon = 'icons/obj/walllocker.dmi' - desc = "A wall mounted oxygen pump with a retractable face mask that you can pull over your face in case of emergencies." + desc = "A wall mounted oxygen pump with a retractable mask that you can pull over your face in case of emergencies." icon_state = "oxygen_tank" anchored = TRUE @@ -236,3 +236,76 @@ icon_state_closed = "anesthetic_tank" icon_state_open = "anesthetic_tank_open" mask_type = /obj/item/clothing/mask/breath/anesthetic + +/obj/machinery/oxygen_pump/mobile + name = "portable oxygen pump" + icon = 'icons/obj/atmos.dmi' + desc = "A portable oxygen pump with a retractable mask that you can pull over your face in case of emergencies." + icon_state = "medpump" + icon_state_open = "medpump_open" + icon_state_closed = "medpump" + + anchored = FALSE + density = TRUE + + mask_type = /obj/item/clothing/mask/gas/clear + + var/last_area = null + +/obj/machinery/oxygen_pump/mobile/process() + ..() + + var/turf/T = get_turf(src) + + if(!last_area && T) + last_area = T.loc + + if(last_area != T.loc) + power_change() + last_area = T.loc + +/obj/machinery/oxygen_pump/mobile/anesthetic + name = "portable anesthetic pump" + spawn_type = /obj/item/weapon/tank/anesthetic + icon_state = "medpump_n2o" + icon_state_closed = "medpump_n2o" + icon_state_open = "medpump_n2o_open" + mask_type = /obj/item/clothing/mask/breath/anesthetic + +/obj/machinery/oxygen_pump/mobile/stabilizer + name = "portable patient stabilizer" + desc = "A portable oxygen pump with a retractable mask used for stabilizing patients in the field." + +/obj/machinery/oxygen_pump/mobile/stabilizer/process() + if(breather) + if(!can_apply_to_target(breather)) + if(tank) + tank.forceMove(src) + breather.remove_from_mob(contained) + contained.forceMove(src) + src.visible_message("\The [contained] rapidly retracts back into \the [src]!") + breather = null + use_power = 1 + else if(!breather.internal && tank) + breather.internal = tank + if(breather.internals) + breather.internals.icon_state = "internal0" + + if(breather) // Safety. + if(ishuman(breather)) + var/mob/living/carbon/human/H = breather + + if(H.stat == DEAD) + H.add_modifier(/datum/modifier/bloodpump_corpse, 6 SECONDS) + + else + H.add_modifier(/datum/modifier/bloodpump, 6 SECONDS) + + var/turf/T = get_turf(src) + + if(!last_area && T) + last_area = T.loc + + if(last_area != T.loc) + power_change() + last_area = T.loc diff --git a/code/game/machinery/suit_storage_unit.dm b/code/game/machinery/suit_storage_unit.dm index 5a4c58b74a..a8c9492e23 100644 --- a/code/game/machinery/suit_storage_unit.dm +++ b/code/game/machinery/suit_storage_unit.dm @@ -931,9 +931,10 @@ /obj/machinery/suit_cycler/proc/finished_job() var/turf/T = get_turf(src) - T.visible_message("\icon[src]The [src] pings loudly.") + T.visible_message("\icon[src]The [src] beeps several times.") icon_state = initial(icon_state) active = 0 + playsound(src, 'sound/machines/boobeebeep.ogg', 50) updateUsrDialog() /obj/machinery/suit_cycler/proc/repair_suit() diff --git a/code/game/machinery/syndicatebeacon_vr.dm b/code/game/machinery/syndicatebeacon_vr.dm new file mode 100644 index 0000000000..ef6b3da0bb --- /dev/null +++ b/code/game/machinery/syndicatebeacon_vr.dm @@ -0,0 +1,40 @@ +// Virgo modified syndie beacon, does not give objectives + +/obj/machinery/syndicate_beacon/virgo/attack_hand(var/mob/user as mob) + usr.set_machine(src) + var/dat = "Scanning [pick("retina pattern", "voice print", "fingerprints", "dna sequence")]...
Identity confirmed,
" + if(istype(user, /mob/living/carbon/human) || istype(user, /mob/living/silicon/ai)) + if(is_special_character(user)) + dat += "Operative record found. Greetings, Agent [user.name].
" + else if(charges < 1) + dat += "Connection severed.
" + else + var/honorific = "Mr." + if(user.gender == FEMALE) + honorific = "Ms." + dat += "Identity not found in operative database. What can the Black Market do for you today, [honorific] [user.name]?
" + if(!selfdestructing) + dat += "

\"[pick("Send me some supplies!", "Transfer supplies.")]\"
" + dat += temptext + user << browse(dat, "window=syndbeacon") + onclose(user, "syndbeacon") + +/obj/machinery/syndicate_beacon/virgo/Topic(href, href_list) + if(href_list["betraitor"]) + if(charges < 1) + updateUsrDialog() + return + var/mob/M = locate(href_list["traitormob"]) + if(M.mind.special_role || jobban_isbanned(M, "Syndicate")) + temptext = "We have no need for you at this time. Have a pleasant day.
" + updateUsrDialog() + return + charges -= 1 + if(istype(M, /mob/living/carbon/human)) + var/mob/living/carbon/human/N = M + to_chat(N, "Access granted, here are the supplies!") + traitors.equip(N) + message_admins("[N]/([N.ckey]) has recieved an uplink and telecrystals from the syndicate beacon.") + + updateUsrDialog() + return diff --git a/code/game/machinery/vending.dm b/code/game/machinery/vending.dm index 0fe0a98f27..9e921993ee 100644 --- a/code/game/machinery/vending.dm +++ b/code/game/machinery/vending.dm @@ -772,6 +772,7 @@ name = "Robust Softdrinks" desc = "A softdrink vendor provided by Robust Industries, LLC." icon_state = "Cola_Machine" //VOREStation Edit + icon_vend = "Cola_Machine-purchase" //VOREStation Edit product_slogans = "Robust Softdrinks: More robust than a toolbox to the head!" product_ads = "Refreshing!;Hope you're thirsty!;Over 1 million drinks sold!;Thirsty? Why not cola?;Please, have a drink!;Drink up!;The best drinks in space." products = list(/obj/item/weapon/reagent_containers/food/drinks/cans/cola = 10,/obj/item/weapon/reagent_containers/food/drinks/cans/space_mountain_wind = 10, diff --git a/code/game/machinery/vending_vr.dm b/code/game/machinery/vending_vr.dm index 0bf7b94714..e165d88cbd 100644 --- a/code/game/machinery/vending_vr.dm +++ b/code/game/machinery/vending_vr.dm @@ -145,4 +145,1104 @@ /obj/item/weapon/reagent_containers/blood/empty = 5) contraband = list(/obj/item/weapon/reagent_containers/glass/bottle/stoxin = 2) req_log_access = access_cmo - has_logs = 1 \ No newline at end of file + has_logs = 1 + +/obj/machinery/vending/loadout + name = "Fingers and Toes" + desc = "A special vendor for gloves and shoes!" + product_ads = "Do you have fingers and toes? COVER THEM UP!;Show me your toes! Wait. NO DON'T! BUY NEW SHOES!;Don't leave prints, BUY SOME GLOVES!;Remember to check your shoes for micros! You don't have to let them out, but just check for them!;Fingers and Toes is not liable for micro entrapment or abuse under the feet of our patrons.!;This little piggy went WE WE WE all the way down to FINGERS AND TOES to pick up some sweet new gloves and shoes." + icon_state = "glovesnshoes" + products = list(/obj/item/clothing/gloves/evening = 5, + /obj/item/clothing/gloves/fingerless = 5, + /obj/item/clothing/gloves/black = 5, + /obj/item/clothing/gloves/blue = 5, + /obj/item/clothing/gloves/brown = 5, + /obj/item/clothing/gloves/color = 5, + /obj/item/clothing/gloves/green = 5, + /obj/item/clothing/gloves/grey = 5, + /obj/item/clothing/gloves/sterile/latex = 5, + /obj/item/clothing/gloves/light_brown = 5, + /obj/item/clothing/gloves/sterile/nitrile = 5, + /obj/item/clothing/gloves/orange = 5, + /obj/item/clothing/gloves/purple = 5, + /obj/item/clothing/gloves/red = 5, + /obj/item/clothing/gloves/fluff/siren = 5, + /obj/item/clothing/gloves/white = 5, + /obj/item/clothing/gloves/duty = 5, + /obj/item/clothing/shoes/athletic = 5, + /obj/item/clothing/shoes/boots/fluff/siren = 5, + /obj/item/clothing/shoes/slippers = 5, + /obj/item/clothing/shoes/boots/cowboy/classic = 5, + /obj/item/clothing/shoes/boots/cowboy = 5, + /obj/item/clothing/shoes/boots/duty = 5, + /obj/item/clothing/shoes/flats/white/color = 5, + /obj/item/clothing/shoes/flipflop = 5, + /obj/item/clothing/shoes/heels = 5, + /obj/item/clothing/shoes/hitops/black = 5, + /obj/item/clothing/shoes/hitops/blue = 5, + /obj/item/clothing/shoes/hitops/green = 5, + /obj/item/clothing/shoes/hitops/orange = 5, + /obj/item/clothing/shoes/hitops/purple = 5, + /obj/item/clothing/shoes/hitops/red = 5, + /obj/item/clothing/shoes/flats/white/color = 5, + /obj/item/clothing/shoes/hitops/yellow = 5, + /obj/item/clothing/shoes/boots/jackboots = 5, + /obj/item/clothing/shoes/boots/jungle = 5, + /obj/item/clothing/shoes/black/cuffs = 5, + /obj/item/clothing/shoes/black/cuffs/blue = 5, + /obj/item/clothing/shoes/black/cuffs/red = 5, + /obj/item/clothing/shoes/sandal = 5, + /obj/item/clothing/shoes/black = 5, + /obj/item/clothing/shoes/blue = 5, + /obj/item/clothing/shoes/brown = 5, + /obj/item/clothing/shoes/laceup = 5, + /obj/item/clothing/shoes/green = 5, + /obj/item/clothing/shoes/leather = 5, + /obj/item/clothing/shoes/orange = 5, + /obj/item/clothing/shoes/purple = 5, + /obj/item/clothing/shoes/red = 5, + /obj/item/clothing/shoes/white = 5, + /obj/item/clothing/shoes/yellow = 5, + /obj/item/clothing/shoes/skater = 5, + /obj/item/clothing/shoes/boots/cowboy/snakeskin = 5, + /obj/item/clothing/shoes/boots/jackboots/toeless = 5, + /obj/item/clothing/shoes/boots/workboots/toeless = 5, + /obj/item/clothing/shoes/boots/winter = 5, + /obj/item/clothing/shoes/boots/workboots = 5, + /obj/item/clothing/shoes/footwraps = 5) + prices = list(/obj/item/clothing/gloves/evening = 200, + /obj/item/clothing/gloves/fingerless = 200, + /obj/item/clothing/gloves/black = 200, + /obj/item/clothing/gloves/blue = 200, + /obj/item/clothing/gloves/brown = 200, + /obj/item/clothing/gloves/color = 200, + /obj/item/clothing/gloves/green = 200, + /obj/item/clothing/gloves/grey = 200, + /obj/item/clothing/gloves/sterile/latex = 200, + /obj/item/clothing/gloves/light_brown = 200, + /obj/item/clothing/gloves/sterile/nitrile = 200, + /obj/item/clothing/gloves/orange = 200, + /obj/item/clothing/gloves/purple = 200, + /obj/item/clothing/gloves/red = 200, + /obj/item/clothing/gloves/fluff/siren = 200, + /obj/item/clothing/gloves/white = 200, + /obj/item/clothing/gloves/duty = 200, + /obj/item/clothing/shoes/athletic = 100, + /obj/item/clothing/shoes/boots/fluff/siren = 100, + /obj/item/clothing/shoes/slippers = 100, + /obj/item/clothing/shoes/boots/cowboy/classic = 100, + /obj/item/clothing/shoes/boots/cowboy = 100, + /obj/item/clothing/shoes/boots/duty = 200, + /obj/item/clothing/shoes/flats/white/color = 100, + /obj/item/clothing/shoes/flipflop = 100, + /obj/item/clothing/shoes/heels = 100, + /obj/item/clothing/shoes/hitops/black = 100, + /obj/item/clothing/shoes/hitops/blue = 100, + /obj/item/clothing/shoes/hitops/green = 100, + /obj/item/clothing/shoes/hitops/orange = 100, + /obj/item/clothing/shoes/hitops/purple = 100, + /obj/item/clothing/shoes/hitops/red = 100, + /obj/item/clothing/shoes/flats/white/color = 100, + /obj/item/clothing/shoes/hitops/yellow = 100, + /obj/item/clothing/shoes/boots/jackboots = 100, + /obj/item/clothing/shoes/boots/jungle = 200, + /obj/item/clothing/shoes/black/cuffs = 100, + /obj/item/clothing/shoes/black/cuffs/blue = 100, + /obj/item/clothing/shoes/black/cuffs/red = 100, + /obj/item/clothing/shoes/sandal = 100, + /obj/item/clothing/shoes/black = 100, + /obj/item/clothing/shoes/blue = 100, + /obj/item/clothing/shoes/brown = 100, + /obj/item/clothing/shoes/laceup = 100, + /obj/item/clothing/shoes/green = 100, + /obj/item/clothing/shoes/leather = 100, + /obj/item/clothing/shoes/orange = 100, + /obj/item/clothing/shoes/purple = 100, + /obj/item/clothing/shoes/red = 100, + /obj/item/clothing/shoes/white = 100, + /obj/item/clothing/shoes/yellow = 100, + /obj/item/clothing/shoes/skater = 100, + /obj/item/clothing/shoes/boots/cowboy/snakeskin = 100, + /obj/item/clothing/shoes/boots/jackboots/toeless = 100, + /obj/item/clothing/shoes/boots/workboots/toeless = 100, + /obj/item/clothing/shoes/boots/winter = 100, + /obj/item/clothing/shoes/boots/workboots = 100, + /obj/item/clothing/shoes/footwraps = 100) + premium = list(/obj/item/clothing/gloves/rainbow = 1, + /obj/item/clothing/shoes/rainbow = 1,) + contraband = list(/obj/item/clothing/shoes/syndigaloshes = 1, + /obj/item/clothing/shoes/clown_shoes = 1) +/obj/machinery/vending/loadout/uniform + name = "The Basics" + desc = "A vendor using compressed matter cartridges to store large amounts of basic station uniforms." + product_ads = "Don't get caught naked!;Pick up your uniform!;Using compressed matter cartridges and VERY ETHICAL labor practices, we bring you the uniforms you need!;No uniform? No problem!;We've got your covered!;The Basics is not responsible for being crushed under the amount of things inside our machines. DO NOT VEND IN EXCESS!!" + icon_state = "loadout" + icon_vend = "loadout-purchase" + vend_delay = 16 + products = list(/obj/item/device/pda = 50, + /obj/item/device/radio/headset = 50, + /obj/item/weapon/storage/backpack/ = 10, + /obj/item/weapon/storage/backpack/messenger = 10, + /obj/item/weapon/storage/backpack/satchel = 10, + /obj/item/clothing/under/color = 5, + /obj/item/clothing/under/color/aqua = 5, + /obj/item/clothing/under/color/black = 5, + /obj/item/clothing/under/color/blackjumpskirt = 5, + /obj/item/clothing/under/color/blue = 5, + /obj/item/clothing/under/color/brown = 5, + /obj/item/clothing/under/color/green = 5, + /obj/item/clothing/under/color/grey = 5, + /obj/item/clothing/under/color/orange = 5, + /obj/item/clothing/under/color/pink = 5, + /obj/item/clothing/under/color/red = 5, + /obj/item/clothing/under/color/white = 5, + /obj/item/clothing/under/color/yellow = 5, + /obj/item/clothing/shoes/black = 20, + /obj/item/clothing/shoes/white = 20) +/obj/machinery/vending/loadout/accessory + name = "Looty Inc." + desc = "A special vendor for accessories." + product_ads = "Want shinies? We have the shinies.;Need that special something to complete your outfit? We have what you need!;Ditch that old dull dangly something you've got and pick up one of our shinies!;Bracelets, collars, scarfs rings and more! We have the fancy things you need!;Does your pet need a collar? We don't judge! Keep them in line with one of one of ours!;Top of the line materials! 'Hand crafted' goods!" + icon_state = "accessory" + icon_vend = "accessory-purchase" + vend_delay = 6 + products = list(/obj/item/clothing/accessory = 5, + /obj/item/clothing/accessory/armband/med/color = 10, + /obj/item/clothing/accessory/asymmetric = 5, + /obj/item/clothing/accessory/asymmetric/purple = 5, + /obj/item/clothing/accessory/asymmetric/green = 5, + /obj/item/clothing/accessory/bracelet = 5, + /obj/item/clothing/accessory/bracelet/material = 5, + /obj/item/clothing/accessory/bracelet/friendship = 5, + /obj/item/clothing/accessory/chaps = 5, + /obj/item/clothing/accessory/chaps/black = 5, + /obj/item/weapon/storage/briefcase/clutch = 1, + /obj/item/clothing/accessory/collar = 5, + /obj/item/clothing/accessory/collar/bell = 5, + /obj/item/clothing/accessory/collar/spike = 5, + /obj/item/clothing/accessory/collar/pink = 5, + /obj/item/clothing/accessory/collar/holo = 5, + /obj/item/clothing/accessory/collar/shock = 5, + /obj/item/weapon/storage/belt/fannypack = 1, + /obj/item/weapon/storage/belt/fannypack/white = 5, + /obj/item/clothing/accessory/fullcape = 5, + /obj/item/clothing/accessory/halfcape = 5, + /obj/item/clothing/accessory/hawaii = 5, + /obj/item/clothing/accessory/hawaii/random = 5, + /obj/item/clothing/accessory/locket = 5, + /obj/item/weapon/storage/backpack/purse = 1, + /obj/item/clothing/accessory/sash = 5, + /obj/item/clothing/accessory/scarf = 5, + /obj/item/clothing/accessory/scarf/red = 5, + /obj/item/clothing/accessory/scarf/darkblue = 5, + /obj/item/clothing/accessory/scarf/purple = 5, + /obj/item/clothing/accessory/scarf/yellow = 5, + /obj/item/clothing/accessory/scarf/orange = 5, + /obj/item/clothing/accessory/scarf/lightblue = 5, + /obj/item/clothing/accessory/scarf/white = 5, + /obj/item/clothing/accessory/scarf/black = 5, + /obj/item/clothing/accessory/scarf/zebra = 5, + /obj/item/clothing/accessory/scarf/christmas = 5, + /obj/item/clothing/accessory/scarf/stripedred = 5, + /obj/item/clothing/accessory/scarf/stripedgreen = 5, + /obj/item/clothing/accessory/scarf/stripedblue = 5, + /obj/item/clothing/accessory/jacket = 5, + /obj/item/clothing/accessory/jacket/checkered = 5, + /obj/item/clothing/accessory/jacket/burgundy = 5, + /obj/item/clothing/accessory/jacket/navy = 5, + /obj/item/clothing/accessory/jacket/charcoal = 5, + /obj/item/clothing/accessory/vest = 5, + /obj/item/clothing/accessory/sweater = 5, + /obj/item/clothing/accessory/sweater/pink = 5, + /obj/item/clothing/accessory/sweater/mint = 5, + /obj/item/clothing/accessory/sweater/blue = 5, + /obj/item/clothing/accessory/sweater/heart = 5, + /obj/item/clothing/accessory/sweater/nt = 5, + /obj/item/clothing/accessory/sweater/keyhole = 5, + /obj/item/clothing/accessory/sweater/winterneck = 5, + /obj/item/clothing/accessory/sweater/uglyxmas = 5, + /obj/item/clothing/accessory/sweater/flowersweater = 5, + /obj/item/clothing/accessory/sweater/redneck = 5, + /obj/item/clothing/accessory/tie = 5, + /obj/item/clothing/accessory/tie/horrible = 5, + /obj/item/clothing/accessory/tie/white = 5, + /obj/item/clothing/accessory/tie/navy = 5, + /obj/item/clothing/accessory/tie/yellow = 5, + /obj/item/clothing/accessory/tie/darkgreen = 5, + /obj/item/clothing/accessory/tie/black = 5, + /obj/item/clothing/accessory/tie/red_long = 5, + /obj/item/clothing/accessory/tie/red_clip = 5, + /obj/item/clothing/accessory/tie/blue_long = 5, + /obj/item/clothing/accessory/tie/blue_clip = 5, + /obj/item/clothing/accessory/tie/red = 5, + /obj/item/clothing/accessory/wcoat = 5, + /obj/item/clothing/accessory/wcoat/red = 5, + /obj/item/clothing/accessory/wcoat/grey = 5, + /obj/item/clothing/accessory/wcoat/brown = 5, + /obj/item/clothing/accessory/wcoat/gentleman = 5, + /obj/item/clothing/accessory/wcoat/swvest = 5, + /obj/item/clothing/accessory/wcoat/swvest/blue = 5, + /obj/item/clothing/accessory/wcoat/swvest/red = 5, + /obj/item/weapon/storage/wallet = 5, + /obj/item/weapon/storage/wallet/poly = 5, + /obj/item/weapon/storage/wallet/womens = 5, + /obj/item/weapon/lipstick = 5, + /obj/item/weapon/lipstick/purple = 5, + /obj/item/weapon/lipstick/jade = 5, + /obj/item/weapon/lipstick/black = 5, + /obj/item/clothing/ears/earmuffs = 5, + /obj/item/clothing/ears/earmuffs/headphones = 5, + /obj/item/clothing/ears/earring/stud = 5, + /obj/item/clothing/ears/earring/dangle = 5, + /obj/item/clothing/gloves/ring/mariner = 5, + /obj/item/clothing/gloves/ring/engagement = 5, + /obj/item/clothing/gloves/ring/seal/signet = 5, + /obj/item/clothing/gloves/ring/seal/mason = 5, + /obj/item/clothing/gloves/ring/material/plastic = 5, + /obj/item/clothing/gloves/ring/material/steel = 5, + /obj/item/clothing/gloves/ring/material/gold = 5, + /obj/item/clothing/glasses/eyepatch = 5, + /obj/item/clothing/glasses/gglasses = 5, + /obj/item/clothing/glasses/regular/hipster = 5, + /obj/item/clothing/glasses/rimless = 5, + /obj/item/clothing/glasses/thin = 5, + /obj/item/clothing/glasses/monocle = 5, + /obj/item/clothing/glasses/goggles = 5, + /obj/item/clothing/glasses/fluff/spiffygogs = 5, + /obj/item/clothing/glasses/fakesunglasses = 5, + /obj/item/clothing/glasses/fakesunglasses/aviator = 5, + /obj/item/clothing/mask/bandana/blue = 5, + /obj/item/clothing/mask/bandana/gold = 5, + /obj/item/clothing/mask/bandana/green = 5, + /obj/item/clothing/mask/bandana/red = 5, + /obj/item/clothing/mask/surgical = 5) + prices = list(/obj/item/clothing/accessory = 100, + /obj/item/clothing/accessory/armband/med/color = 100, + /obj/item/clothing/accessory/asymmetric = 100, + /obj/item/clothing/accessory/asymmetric/purple = 100, + /obj/item/clothing/accessory/asymmetric/green = 100, + /obj/item/clothing/accessory/bracelet = 100, + /obj/item/clothing/accessory/bracelet/material = 100, + /obj/item/clothing/accessory/bracelet/friendship = 100, + /obj/item/clothing/accessory/chaps = 100, + /obj/item/clothing/accessory/chaps/black = 100, + /obj/item/weapon/storage/briefcase/clutch = 100, + /obj/item/clothing/accessory/collar = 100, + /obj/item/clothing/accessory/collar/bell = 100, + /obj/item/clothing/accessory/collar/spike = 100, + /obj/item/clothing/accessory/collar/pink = 100, + /obj/item/clothing/accessory/collar/holo = 100, + /obj/item/clothing/accessory/collar/shock = 100, + /obj/item/weapon/storage/belt/fannypack = 100, + /obj/item/weapon/storage/belt/fannypack/white = 100, + /obj/item/clothing/accessory/fullcape = 100, + /obj/item/clothing/accessory/halfcape = 100, + /obj/item/clothing/accessory/hawaii = 100, + /obj/item/clothing/accessory/hawaii/random = 100, + /obj/item/clothing/accessory/locket = 100, + /obj/item/weapon/storage/backpack/purse = 100, + /obj/item/clothing/accessory/sash = 100, + /obj/item/clothing/accessory/scarf = 5, + /obj/item/clothing/accessory/scarf/red = 100, + /obj/item/clothing/accessory/scarf/darkblue = 100, + /obj/item/clothing/accessory/scarf/purple = 100, + /obj/item/clothing/accessory/scarf/yellow = 100, + /obj/item/clothing/accessory/scarf/orange = 100, + /obj/item/clothing/accessory/scarf/lightblue = 100, + /obj/item/clothing/accessory/scarf/white = 100, + /obj/item/clothing/accessory/scarf/black = 100, + /obj/item/clothing/accessory/scarf/zebra = 100, + /obj/item/clothing/accessory/scarf/christmas = 100, + /obj/item/clothing/accessory/scarf/stripedred = 100, + /obj/item/clothing/accessory/scarf/stripedgreen = 100, + /obj/item/clothing/accessory/scarf/stripedblue = 100, + /obj/item/clothing/accessory/jacket = 100, + /obj/item/clothing/accessory/jacket/checkered = 100, + /obj/item/clothing/accessory/jacket/burgundy = 100, + /obj/item/clothing/accessory/jacket/navy = 100, + /obj/item/clothing/accessory/jacket/charcoal = 100, + /obj/item/clothing/accessory/vest = 100, + /obj/item/clothing/accessory/sweater = 100, + /obj/item/clothing/accessory/sweater/pink = 100, + /obj/item/clothing/accessory/sweater/mint = 100, + /obj/item/clothing/accessory/sweater/blue = 100, + /obj/item/clothing/accessory/sweater/heart = 100, + /obj/item/clothing/accessory/sweater/nt = 5, + /obj/item/clothing/accessory/sweater/keyhole = 100, + /obj/item/clothing/accessory/sweater/winterneck = 100, + /obj/item/clothing/accessory/sweater/uglyxmas = 5, + /obj/item/clothing/accessory/sweater/flowersweater = 100, + /obj/item/clothing/accessory/sweater/redneck = 100, + /obj/item/clothing/accessory/tie = 100, + /obj/item/clothing/accessory/tie/horrible = 100, + /obj/item/clothing/accessory/tie/white = 100, + /obj/item/clothing/accessory/tie/navy = 100, + /obj/item/clothing/accessory/tie/yellow = 100, + /obj/item/clothing/accessory/tie/darkgreen = 100, + /obj/item/clothing/accessory/tie/black = 100, + /obj/item/clothing/accessory/tie/red_long = 100, + /obj/item/clothing/accessory/tie/red_clip = 100, + /obj/item/clothing/accessory/tie/blue_long = 100, + /obj/item/clothing/accessory/tie/blue_clip = 100, + /obj/item/clothing/accessory/tie/red = 100, + /obj/item/clothing/accessory/wcoat = 100, + /obj/item/clothing/accessory/wcoat/red = 100, + /obj/item/clothing/accessory/wcoat/grey = 100, + /obj/item/clothing/accessory/wcoat/brown = 100, + /obj/item/clothing/accessory/wcoat/gentleman = 100, + /obj/item/clothing/accessory/wcoat/swvest = 100, + /obj/item/clothing/accessory/wcoat/swvest/blue = 100, + /obj/item/clothing/accessory/wcoat/swvest/red = 100, + /obj/item/weapon/storage/wallet = 100, + /obj/item/weapon/storage/wallet/poly = 100, + /obj/item/weapon/storage/wallet/womens = 100, + /obj/item/weapon/lipstick = 100, + /obj/item/weapon/lipstick/purple = 100, + /obj/item/weapon/lipstick/jade = 100, + /obj/item/weapon/lipstick/black = 100, + /obj/item/clothing/ears/earmuffs = 100, + /obj/item/clothing/ears/earmuffs/headphones = 100, + /obj/item/clothing/ears/earring/stud = 100, + /obj/item/clothing/ears/earring/dangle = 100, + /obj/item/clothing/gloves/ring/mariner = 100, + /obj/item/clothing/gloves/ring/engagement = 100, + /obj/item/clothing/gloves/ring/seal/signet = 100, + /obj/item/clothing/gloves/ring/seal/mason = 100, + /obj/item/clothing/gloves/ring/material/plastic = 100, + /obj/item/clothing/gloves/ring/material/steel = 100, + /obj/item/clothing/gloves/ring/material/gold = 500, + /obj/item/clothing/glasses/eyepatch = 100, + /obj/item/clothing/glasses/gglasses = 100, + /obj/item/clothing/glasses/regular/hipster = 100, + /obj/item/clothing/glasses/rimless = 100, + /obj/item/clothing/glasses/thin = 100, + /obj/item/clothing/glasses/monocle = 100, + /obj/item/clothing/glasses/goggles = 100, + /obj/item/clothing/glasses/fluff/spiffygogs = 100, + /obj/item/clothing/glasses/fakesunglasses = 100, + /obj/item/clothing/glasses/fakesunglasses/aviator = 100, + /obj/item/clothing/mask/bandana/blue = 100, + /obj/item/clothing/mask/bandana/gold = 100, + /obj/item/clothing/mask/bandana/green = 100, + /obj/item/clothing/mask/bandana/red = 100, + /obj/item/clothing/mask/surgical = 200) + premium = list(/obj/item/weapon/bedsheet/rainbow = 1) + contraband = list(/obj/item/clothing/mask/gas/clown_hat = 1) +/obj/machinery/vending/loadout/clothing + name = "General Jump" + desc = "A special vendor using compressed matter cartridges to store large amounts of clothing." + product_ads = "Tired of your grey jumpsuit? Spruce yourself up!;We have the outfit for you!;Don't let that grey jumpsuit get you down, get a ROBUST outfit right now!;Using compressed matter catridges and VERY ETHICAL labor practices to bring YOU the clothing you crave!;Are you sure you want to go to work in THAT?;All of our wares have a whole TWO pockets!" + icon_state = "clothing" + icon_vend = "clothing-purchase" + vend_delay = 16 + products = list(/obj/item/clothing/under/bathrobe = 5, + /obj/item/clothing/under/dress/black_corset = 5, + /obj/item/clothing/under/blazer = 5, + /obj/item/clothing/under/blazer/skirt = 5, + /obj/item/clothing/under/cheongsam = 5, + /obj/item/clothing/under/cheongsam/red = 5, + /obj/item/clothing/under/cheongsam/blue = 5, + /obj/item/clothing/under/cheongsam/black = 5, + /obj/item/clothing/under/cheongsam/darkred = 5, + /obj/item/clothing/under/cheongsam/green = 5, + /obj/item/clothing/under/cheongsam/purple = 5, + /obj/item/clothing/under/cheongsam/darkblue = 5, + /obj/item/clothing/under/croptop = 5, + /obj/item/clothing/under/croptop/red = 5, + /obj/item/clothing/under/croptop/grey = 5, + /obj/item/clothing/under/cuttop = 5, + /obj/item/clothing/under/cuttop/red = 5, + /obj/item/clothing/under/suit_jacket/female/skirt = 5, + /obj/item/clothing/under/dress/dress_fire = 5, + /obj/item/clothing/under/dress/flamenco = 5, + /obj/item/clothing/under/dress/flower_dress = 5, + /obj/item/clothing/under/fluff/gnshorts = 5, + /obj/item/clothing/under/color = 5, + /obj/item/clothing/under/color/aqua = 5, + /obj/item/clothing/under/color/black = 5, + /obj/item/clothing/under/color/blackf = 5, + /obj/item/clothing/under/color/blackjumpskirt = 5, + /obj/item/clothing/under/color/blue = 5, + /obj/item/clothing/under/color/brown = 5, + /obj/item/clothing/under/color/darkblue = 5, + /obj/item/clothing/under/color/darkred = 5, + /obj/item/clothing/under/color/green = 5, + /obj/item/clothing/under/color/grey = 5, + /obj/item/clothing/under/color/lightblue = 5, + /obj/item/clothing/under/color/lightbrown = 5, + /obj/item/clothing/under/color/lightgreen = 5, + /obj/item/clothing/under/color/lightpurple = 5, + /obj/item/clothing/under/color/lightred = 5, + /obj/item/clothing/under/color/orange = 5, + /obj/item/clothing/under/color/pink = 5, + /obj/item/clothing/under/color/prison = 5, + /obj/item/clothing/under/color/ranger = 5, + /obj/item/clothing/under/color/red = 5, + /obj/item/clothing/under/color/white = 5, + /obj/item/clothing/under/color/yellow = 5, + /obj/item/clothing/under/color/yellowgreen = 5, + /obj/item/clothing/under/aether = 5, + /obj/item/clothing/under/focal = 5, + /obj/item/clothing/under/hephaestus = 5, + /obj/item/clothing/under/wardt = 5, + /obj/item/clothing/under/kilt = 5, + /obj/item/clothing/under/fluff/latexmaid = 5, + /obj/item/clothing/under/dress/lilacdress = 5, + /obj/item/clothing/under/dress/white2 = 5, + /obj/item/clothing/under/dress/white4 = 5, + /obj/item/clothing/under/dress/maid = 5, + /obj/item/clothing/under/dress/maid/sexy = 5, + /obj/item/clothing/under/dress/maid/janitor = 5, + /obj/item/clothing/under/moderncoat = 5, + /obj/item/clothing/under/permit = 5, + /obj/item/clothing/under/oldwoman = 5, + /obj/item/clothing/under/frontier = 5, + /obj/item/clothing/under/mbill = 5, + /obj/item/clothing/under/pants/baggy/ = 5, + /obj/item/clothing/under/pants/baggy/classicjeans = 5, + /obj/item/clothing/under/pants/baggy/mustangjeans = 5, + /obj/item/clothing/under/pants/baggy/blackjeans = 5, + /obj/item/clothing/under/pants/baggy/greyjeans = 5, + /obj/item/clothing/under/pants/baggy/youngfolksjeans = 5, + /obj/item/clothing/under/pants/baggy/white = 5, + /obj/item/clothing/under/pants/baggy/red = 5, + /obj/item/clothing/under/pants/baggy/black = 5, + /obj/item/clothing/under/pants/baggy/tan = 5, + /obj/item/clothing/under/pants/baggy/track = 5, + /obj/item/clothing/under/pants/baggy/khaki = 5, + /obj/item/clothing/under/pants/baggy/camo = 5, + /obj/item/clothing/under/pants/utility/ = 5, + /obj/item/clothing/under/pants/utility/orange = 5, + /obj/item/clothing/under/pants/utility/blue = 5, + /obj/item/clothing/under/pants/utility/white = 5, + /obj/item/clothing/under/pants/utility/red = 5, + /obj/item/clothing/under/pants/chaps = 5, + /obj/item/clothing/under/pants/chaps/black = 5, + /obj/item/clothing/under/pants/track = 5, + /obj/item/clothing/under/pants/track/red = 5, + /obj/item/clothing/under/pants/track/white = 5, + /obj/item/clothing/under/pants/track/green = 5, + /obj/item/clothing/under/pants/track/blue = 5, + /obj/item/clothing/under/pants/yogapants = 5, + /obj/item/clothing/under/ascetic = 5, + /obj/item/clothing/under/dress/white3 = 5, + /obj/item/clothing/under/skirt/pleated = 5, + /obj/item/clothing/under/dress/darkred = 5, + /obj/item/clothing/under/dress/redeveninggown = 5, + /obj/item/clothing/under/dress/red_swept_dress = 5, + /obj/item/clothing/under/dress/sailordress = 5, + /obj/item/clothing/under/dress/sari = 5, + /obj/item/clothing/under/dress/sari/green = 5, + /obj/item/clothing/under/shorts/red = 5, + /obj/item/clothing/under/shorts/green = 5, + /obj/item/clothing/under/shorts/blue = 5, + /obj/item/clothing/under/shorts/black = 5, + /obj/item/clothing/under/shorts/grey = 5, + /obj/item/clothing/under/shorts/white = 5, + /obj/item/clothing/under/shorts/jeans = 5, + /obj/item/clothing/under/shorts/jeans/ = 5, + /obj/item/clothing/under/shorts/jeans/classic = 5, + /obj/item/clothing/under/shorts/jeans/mustang = 5, + /obj/item/clothing/under/shorts/jeans/youngfolks = 5, + /obj/item/clothing/under/shorts/jeans/black = 5, + /obj/item/clothing/under/shorts/jeans/grey = 5, + /obj/item/clothing/under/shorts/khaki/ = 5, + /obj/item/clothing/under/skirt/loincloth = 5, + /obj/item/clothing/under/skirt/khaki = 5, + /obj/item/clothing/under/skirt/blue = 5, + /obj/item/clothing/under/skirt/red = 5, + /obj/item/clothing/under/skirt/denim = 5, + /obj/item/clothing/under/skirt/pleated = 5, + /obj/item/clothing/under/skirt/outfit/plaid_blue = 5, + /obj/item/clothing/under/skirt/outfit/plaid_red = 5, + /obj/item/clothing/under/skirt/outfit/plaid_purple = 5, + /obj/item/clothing/under/overalls/sleek = 5, + /obj/item/clothing/under/sl_suit = 5, + /obj/item/clothing/under/gentlesuit = 5, + /obj/item/clothing/under/gentlesuit/skirt = 5, + /obj/item/clothing/under/suit_jacket = 5, + /obj/item/clothing/under/suit_jacket/really_black/skirt = 5, + /obj/item/clothing/under/suit_jacket/really_black = 5, + /obj/item/clothing/under/suit_jacket/female/skirt = 5, + /obj/item/clothing/under/suit_jacket/female/ = 5, + /obj/item/clothing/under/suit_jacket/red = 5, + /obj/item/clothing/under/suit_jacket/red/skirt = 5, + /obj/item/clothing/under/suit_jacket/charcoal = 5, + /obj/item/clothing/under/suit_jacket/charcoal/skirt = 5, + /obj/item/clothing/under/suit_jacket/navy = 5, + /obj/item/clothing/under/suit_jacket/navy/skirt = 5, + /obj/item/clothing/under/suit_jacket/burgundy = 5, + /obj/item/clothing/under/suit_jacket/burgundy/skirt = 5, + /obj/item/clothing/under/suit_jacket/checkered = 5, + /obj/item/clothing/under/suit_jacket/checkered/skirt = 5, + /obj/item/clothing/under/suit_jacket/tan = 5, + /obj/item/clothing/under/suit_jacket/tan/skirt = 5, + /obj/item/clothing/under/scratch = 5, + /obj/item/clothing/under/scratch/skirt = 5, + /obj/item/clothing/under/sundress = 5, + /obj/item/clothing/under/sundress_white = 5, + /obj/item/clothing/under/rank/psych/turtleneck/sweater = 5, + /obj/item/weapon/storage/box/fluff/swimsuit = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/blue = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/purple = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/green = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/red = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/white = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/earth = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/science = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/security = 5, + /obj/item/weapon/storage/box/fluff/swimsuit/medical = 5, + /obj/item/clothing/under/utility = 5, + /obj/item/clothing/under/utility/grey = 5, + /obj/item/clothing/under/utility/blue = 5, + /obj/item/clothing/under/fluff/v_nanovest = 5, + /obj/item/clothing/under/dress/westernbustle = 5, + /obj/item/clothing/under/wedding/bride_white = 5, + /obj/item/weapon/storage/backpack/ = 5, + /obj/item/weapon/storage/backpack/messenger = 5, + /obj/item/weapon/storage/backpack/satchel = 5) + prices = list(/obj/item/clothing/under/bathrobe = 100, + /obj/item/clothing/under/dress/black_corset = 100, + /obj/item/clothing/under/blazer = 100, + /obj/item/clothing/under/blazer/skirt = 100, + /obj/item/clothing/under/cheongsam = 100, + /obj/item/clothing/under/cheongsam/red = 100, + /obj/item/clothing/under/cheongsam/blue = 100, + /obj/item/clothing/under/cheongsam/black = 100, + /obj/item/clothing/under/cheongsam/darkred = 100, + /obj/item/clothing/under/cheongsam/green = 100, + /obj/item/clothing/under/cheongsam/purple = 100, + /obj/item/clothing/under/cheongsam/darkblue = 100, + /obj/item/clothing/under/croptop = 100, + /obj/item/clothing/under/croptop/red = 100, + /obj/item/clothing/under/croptop/grey = 100, + /obj/item/clothing/under/cuttop = 100, + /obj/item/clothing/under/cuttop/red = 100, + /obj/item/clothing/under/suit_jacket/female/skirt = 100, + /obj/item/clothing/under/dress/dress_fire = 100, + /obj/item/clothing/under/dress/flamenco = 100, + /obj/item/clothing/under/dress/flower_dress = 100, + /obj/item/clothing/under/fluff/gnshorts = 100, + /obj/item/clothing/under/color = 100, + /obj/item/clothing/under/color/aqua = 100, + /obj/item/clothing/under/color/black = 100, + /obj/item/clothing/under/color/blackf = 100, + /obj/item/clothing/under/color/blackjumpskirt = 100, + /obj/item/clothing/under/color/blue = 100, + /obj/item/clothing/under/color/brown = 100, + /obj/item/clothing/under/color/darkblue = 100, + /obj/item/clothing/under/color/darkred = 100, + /obj/item/clothing/under/color/green = 100, + /obj/item/clothing/under/color/grey = 100, + /obj/item/clothing/under/color/lightblue = 100, + /obj/item/clothing/under/color/lightbrown = 100, + /obj/item/clothing/under/color/lightgreen = 100, + /obj/item/clothing/under/color/lightpurple = 100, + /obj/item/clothing/under/color/lightred = 100, + /obj/item/clothing/under/color/orange = 100, + /obj/item/clothing/under/color/pink = 100, + /obj/item/clothing/under/color/prison = 100, + /obj/item/clothing/under/color/ranger = 100, + /obj/item/clothing/under/color/red = 100, + /obj/item/clothing/under/color/white = 100, + /obj/item/clothing/under/color/yellow = 100, + /obj/item/clothing/under/color/yellowgreen = 100, + /obj/item/clothing/under/aether = 100, + /obj/item/clothing/under/focal = 100, + /obj/item/clothing/under/hephaestus = 100, + /obj/item/clothing/under/wardt = 100, + /obj/item/clothing/under/kilt = 100, + /obj/item/clothing/under/fluff/latexmaid = 100, + /obj/item/clothing/under/dress/lilacdress = 100, + /obj/item/clothing/under/dress/white2 = 100, + /obj/item/clothing/under/dress/white4 = 100, + /obj/item/clothing/under/dress/maid = 100, + /obj/item/clothing/under/dress/maid/sexy = 100, + /obj/item/clothing/under/dress/maid/janitor = 100, + /obj/item/clothing/under/moderncoat = 100, + /obj/item/clothing/under/permit = 100, + /obj/item/clothing/under/oldwoman = 100, + /obj/item/clothing/under/frontier = 100, + /obj/item/clothing/under/mbill = 100, + /obj/item/clothing/under/pants/baggy/ = 100, + /obj/item/clothing/under/pants/baggy/classicjeans = 100, + /obj/item/clothing/under/pants/baggy/mustangjeans = 100, + /obj/item/clothing/under/pants/baggy/blackjeans = 100, + /obj/item/clothing/under/pants/baggy/greyjeans = 100, + /obj/item/clothing/under/pants/baggy/youngfolksjeans = 100, + /obj/item/clothing/under/pants/baggy/white = 100, + /obj/item/clothing/under/pants/baggy/red = 100, + /obj/item/clothing/under/pants/baggy/black = 100, + /obj/item/clothing/under/pants/baggy/tan = 100, + /obj/item/clothing/under/pants/baggy/track = 100, + /obj/item/clothing/under/pants/baggy/khaki = 100, + /obj/item/clothing/under/pants/baggy/camo = 100, + /obj/item/clothing/under/pants/utility/ = 100, + /obj/item/clothing/under/pants/utility/orange = 100, + /obj/item/clothing/under/pants/utility/blue = 100, + /obj/item/clothing/under/pants/utility/white = 100, + /obj/item/clothing/under/pants/utility/red = 100, + /obj/item/clothing/under/pants/chaps = 100, + /obj/item/clothing/under/pants/chaps/black = 100, + /obj/item/clothing/under/pants/track = 100, + /obj/item/clothing/under/pants/track/red = 100, + /obj/item/clothing/under/pants/track/white = 100, + /obj/item/clothing/under/pants/track/green = 100, + /obj/item/clothing/under/pants/track/blue = 100, + /obj/item/clothing/under/pants/yogapants = 100, + /obj/item/clothing/under/ascetic = 100, + /obj/item/clothing/under/dress/white3 = 100, + /obj/item/clothing/under/skirt/pleated = 100, + /obj/item/clothing/under/dress/darkred = 100, + /obj/item/clothing/under/dress/redeveninggown = 100, + /obj/item/clothing/under/dress/red_swept_dress = 100, + /obj/item/clothing/under/dress/sailordress = 100, + /obj/item/clothing/under/dress/sari = 100, + /obj/item/clothing/under/dress/sari/green = 100, + /obj/item/clothing/under/shorts/red = 100, + /obj/item/clothing/under/shorts/green = 100, + /obj/item/clothing/under/shorts/blue = 100, + /obj/item/clothing/under/shorts/black = 100, + /obj/item/clothing/under/shorts/grey = 100, + /obj/item/clothing/under/shorts/white = 100, + /obj/item/clothing/under/shorts/jeans = 100, + /obj/item/clothing/under/shorts/jeans/ = 100, + /obj/item/clothing/under/shorts/jeans/classic = 100, + /obj/item/clothing/under/shorts/jeans/mustang = 100, + /obj/item/clothing/under/shorts/jeans/youngfolks = 100, + /obj/item/clothing/under/shorts/jeans/black = 100, + /obj/item/clothing/under/shorts/jeans/grey = 100, + /obj/item/clothing/under/shorts/khaki/ = 100, + /obj/item/clothing/under/skirt/loincloth = 100, + /obj/item/clothing/under/skirt/khaki = 100, + /obj/item/clothing/under/skirt/blue = 100, + /obj/item/clothing/under/skirt/red = 100, + /obj/item/clothing/under/skirt/denim = 100, + /obj/item/clothing/under/skirt/pleated = 100, + /obj/item/clothing/under/skirt/outfit/plaid_blue = 100, + /obj/item/clothing/under/skirt/outfit/plaid_red = 100, + /obj/item/clothing/under/skirt/outfit/plaid_purple = 100, + /obj/item/clothing/under/overalls/sleek = 100, + /obj/item/clothing/under/sl_suit = 100, + /obj/item/clothing/under/gentlesuit = 100, + /obj/item/clothing/under/gentlesuit/skirt = 100, + /obj/item/clothing/under/suit_jacket = 100, + /obj/item/clothing/under/suit_jacket/really_black/skirt = 100, + /obj/item/clothing/under/suit_jacket/really_black = 100, + /obj/item/clothing/under/suit_jacket/female/skirt = 100, + /obj/item/clothing/under/suit_jacket/female/ = 100, + /obj/item/clothing/under/suit_jacket/red = 100, + /obj/item/clothing/under/suit_jacket/red/skirt = 100, + /obj/item/clothing/under/suit_jacket/charcoal = 100, + /obj/item/clothing/under/suit_jacket/charcoal/skirt = 100, + /obj/item/clothing/under/suit_jacket/navy = 100, + /obj/item/clothing/under/suit_jacket/navy/skirt = 100, + /obj/item/clothing/under/suit_jacket/burgundy = 100, + /obj/item/clothing/under/suit_jacket/burgundy/skirt = 100, + /obj/item/clothing/under/suit_jacket/checkered = 100, + /obj/item/clothing/under/suit_jacket/checkered/skirt = 100, + /obj/item/clothing/under/suit_jacket/tan = 100, + /obj/item/clothing/under/suit_jacket/tan/skirt = 100, + /obj/item/clothing/under/scratch = 100, + /obj/item/clothing/under/scratch/skirt = 100, + /obj/item/clothing/under/sundress = 100, + /obj/item/clothing/under/sundress_white = 100, + /obj/item/clothing/under/rank/psych/turtleneck/sweater = 100, + /obj/item/weapon/storage/box/fluff/swimsuit = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/blue = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/purple = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/green = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/red = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/white = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/earth = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/engineering = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/science = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/security = 100, + /obj/item/weapon/storage/box/fluff/swimsuit/medical = 100, + /obj/item/clothing/under/utility = 100, + /obj/item/clothing/under/utility/grey = 100, + /obj/item/clothing/under/utility/blue = 100, + /obj/item/clothing/under/fluff/v_nanovest = 100, + /obj/item/clothing/under/dress/westernbustle = 100, + /obj/item/clothing/under/wedding/bride_white = 100, + /obj/item/weapon/storage/backpack/ = 100, + /obj/item/weapon/storage/backpack/messenger = 100, + /obj/item/weapon/storage/backpack/satchel = 100) + premium = list(/obj/item/clothing/under/color/rainbow = 1) + contraband = list(/obj/item/clothing/under/rank/clown = 1) +/obj/machinery/vending/loadout/gadget + name = "Chips Co." + desc = "A special vendor for devices and gadgets." + product_ads = "You can't RESIST our great deals!;Feeling disconnected? We have a gadget for you!;You know you have the capacity to buy our capacitors!;FILL THAT HOLE IN YOUR HEART WITH OUR PLASTIC DISTRACTIONS!!!;Devices for everyone! Chips Co.!;ROBUST INVENTORY, GREAT PRICES! ;DON'T FORGET THE oyPAD 13s PRO! ON SALE NOW, ONLY ONE THOUSAND THALERS!" + icon_state = "gadgets" + icon_vend = "gadgets-purchase" + vend_delay = 11 + products = list(/obj/item/clothing/suit/circuitry = 1, + /obj/item/clothing/head/circuitry = 1, + /obj/item/clothing/shoes/circuitry = 1, + /obj/item/clothing/gloves/circuitry = 1, + /obj/item/clothing/under/circuitry = 1, + /obj/item/clothing/glasses/circuitry = 1, + /obj/item/clothing/ears/circuitry = 1, + /obj/item/device/text_to_speech = 5, + /obj/item/device/paicard = 5, + /obj/item/device/communicator = 10, + /obj/item/device/communicator/watch = 10, + /obj/item/device/radio = 10, + /obj/item/device/camera = 5, + /obj/item/device/taperecorder = 5, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 5, + /obj/item/device/pda = 10, + /obj/item/device/radio/headset = 10, + /obj/item/device/flashlight = 5, + /obj/item/device/laser_pointer = 3, + /obj/item/clothing/glasses/omnihud = 10) + prices = list(/obj/item/clothing/suit/circuitry = 100, + /obj/item/clothing/head/circuitry = 100, + /obj/item/clothing/shoes/circuitry = 100, + /obj/item/clothing/gloves/circuitry = 100, + /obj/item/clothing/under/circuitry = 100, + /obj/item/clothing/glasses/circuitry = 100, + /obj/item/clothing/ears/circuitry = 100, + /obj/item/device/text_to_speech = 300, + /obj/item/device/paicard = 100, + /obj/item/device/communicator = 100, + /obj/item/device/communicator/watch = 100, + /obj/item/device/radio = 100, + /obj/item/device/camera = 100, + /obj/item/device/taperecorder = 100, + /obj/item/modular_computer/tablet/preset/custom_loadout/cheap = 1000, + /obj/item/device/pda = 50, + /obj/item/device/radio/headset = 50, + /obj/item/device/flashlight = 100, + /obj/item/device/laser_pointer = 200, + /obj/item/clothing/glasses/omnihud = 100) + premium = list(/obj/item/device/perfect_tele/one_beacon = 1) + contraband = list(/obj/item/weapon/disk/nifsoft/compliance = 1) +/obj/machinery/vending/loadout/loadout_misc + name = "Bits and Bobs" + desc = "A special vendor for things and also stuff!" + product_ads = "You never know when you might need an umbrella.;Hey kid... want some cardemon cards?;Miscellaneous for your miscellaneous heart.;Who's bob? Wouldn't you like to know.;I'm sorry there's no grappling hooks in our umbrellas.;We sell things AND stuff." + icon_state = "loadout_misc" + products = list(/obj/item/weapon/cane = 5, + /obj/item/weapon/pack/cardemon = 25, + /obj/item/weapon/deck/holder = 5, + /obj/item/weapon/deck/cah = 5, + /obj/item/weapon/deck/cah/black = 5, + /obj/item/weapon/deck/tarot = 5, + /obj/item/weapon/deck/cards = 5, + /obj/item/weapon/pack/spaceball = 10, + /obj/item/weapon/storage/pill_bottle/dice = 5, + /obj/item/weapon/storage/pill_bottle/dice_nerd = 5, + /obj/item/weapon/melee/umbrella/random = 10) + prices = list(/obj/item/weapon/cane = 100, + /obj/item/weapon/pack/cardemon = 100, + /obj/item/weapon/deck/holder = 100, + /obj/item/weapon/deck/cah = 100, + /obj/item/weapon/deck/cah/black = 100, + /obj/item/weapon/deck/tarot = 100, + /obj/item/weapon/deck/cards = 100, + /obj/item/weapon/pack/spaceball = 100, + /obj/item/weapon/storage/pill_bottle/dice = 100, + /obj/item/weapon/storage/pill_bottle/dice_nerd = 100, + /obj/item/weapon/melee/umbrella/random = 100) + premium = list(/obj/item/toy/bosunwhistle = 1) + contraband = list(/obj/item/toy/katana = 1) +/obj/machinery/vending/loadout/overwear + name = "Big D's Best" + desc = "A special vendor using compressed matter cartridges to store large amounts of overwear!" + product_ads = "Dress your best! It's what big D would want.;Overwear for all occasions!;Big D has what you need if what you need is some form of jacket!;Need a new hoodie? Bid D has you covered.;Big D says you need a new suit!;Big D smiles when he sees you in one of his coats!" + icon_state = "suit" + icon_vend = "suit-purchase" + vend_delay = 16 + products = list(/obj/item/clothing/suit/storage/apron = 5, + /obj/item/clothing/suit/storage/flannel/aqua = 5, + /obj/item/clothing/suit/storage/toggle/bomber = 5, + /obj/item/clothing/suit/storage/bomber/alt = 5, + /obj/item/clothing/suit/storage/flannel/brown = 5, + /obj/item/clothing/suit/storage/toggle/cardigan = 5, + /obj/item/clothing/accessory/poncho/roles/cloak/custom = 5, + /obj/item/clothing/suit/storage/duster = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 5, + /obj/item/clothing/suit/storage/fluff/gntop = 5, + /obj/item/clothing/suit/greatcoat = 5, + /obj/item/clothing/suit/storage/flannel = 5, + /obj/item/clothing/suit/storage/greyjacket = 5, + /obj/item/clothing/suit/storage/hazardvest = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/black = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/red = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/blue = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/green = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/orange = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/cti = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/mu = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/nt = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/smw = 5, + /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 5, + /obj/item/clothing/suit/storage/fluff/jacket/field = 5, + /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 5, + /obj/item/clothing/suit/storage/fluff/jacket/air_force = 5, + /obj/item/clothing/suit/storage/fluff/jacket/navy = 5, + /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 5, + /obj/item/clothing/suit/kamishimo = 5, + /obj/item/clothing/suit/kimono = 5, + /obj/item/clothing/suit/storage/toggle/labcoat = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/blue = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/green = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/orange = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/pink = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/red = 5, + /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 5, + /obj/item/clothing/suit/leathercoat = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket = 5, + /obj/item/clothing/suit/storage/leather_jacket_alt = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 5, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 5, + /obj/item/clothing/suit/storage/miljacket = 5, + /obj/item/clothing/suit/storage/miljacket/alt = 5, + /obj/item/clothing/suit/storage/miljacket/green = 5, + /obj/item/clothing/suit/storage/apron/overalls = 5, + /obj/item/clothing/suit/storage/toggle/peacoat = 5, + /obj/item/clothing/accessory/poncho = 5, + /obj/item/clothing/accessory/poncho/green = 5, + /obj/item/clothing/accessory/poncho/red = 5, + /obj/item/clothing/accessory/poncho/purple = 5, + /obj/item/clothing/accessory/poncho/blue = 5, + /obj/item/clothing/suit/jacket/puffer = 5, + /obj/item/clothing/suit/jacket/puffer/vest = 5, + /obj/item/clothing/suit/storage/flannel/red = 5, + /obj/item/clothing/suit/unathi/robe = 5, + /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit = 5, + /obj/item/clothing/suit/storage/toggle/internalaffairs = 5, + /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 5, + /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 5, + /obj/item/clothing/suit/suspenders = 5, + /obj/item/clothing/suit/storage/toggle/track = 5, + /obj/item/clothing/suit/storage/toggle/track/blue = 5, + /obj/item/clothing/suit/storage/toggle/track/green = 5, + /obj/item/clothing/suit/storage/toggle/track/red = 5, + /obj/item/clothing/suit/storage/toggle/track/white = 5, + /obj/item/clothing/suit/storage/trench = 5, + /obj/item/clothing/suit/storage/trench/grey = 5, + /obj/item/clothing/suit/varsity = 5, + /obj/item/clothing/suit/varsity/red = 5, + /obj/item/clothing/suit/varsity/purple = 5, + /obj/item/clothing/suit/varsity/green = 5, + /obj/item/clothing/suit/varsity/blue = 5, + /obj/item/clothing/suit/varsity/brown = 5, + /obj/item/clothing/suit/storage/hooded/wintercoat = 5, + /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 5) + prices = list(/obj/item/clothing/suit/storage/apron = 200, + /obj/item/clothing/suit/storage/flannel/aqua = 200, + /obj/item/clothing/suit/storage/toggle/bomber = 200, + /obj/item/clothing/suit/storage/bomber/alt = 200, + /obj/item/clothing/suit/storage/flannel/brown = 200, + /obj/item/clothing/suit/storage/toggle/cardigan = 200, + /obj/item/clothing/accessory/poncho/roles/cloak/custom = 200, + /obj/item/clothing/suit/storage/duster = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/denim_jacket/nanotrasen/sleeveless = 200, + /obj/item/clothing/suit/storage/fluff/gntop = 200, + /obj/item/clothing/suit/greatcoat = 200, + /obj/item/clothing/suit/storage/flannel = 200, + /obj/item/clothing/suit/storage/greyjacket = 200, + /obj/item/clothing/suit/storage/hazardvest = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/black = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/red = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/blue = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/green = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/orange = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/yellow = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/cti = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/mu = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/nt = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/smw = 200, + /obj/item/clothing/suit/storage/toggle/hoodie/nrti = 200, + /obj/item/clothing/suit/storage/fluff/jacket/field = 200, + /obj/item/clothing/suit/storage/fluff/jacket/air_cavalry = 200, + /obj/item/clothing/suit/storage/fluff/jacket/air_force = 200, + /obj/item/clothing/suit/storage/fluff/jacket/navy = 200, + /obj/item/clothing/suit/storage/fluff/jacket/special_forces = 200, + /obj/item/clothing/suit/kamishimo = 200, + /obj/item/clothing/suit/kimono = 200, + /obj/item/clothing/suit/storage/toggle/labcoat = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/blue = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/blue_edge = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/green = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/orange = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/pink = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/red = 200, + /obj/item/clothing/suit/storage/toggle/labcoat/yellow = 200, + /obj/item/clothing/suit/leathercoat = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket = 200, + /obj/item/clothing/suit/storage/leather_jacket_alt = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/leather_jacket/nanotrasen/sleeveless = 200, + /obj/item/clothing/suit/storage/toggle/brown_jacket/nanotrasen/sleeveless = 200, + /obj/item/clothing/suit/storage/miljacket = 200, + /obj/item/clothing/suit/storage/miljacket/alt = 200, + /obj/item/clothing/suit/storage/miljacket/green = 200, + /obj/item/clothing/suit/storage/apron/overalls = 100, + /obj/item/clothing/suit/storage/toggle/peacoat = 200, + /obj/item/clothing/accessory/poncho = 100, + /obj/item/clothing/accessory/poncho/green = 100, + /obj/item/clothing/accessory/poncho/red = 100, + /obj/item/clothing/accessory/poncho/purple = 100, + /obj/item/clothing/accessory/poncho/blue = 100, + /obj/item/clothing/suit/jacket/puffer = 200, + /obj/item/clothing/suit/jacket/puffer/vest = 200, + /obj/item/clothing/suit/storage/flannel/red = 200, + /obj/item/clothing/suit/unathi/robe = 100, + /obj/item/clothing/suit/storage/hooded/wintercoat/snowsuit = 200, + /obj/item/clothing/suit/storage/toggle/internalaffairs = 200, + /obj/item/clothing/suit/storage/toggle/lawyer/bluejacket = 200, + /obj/item/clothing/suit/storage/toggle/lawyer/purpjacket = 200, + /obj/item/clothing/suit/suspenders = 200, + /obj/item/clothing/suit/storage/toggle/track = 200, + /obj/item/clothing/suit/storage/toggle/track/blue = 200, + /obj/item/clothing/suit/storage/toggle/track/green = 200, + /obj/item/clothing/suit/storage/toggle/track/red = 200, + /obj/item/clothing/suit/storage/toggle/track/white = 200, + /obj/item/clothing/suit/storage/trench = 200, + /obj/item/clothing/suit/storage/trench/grey = 200, + /obj/item/clothing/suit/varsity = 200, + /obj/item/clothing/suit/varsity/red = 200, + /obj/item/clothing/suit/varsity/purple = 200, + /obj/item/clothing/suit/varsity/green = 200, + /obj/item/clothing/suit/varsity/blue = 200, + /obj/item/clothing/suit/varsity/brown = 200, + /obj/item/clothing/suit/storage/hooded/wintercoat = 200, + /obj/item/clothing/suit/storage/seromi/cloak/standard/white_grey = 200) + premium = list(/obj/item/clothing/suit/imperium_monk = 3) + contraband = list(/obj/item/toy/katana = 1) +/obj/machinery/vending/loadout/costume + name = "Thespian's Delight" + desc = "Sometimes nerds need costumes!" + product_ads = "Don't let your art be stifled!;Remember, practice makes perfect!;Break a leg!;Don't make me get the cane!;Thespian's Delight entering stage right!;Costumes for your acting needs!" + icon_state = "Theater_b" + products = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 3, + /obj/item/clothing/suit/storage/hooded/carp_costume = 3, + /obj/item/clothing/suit/chickensuit = 3, + /obj/item/clothing/head/chicken = 3, + /obj/item/clothing/head/helmet/gladiator = 3, + /obj/item/clothing/under/gladiator = 3, + /obj/item/clothing/suit/storage/toggle/labcoat/mad = 3, + /obj/item/clothing/under/gimmick/rank/captain/suit = 3, + /obj/item/clothing/glasses/gglasses = 3, + /obj/item/clothing/head/flatcap = 3, + /obj/item/clothing/shoes/boots/jackboots = 3, + /obj/item/clothing/under/schoolgirl = 3, + /obj/item/clothing/head/kitty = 3, + /obj/item/clothing/glasses/sunglasses/blindfold = 3, + /obj/item/clothing/head/beret = 3, + /obj/item/clothing/under/skirt = 3, + /obj/item/clothing/under/suit_jacket = 3, + /obj/item/clothing/head/that = 3, + /obj/item/clothing/accessory/wcoat = 3, + /obj/item/clothing/under/scratch = 3, + /obj/item/clothing/shoes/white = 3, + /obj/item/clothing/gloves/white = 3, + /obj/item/clothing/under/kilt = 3, + /obj/item/clothing/glasses/monocle = 3, + /obj/item/clothing/under/sl_suit = 3, + /obj/item/clothing/mask/fakemoustache = 3, + /obj/item/weapon/cane = 3, + /obj/item/clothing/head/bowler = 3, + /obj/item/clothing/head/plaguedoctorhat = 3, + /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 3, + /obj/item/clothing/mask/gas/plaguedoctor/fluff = 3, + /obj/item/clothing/under/owl = 3, + /obj/item/clothing/mask/gas/owl_mask = 3, + /obj/item/clothing/under/waiter = 3, + /obj/item/clothing/suit/storage/apron = 3, + /obj/item/clothing/under/pirate = 3, + /obj/item/clothing/head/pirate = 3, + /obj/item/clothing/suit/pirate = 3, + /obj/item/clothing/glasses/eyepatch = 3, + /obj/item/clothing/head/ushanka = 3, + /obj/item/clothing/under/soviet = 3, + /obj/item/clothing/suit/imperium_monk = 1, + /obj/item/clothing/suit/holidaypriest = 3, + /obj/item/clothing/head/witchwig = 3, + /obj/item/clothing/under/sundress = 3, + /obj/item/weapon/staff/broom = 3, + /obj/item/clothing/suit/wizrobe/fake = 3, + /obj/item/clothing/head/wizard/fake = 3, + /obj/item/weapon/staff = 3, + /obj/item/clothing/mask/gas/sexyclown = 3, + /obj/item/clothing/under/sexyclown = 3, + /obj/item/clothing/mask/gas/sexymime = 3, + /obj/item/clothing/under/sexymime = 3) + prices = list(/obj/item/clothing/suit/storage/hooded/carp_costume = 200, + /obj/item/clothing/suit/storage/hooded/carp_costume = 200, + /obj/item/clothing/suit/chickensuit = 200, + /obj/item/clothing/head/chicken = 200, + /obj/item/clothing/head/helmet/gladiator = 300, + /obj/item/clothing/under/gladiator = 500, + /obj/item/clothing/suit/storage/toggle/labcoat/mad = 200, + /obj/item/clothing/under/gimmick/rank/captain/suit = 200, + /obj/item/clothing/glasses/gglasses = 200, + /obj/item/clothing/head/flatcap = 200, + /obj/item/clothing/shoes/boots/jackboots = 200, + /obj/item/clothing/under/schoolgirl = 200, + /obj/item/clothing/head/kitty = 200, + /obj/item/clothing/glasses/sunglasses/blindfold = 200, + /obj/item/clothing/head/beret = 200, + /obj/item/clothing/under/skirt = 200, + /obj/item/clothing/under/suit_jacket = 200, + /obj/item/clothing/head/that = 200, + /obj/item/clothing/accessory/wcoat = 200, + /obj/item/clothing/under/scratch = 200, + /obj/item/clothing/shoes/white = 200, + /obj/item/clothing/gloves/white = 200, + /obj/item/clothing/under/kilt = 200, + /obj/item/clothing/glasses/monocle = 400, + /obj/item/clothing/under/sl_suit = 200, + /obj/item/clothing/mask/fakemoustache = 200, + /obj/item/weapon/cane = 300, + /obj/item/clothing/head/bowler = 200, + /obj/item/clothing/head/plaguedoctorhat = 300, + /obj/item/clothing/suit/bio_suit/plaguedoctorsuit = 300, + /obj/item/clothing/mask/gas/plaguedoctor/fluff = 600, + /obj/item/clothing/under/owl = 400, + /obj/item/clothing/mask/gas/owl_mask = 400, + /obj/item/clothing/under/waiter = 200, + /obj/item/clothing/suit/storage/apron = 200, + /obj/item/clothing/under/pirate = 300, + /obj/item/clothing/head/pirate = 400, + /obj/item/clothing/suit/pirate = 600, + /obj/item/clothing/glasses/eyepatch = 200, + /obj/item/clothing/head/ushanka = 200, + /obj/item/clothing/under/soviet = 200, + /obj/item/clothing/suit/imperium_monk = 2000, + /obj/item/clothing/suit/holidaypriest = 200, + /obj/item/clothing/head/witchwig = 200, + /obj/item/clothing/under/sundress = 200, + /obj/item/weapon/staff/broom = 400, + /obj/item/clothing/suit/wizrobe/fake = 200, + /obj/item/clothing/head/wizard/fake = 200, + /obj/item/weapon/staff = 400, + /obj/item/clothing/mask/gas/sexyclown = 600, + /obj/item/clothing/under/sexyclown = 200, + /obj/item/clothing/mask/gas/sexymime = 600, + /obj/item/clothing/under/sexymime = 200) + premium = list(/obj/item/clothing/suit/imperium_monk = 3) + contraband = list(/obj/item/clothing/head/syndicatefake = 1, + /obj/item/clothing/suit/syndicatefake = 1) diff --git a/code/game/machinery/vending_yw.dm b/code/game/machinery/vending_yw.dm index b5f4ab3142..63fdf7ba77 100644 --- a/code/game/machinery/vending_yw.dm +++ b/code/game/machinery/vending_yw.dm @@ -1,6 +1,11 @@ +/obj/machinery/vending/cigarette/New() + products += list(/obj/item/weapon/storage/fancy/cigarettes/yw/mauser = 5) + prices += list(/obj/item/weapon/storage/fancy/cigarettes/yw/mauser = 18) + ..() + /obj/machinery/vending/food/prison //Fluff vendor for the lewd houseboat. name = "Prison Nutriment Vendor" - desc = "Do you think Joan cooks? Of course not. Lazy squirrel!" + desc = "Delicious, probably not." icon_state = "boozeomat" icon_deny = "boozeomat-deny" products = list(/obj/item/weapon/tray = 6, diff --git a/code/game/magic/archived_book.dm b/code/game/magic/archived_book.dm index 2fc9412fcd..b2af5f3f73 100644 --- a/code/game/magic/archived_book.dm +++ b/code/game/magic/archived_book.dm @@ -37,7 +37,7 @@ datum/book_manager/proc/freeid() set desc = "Permamently deletes a book from the database." set category = "Admin" if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/isbn = input("ISBN number?", "Delete Book") as num | null diff --git a/code/game/mecha/combat/gorilla.dm b/code/game/mecha/combat/gorilla.dm index 3d29cc8f0f..13e8040e65 100644 --- a/code/game/mecha/combat/gorilla.dm +++ b/code/game/mecha/combat/gorilla.dm @@ -81,7 +81,7 @@ HONK Blaster and a pulse cannon protected by projectile armor and powered by a b max_universal_equip = 5 max_special_equip = 2 -/obj/mecha/combat/gorilla/New() +/obj/mecha/combat/gorilla/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/tesla_energy_relay(src) // This thing basically cannot function without an external power supply. ME.attach(src) diff --git a/code/game/mecha/combat/gygax.dm b/code/game/mecha/combat/gygax.dm index 19564acba9..d70c8f9e85 100644 --- a/code/game/mecha/combat/gygax.dm +++ b/code/game/mecha/combat/gygax.dm @@ -45,7 +45,7 @@ max_universal_equip = 1 max_special_equip = 2 -/obj/mecha/combat/gygax/dark/New() +/obj/mecha/combat/gygax/dark/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/ballistic/scattershot ME.attach(src) diff --git a/code/game/mecha/combat/marauder.dm b/code/game/mecha/combat/marauder.dm index b8aed16cef..9521147089 100644 --- a/code/game/mecha/combat/marauder.dm +++ b/code/game/mecha/combat/marauder.dm @@ -55,7 +55,7 @@ wreckage = /obj/effect/decal/mecha_wreckage/mauler mech_faction = MECH_FACTION_SYNDI -/obj/mecha/combat/marauder/New() +/obj/mecha/combat/marauder/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/pulse ME.attach(src) @@ -69,7 +69,7 @@ src.smoke_system.attach(src) return -/obj/mecha/combat/marauder/seraph/New() +/obj/mecha/combat/marauder/seraph/Initialize() ..()//Let it equip whatever is needed. var/obj/item/mecha_parts/mecha_equipment/ME if(equipment.len)//Now to remove it and equip anew. diff --git a/code/game/mecha/combat/phazon.dm b/code/game/mecha/combat/phazon.dm index b54368a75e..8f72de5f51 100644 --- a/code/game/mecha/combat/phazon.dm +++ b/code/game/mecha/combat/phazon.dm @@ -27,7 +27,7 @@ max_universal_equip = 3 max_special_equip = 4 -/obj/mecha/combat/phazon/equipped/New() +/obj/mecha/combat/phazon/equipped/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/tool/rcd ME.attach(src) @@ -133,7 +133,7 @@ ..() if(phasing) phasing = FALSE - radiation_repository.radiate(get_turf(src), 30) + SSradiation.radiate(get_turf(src), 30) log_append_to_last("WARNING: BLUESPACE DRIVE INSTABILITY DETECTED. DISABLING DRIVE.",1) visible_message("The [src.name] appears to flicker, before its silhouette stabilizes!") return diff --git a/code/game/mecha/equipment/tools/medical_tools.dm b/code/game/mecha/equipment/tools/medical_tools.dm index b61ada6d18..9f1e522733 100644 --- a/code/game/mecha/equipment/tools/medical_tools.dm +++ b/code/game/mecha/equipment/tools/medical_tools.dm @@ -573,4 +573,233 @@ for(var/reagent in S.processed_reagents) S.reagents.add_reagent(reagent,amount) S.chassis.use_power(energy_drain) - return 1 \ No newline at end of file + return 1 + +/obj/item/mecha_parts/mecha_equipment/crisis_drone + name = "crisis dronebay" + desc = "A small shoulder-mounted dronebay containing a rapid response drone capable of moderately stabilizing a patient near the exosuit." + icon_state = "mecha_dronebay" + origin_tech = list(TECH_PHORON = 3, TECH_MAGNET = 6, TECH_BIO = 5, TECH_DATA = 4) + range = MELEE|RANGED + equip_cooldown = 3 SECONDS + required_type = list(/obj/mecha/medical) + + var/droid_state = "med_droid" + + var/beam_state = "medbeam" + + var/enabled = FALSE + + var/icon/drone_overlay + + var/max_distance = 3 + + var/damcap = 60 + var/heal_dead = FALSE // Does this device heal the dead? + + var/brute_heal = 0.5 // Amount of bruteloss healed. + var/burn_heal = 0.5 // Amount of fireloss healed. + var/tox_heal = 0.5 // Amount of toxloss healed. + var/oxy_heal = 1 // Amount of oxyloss healed. + var/rad_heal = 0 // Amount of radiation healed. + var/clone_heal = 0 // Amount of cloneloss healed. + var/hal_heal = 0.2 // Amount of halloss healed. + var/bone_heal = 0 // Percent chance it will heal a broken bone. this does not mean 'make it not instantly re-break'. + + var/mob/living/Target = null + var/datum/beam/MyBeam = null + + equip_type = EQUIP_HULL + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/Initialize() + ..() + drone_overlay = new(src.icon, icon_state = droid_state) + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/Destroy() + STOP_PROCESSING(SSobj, src) + ..() + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/attach(obj/mecha/M as obj) + . = ..(M) + if(chassis) + START_PROCESSING(SSobj, src) + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/detach(atom/moveto=null) + shut_down() + . = ..(moveto) + STOP_PROCESSING(SSobj, src) + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/critfail() + . = ..() + STOP_PROCESSING(SSobj, src) + shut_down() + if(chassis && chassis.occupant) + to_chat(chassis.occupant, "\The [chassis] shudders as something jams!") + log_message("[src.name] has malfunctioned. Maintenance required.") + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/process() // Will continually try to find the nearest person above the threshold that is a valid target, and try to heal them. + if(chassis && enabled && chassis.has_charge(energy_drain) && (chassis.occupant || enable_special)) + var/mob/living/Targ = Target + var/TargDamage = 0 + + if(!valid_target(Target)) + Target = null + + if(Target) + TargDamage = (Targ.getOxyLoss() + Targ.getFireLoss() + Targ.getBruteLoss() + Targ.getToxLoss()) + + for(var/mob/living/Potential in viewers(max_distance, chassis)) + if(!valid_target(Potential)) + continue + + var/tallydamage = 0 + if(oxy_heal) + tallydamage += Potential.getOxyLoss() + if(burn_heal) + tallydamage += Potential.getFireLoss() + if(brute_heal) + tallydamage += Potential.getBruteLoss() + if(tox_heal) + tallydamage += Potential.getToxLoss() + if(hal_heal) + tallydamage += Potential.getHalLoss() + if(clone_heal) + tallydamage += Potential.getCloneLoss() + if(rad_heal) + tallydamage += Potential.radiation / 2 + + if(tallydamage > TargDamage) + Target = Potential + + if(MyBeam && !valid_target(MyBeam.target)) + QDEL_NULL(MyBeam) + + if(Target) + if(MyBeam && MyBeam.target != Target) + QDEL_NULL(MyBeam) + + if(valid_target(Target)) + if(!MyBeam) + MyBeam = chassis.Beam(Target,icon='icons/effects/beam.dmi',icon_state=beam_state,time=3 SECONDS,maxdistance=max_distance,beam_type = /obj/effect/ebeam,beam_sleep_time=2) + heal_target(Target) + + else + shut_down() + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/proc/valid_target(var/mob/living/L) + . = TRUE + + if(!L || !istype(L)) + return FALSE + + if(get_dist(L, src) > max_distance) + return FALSE + + if(!(L in viewers(max_distance, chassis))) + return FALSE + + if(!unique_patient_checks(L)) + return FALSE + + if(L.stat == DEAD && !heal_dead) + return FALSE + + var/tallydamage = 0 + if(oxy_heal) + tallydamage += L.getOxyLoss() + if(burn_heal) + tallydamage += L.getFireLoss() + if(brute_heal) + tallydamage += L.getBruteLoss() + if(tox_heal) + tallydamage += L.getToxLoss() + if(hal_heal) + tallydamage += L.getHalLoss() + if(clone_heal) + tallydamage += L.getCloneLoss() + if(rad_heal) + tallydamage += L.radiation / 2 + + if(tallydamage < damcap) + return FALSE + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/proc/shut_down() + if(enabled) + chassis.visible_message("\The [chassis]'s [src] buzzes as its drone returns to port.") + toggle_drone() + if(!isnull(Target)) + Target = null + if(MyBeam) + QDEL_NULL(MyBeam) + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/proc/unique_patient_checks(var/mob/living/L) // Anything special for subtypes. Does it only work on Robots? Fleshies? A species? + . = TRUE + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/proc/heal_target(var/mob/living/L) // We've done all our special checks, just get to fixing damage. + chassis.use_power(energy_drain) + if(istype(L)) + L.adjustBruteLoss(brute_heal * -1) + L.adjustFireLoss(burn_heal * -1) + L.adjustToxLoss(tox_heal * -1) + L.adjustOxyLoss(oxy_heal * -1) + L.adjustCloneLoss(clone_heal * -1) + L.adjustHalLoss(hal_heal * -1) + L.radiation = max(0, L.radiation - rad_heal) + + if(ishuman(L) && bone_heal) + var/mob/living/carbon/human/H = L + + if(H.bad_external_organs.len) + for(var/obj/item/organ/external/E in H.bad_external_organs) + if(prob(bone_heal)) + E.status &= ~ORGAN_BROKEN + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/proc/toggle_drone() + ..() + if(chassis) + enabled = !enabled + if(enabled) + set_ready_state(0) + log_message("Activated.") + chassis.overlays += drone_overlay + else + set_ready_state(1) + log_message("Deactivated.") + chassis.overlays -= drone_overlay + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/Topic(href, href_list) + ..() + if(href_list["toggle_drone"]) + toggle_drone() + return + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/get_equip_info() + if(!chassis) return + return "* [src.name] - [enabled?"Dea":"A"]ctivate" + +/obj/item/mecha_parts/mecha_equipment/crisis_drone/rad + name = "hazmat dronebay" + desc = "A small shoulder-mounted dronebay containing a rapid response drone capable of purging a patient near the exosuit of radiation damage." + icon_state = "mecha_dronebay_rad" + + droid_state = "rad_drone" + beam_state = "g_beam" + + tox_heal = 0.5 + rad_heal = 5 + clone_heal = 0.2 + hal_heal = 0.2 + +/obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer + name = "mounted humanoid scanner" + desc = "An exosuit-mounted scanning device." + icon_state = "mecha_analyzer_health" + origin_tech = list(TECH_MATERIAL = 5, TECH_MAGNET = 5, TECH_BIO = 5) + equip_cooldown = 5 SECONDS + energy_drain = 100 + range = MELEE + equip_type = EQUIP_UTILITY + ready_sound = 'sound/weapons/flash.ogg' + required_type = list(/obj/mecha/medical) + + tooltype = /obj/item/device/healthanalyzer/advanced diff --git a/code/game/mecha/equipment/tools/tools.dm b/code/game/mecha/equipment/tools/tools.dm index f821945144..73f7356ade 100644 --- a/code/game/mecha/equipment/tools/tools.dm +++ b/code/game/mecha/equipment/tools/tools.dm @@ -1201,7 +1201,7 @@ /datum/global_iterator/mecha_generator/nuclear/process(var/obj/item/mecha_parts/mecha_equipment/generator/nuclear/EG) if(..()) - radiation_repository.radiate(EG, (EG.rad_per_cycle * 3)) + SSradiation.radiate(EG, (EG.rad_per_cycle * 3)) return 1 diff --git a/code/game/mecha/medical/odysseus.dm b/code/game/mecha/medical/odysseus.dm index b3b9faa37d..1f90a45d61 100644 --- a/code/game/mecha/medical/odysseus.dm +++ b/code/game/mecha/medical/odysseus.dm @@ -123,7 +123,7 @@ C.images += holder */ -/obj/mecha/medical/odysseus/loaded/New() +/obj/mecha/medical/odysseus/loaded/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/tool/sleeper ME.attach(src) diff --git a/code/game/mecha/space/hoverpod.dm b/code/game/mecha/space/hoverpod.dm index 85fc59d564..31558458d9 100644 --- a/code/game/mecha/space/hoverpod.dm +++ b/code/game/mecha/space/hoverpod.dm @@ -105,7 +105,7 @@ max_universal_equip = 1 max_special_equip = 1 -/obj/mecha/working/hoverpod/combatpod/New() +/obj/mecha/working/hoverpod/combatpod/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/weapon/energy/laser ME.attach(src) @@ -116,7 +116,7 @@ /obj/mecha/working/hoverpod/shuttlepod desc = "Who knew a tiny ball could fit three people?" -/obj/mecha/working/hoverpod/shuttlepod/New() +/obj/mecha/working/hoverpod/shuttlepod/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/tool/passenger ME.attach(src) diff --git a/code/game/mecha/working/ripley.dm b/code/game/mecha/working/ripley.dm index c4813bb0dd..5dd88eb7e7 100644 --- a/code/game/mecha/working/ripley.dm +++ b/code/game/mecha/working/ripley.dm @@ -54,7 +54,7 @@ max_universal_equip = 1 max_special_equip = 1 -/obj/mecha/working/ripley/deathripley/New() +/obj/mecha/working/ripley/deathripley/Initialize() ..() var/obj/item/mecha_parts/mecha_equipment/ME = new /obj/item/mecha_parts/mecha_equipment/tool/safety_clamp ME.attach(src) @@ -64,7 +64,7 @@ desc = "An old, dusty mining ripley." name = "APLU \"Miner\"" -/obj/mecha/working/ripley/mining/New() +/obj/mecha/working/ripley/mining/Initialize() ..() //Attach drill if(prob(25)) //Possible diamond drill... Feeling lucky? diff --git a/code/game/objects/effects/alien/aliens.dm b/code/game/objects/effects/alien/aliens.dm index 0de8d332b7..bdcbe95e7f 100644 --- a/code/game/objects/effects/alien/aliens.dm +++ b/code/game/objects/effects/alien/aliens.dm @@ -152,6 +152,12 @@ * Weeds */ #define NODERANGE 3 +#define WEED_NORTH_EDGING "north" +#define WEED_SOUTH_EDGING "south" +#define WEED_EAST_EDGING "east" +#define WEED_WEST_EDGING "west" +#define WEED_NODE_GLOW "glow" +#define WEED_NODE_BASE "nodebase" /obj/effect/alien/weeds name = "weeds" @@ -164,6 +170,18 @@ layer = ABOVE_TURF_LAYER var/health = 15 var/obj/effect/alien/weeds/node/linked_node = null + var/static/list/weedImageCache + +/obj/effect/alien/weeds/Destroy() + var/turf/T = get_turf(src) + // To not mess up the overlay updates. + loc = null + + for (var/obj/effect/alien/weeds/W in range(1,T)) + W.updateWeedOverlays() + + linked_node = null + ..() /obj/effect/alien/weeds/node icon_state = "weednode" @@ -173,9 +191,22 @@ light_range = NODERANGE var/node_range = NODERANGE + var/set_color = null + /obj/effect/alien/weeds/node/New() ..(src.loc, src) +/obj/effect/alien/weeds/node/Initialize() + ..() + START_PROCESSING(SSobj, src) + + spawn(1 SECOND) + if(color) + set_color = color + +/obj/effect/alien/weeds/node/Destroy() + STOP_PROCESSING(SSobj, src) + ..() /obj/effect/alien/weeds/New(pos, node) ..() @@ -184,12 +215,45 @@ return linked_node = node if(icon_state == "weeds")icon_state = pick("weeds", "weeds1", "weeds2") - spawn(rand(150, 200)) - if(src) - Life() + + fullUpdateWeedOverlays() + +/obj/effect/alien/weeds/proc/updateWeedOverlays() + + overlays.Cut() + + if(!weedImageCache || !weedImageCache.len) + weedImageCache = list() +// weedImageCache.len = 4 + weedImageCache[WEED_NORTH_EDGING] = image('icons/mob/alien.dmi', "weeds_side_n", layer=2.11, pixel_y = -32) + weedImageCache[WEED_SOUTH_EDGING] = image('icons/mob/alien.dmi', "weeds_side_s", layer=2.11, pixel_y = 32) + weedImageCache[WEED_EAST_EDGING] = image('icons/mob/alien.dmi', "weeds_side_e", layer=2.11, pixel_x = -32) + weedImageCache[WEED_WEST_EDGING] = image('icons/mob/alien.dmi', "weeds_side_w", layer=2.11, pixel_x = 32) + + var/turf/N = get_step(src, NORTH) + var/turf/S = get_step(src, SOUTH) + var/turf/E = get_step(src, EAST) + var/turf/W = get_step(src, WEST) + if(!locate(/obj/effect/alien) in N.contents) + if(istype(N, /turf/simulated/floor)) + overlays += weedImageCache[WEED_SOUTH_EDGING] + if(!locate(/obj/effect/alien) in S.contents) + if(istype(S, /turf/simulated/floor)) + overlays += weedImageCache[WEED_NORTH_EDGING] + if(!locate(/obj/effect/alien) in E.contents) + if(istype(E, /turf/simulated/floor)) + overlays += weedImageCache[WEED_WEST_EDGING] + if(!locate(/obj/effect/alien) in W.contents) + if(istype(W, /turf/simulated/floor)) + overlays += weedImageCache[WEED_EAST_EDGING] + +/obj/effect/alien/weeds/proc/fullUpdateWeedOverlays() + for (var/obj/effect/alien/weeds/W in range(1,src)) + W.updateWeedOverlays() + return -/obj/effect/alien/weeds/proc/Life() +/obj/effect/alien/weeds/process() set background = 1 var/turf/U = get_turf(src) /* @@ -211,6 +275,9 @@ Alien plants should do something if theres a lot of poison if(!linked_node || (get_dist(linked_node, src) > linked_node.node_range) ) return + if(linked_node != src) + color = linked_node.set_color + direction_loop: for(var/dirn in cardinal) var/turf/T = get_step(src, dirn) @@ -222,10 +289,33 @@ Alien plants should do something if theres a lot of poison // continue for(var/obj/O in T) - if(O.density) + if(!O.CanZASPass(U)) continue direction_loop - new /obj/effect/alien/weeds(T, linked_node) + var/obj/effect/E = new /obj/effect/alien/weeds(T, linked_node) + + E.color = color + + if(istype(src, /obj/effect/alien/weeds/node)) + var/obj/effect/alien/weeds/node/N = src + var/list/nearby_weeds = list() + for(var/obj/effect/alien/weeds/W in range(N.node_range,src)) + nearby_weeds |= W + + for(var/obj/effect/alien/weeds/W in nearby_weeds) + if(!W) + continue + + if(!W.linked_node) + W.linked_node = src + + W.color = W.linked_node.set_color + + if(W == src) + continue + + if(prob(max(10, 40 - (5 * nearby_weeds.len)))) + W.process() /obj/effect/alien/weeds/ex_act(severity) @@ -282,7 +372,12 @@ Alien plants should do something if theres a lot of poison healthcheck() #undef NODERANGE - +#undef WEED_NORTH_EDGING +#undef WEED_SOUTH_EDGING +#undef WEED_EAST_EDGING +#undef WEED_WEST_EDGING +#undef WEED_NODE_GLOW +#undef WEED_NODE_BASE /* * Acid diff --git a/code/game/objects/effects/chem/foam.dm b/code/game/objects/effects/chem/foam.dm index f32a75dcce..d3ee736251 100644 --- a/code/game/objects/effects/chem/foam.dm +++ b/code/game/objects/effects/chem/foam.dm @@ -74,6 +74,12 @@ qdel(src) /obj/effect/effect/foam/Crossed(var/atom/movable/AM) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(metal) return if(istype(AM, /mob/living)) diff --git a/code/game/objects/effects/decals/Cleanable/humans.dm b/code/game/objects/effects/decals/Cleanable/humans.dm index 8b8bba5a9d..cfde668d5c 100644 --- a/code/game/objects/effects/decals/Cleanable/humans.dm +++ b/code/game/objects/effects/decals/Cleanable/humans.dm @@ -70,6 +70,12 @@ var/global/list/image/splatter_cache=list() desc = initial(desc) /obj/effect/decal/cleanable/blood/Crossed(mob/living/carbon/human/perp) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = perp + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (!istype(perp)) return if(amount < 1) @@ -199,10 +205,10 @@ var/global/list/image/splatter_cache=list() overlays += giblets /obj/effect/decal/cleanable/blood/gibs/up - random_icon_states = list("gib1", "gib2", "gib3", "gib4", "gib5", "gib6","gibup1","gibup1","gibup1") + random_icon_states = list("gib1", "gib2", "gib3", "gib5", "gib6","gibup1","gibup1","gibup1") /obj/effect/decal/cleanable/blood/gibs/down - random_icon_states = list("gib1", "gib2", "gib3", "gib4", "gib5", "gib6","gibdown1","gibdown1","gibdown1") + random_icon_states = list("gib1", "gib2", "gib3", "gib5", "gib6","gibdown1","gibdown1","gibdown1") /obj/effect/decal/cleanable/blood/gibs/body random_icon_states = list("gibhead", "gibtorso") diff --git a/code/game/objects/effects/effect_system.dm b/code/game/objects/effects/effect_system.dm index 551449a8fb..d1de900bae 100644 --- a/code/game/objects/effects/effect_system.dm +++ b/code/game/objects/effects/effect_system.dm @@ -185,6 +185,12 @@ steam.start() -- spawns the effect qdel(src) /obj/effect/effect/smoke/Crossed(mob/living/carbon/M as mob ) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = M + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() if(istype(M)) affect(M) diff --git a/code/game/objects/effects/map_effects/radiation_emitter.dm b/code/game/objects/effects/map_effects/radiation_emitter.dm index 3fb31d3c5d..8abf946556 100644 --- a/code/game/objects/effects/map_effects/radiation_emitter.dm +++ b/code/game/objects/effects/map_effects/radiation_emitter.dm @@ -1,19 +1,19 @@ -// Constantly emites radiation from the tile it's placed on. -/obj/effect/map_effect/radiation_emitter - name = "radiation emitter" - icon_state = "radiation_emitter" - var/radiation_power = 30 // Bigger numbers means more radiation. - -/obj/effect/map_effect/radiation_emitter/Initialize() - START_PROCESSING(SSobj, src) - return ..() - -/obj/effect/map_effect/radiation_emitter/Destroy() - STOP_PROCESSING(SSobj, src) - return ..() - -/obj/effect/map_effect/radiation_emitter/process() - radiation_repository.radiate(src, radiation_power) - +// Constantly emites radiation from the tile it's placed on. +/obj/effect/map_effect/radiation_emitter + name = "radiation emitter" + icon_state = "radiation_emitter" + var/radiation_power = 30 // Bigger numbers means more radiation. + +/obj/effect/map_effect/radiation_emitter/Initialize() + START_PROCESSING(SSobj, src) + return ..() + +/obj/effect/map_effect/radiation_emitter/Destroy() + STOP_PROCESSING(SSobj, src) + return ..() + +/obj/effect/map_effect/radiation_emitter/process() + SSradiation.radiate(src, radiation_power) + /obj/effect/map_effect/radiation_emitter/strong radiation_power = 100 \ No newline at end of file diff --git a/code/game/objects/effects/mines.dm b/code/game/objects/effects/mines.dm index 87af3ec90b..fb4117ef44 100644 --- a/code/game/objects/effects/mines.dm +++ b/code/game/objects/effects/mines.dm @@ -36,6 +36,12 @@ ..() /obj/effect/mine/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN Bumped(AM) /obj/effect/mine/Bumped(mob/M as mob|obj) diff --git a/code/game/objects/effects/portals.dm b/code/game/objects/effects/portals.dm index 7dc82a0ffb..5ba58dc4e0 100644 --- a/code/game/objects/effects/portals.dm +++ b/code/game/objects/effects/portals.dm @@ -21,6 +21,12 @@ GLOBAL_LIST_BOILERPLATE(all_portals, /obj/effect/portal) return /obj/effect/portal/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(istype(AM,/mob) && !(istype(AM,/mob/living))) return //do not send ghosts, zshadows, ai eyes, etc spawn(0) diff --git a/code/game/objects/effects/spiders_vr.dm b/code/game/objects/effects/spiders_vr.dm new file mode 100644 index 0000000000..65829b95ac --- /dev/null +++ b/code/game/objects/effects/spiders_vr.dm @@ -0,0 +1,2 @@ +/obj/effect/spider/spiderling/virgo + grow_as = list(/mob/living/simple_mob/animal/giant_spider, /mob/living/simple_mob/animal/giant_spider/hunter) diff --git a/code/game/objects/effects/step_triggers.dm b/code/game/objects/effects/step_triggers.dm index 40c3f752e9..870656d92e 100644 --- a/code/game/objects/effects/step_triggers.dm +++ b/code/game/objects/effects/step_triggers.dm @@ -13,6 +13,12 @@ return 0 /obj/effect/step_trigger/Crossed(H as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = H + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() if(!H) return @@ -229,6 +235,10 @@ var/global/list/tele_landmarks = list() // Terrible, but the alternative is loop if(isobserver(A)) A.forceMove(T) // Harmlessly move ghosts. return + //VOREStation Edit Start + if(!(A.can_fall())) + return // Phased shifted kin should not fall + //VOREStation Edit End A.forceMove(T) // Living things should probably be logged when they fall... diff --git a/code/game/objects/items/bodybag.dm b/code/game/objects/items/bodybag.dm index 1a8b10a26a..67562e5a66 100644 --- a/code/game/objects/items/bodybag.dm +++ b/code/game/objects/items/bodybag.dm @@ -42,6 +42,29 @@ storage_capacity = (MOB_MEDIUM * 2) - 1 var/contains_body = 0 +//Yawn add +/obj/item/bodybag/large + name = "mass grave body bag" + desc = "A large folded bag designed for the storage and transportation of cadavers." + icon = 'icons/obj/bodybag.dmi' + icon_state = "bluebodybag_folded" + w_class = ITEMSIZE_LARGE + + attack_self(mob/user) + var/obj/structure/closet/body_bag/large/R = new /obj/structure/closet/body_bag/large(user.loc) + R.add_fingerprint(user) + qdel(src) + +/obj/structure/closet/body_bag/large + name = "mass grave body bag" + desc = "A massive body bag that holds as much as it does do to bluespace lining on its zipper. Shockingly compact for its storage." + icon_state = "bluebodybag_closed" + icon_closed = "bluebodybag_closed" + icon_opened = "bluebodybag_open" + storage_capacity = (MOB_MEDIUM * 12) - 1 //Holds 12 bodys + item_path = /obj/item/bodybag/large +//End of Yawn add + /obj/structure/closet/body_bag/attackby(var/obj/item/W as obj, mob/user as mob) if (istype(W, /obj/item/weapon/pen)) var/t = input(user, "What would you like the label to be?", text("[]", src.name), null) as text diff --git a/code/game/objects/items/devices/PDA/PDA.dm b/code/game/objects/items/devices/PDA/PDA.dm index 1d1d591d57..53a83c66bd 100644 --- a/code/game/objects/items/devices/PDA/PDA.dm +++ b/code/game/objects/items/devices/PDA/PDA.dm @@ -1456,6 +1456,12 @@ var/global/list/obj/item/device/pda/PDAs = list() return ..() /obj/item/device/pda/clown/Crossed(AM as mob|obj) //Clown PDA is slippery. + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (istype(AM, /mob/living)) var/mob/living/M = AM diff --git a/code/game/objects/items/devices/defib.dm b/code/game/objects/items/devices/defib.dm index 26fb1b69aa..b66c4a3776 100644 --- a/code/game/objects/items/devices/defib.dm +++ b/code/game/objects/items/devices/defib.dm @@ -610,12 +610,12 @@ return 1 /obj/item/weapon/shockpaddles/standalone/checked_use(var/charge_amt) - radiation_repository.radiate(src, charge_amt/12) //just a little bit of radiation. It's the price you pay for being powered by magic I guess + SSradiation.radiate(src, charge_amt/12) //just a little bit of radiation. It's the price you pay for being powered by magic I guess return 1 /obj/item/weapon/shockpaddles/standalone/process() if(fail_counter > 0) - radiation_repository.radiate(src, fail_counter--) + SSradiation.radiate(src, fail_counter--) else STOP_PROCESSING(SSobj, src) diff --git a/code/game/objects/items/devices/geiger.dm b/code/game/objects/items/devices/geiger.dm index 76697ddba3..92ff449855 100644 --- a/code/game/objects/items/devices/geiger.dm +++ b/code/game/objects/items/devices/geiger.dm @@ -28,7 +28,7 @@ /obj/item/device/geiger/proc/get_radiation() if(!scanning) return - radiation_count = radiation_repository.get_rads_at_turf(get_turf(src)) + radiation_count = SSradiation.get_rads_at_turf(get_turf(src)) update_icon() update_sound() diff --git a/code/game/objects/items/devices/radio/headset_vr.dm b/code/game/objects/items/devices/radio/headset_vr.dm index d7216ed2d4..a82e694d0e 100644 --- a/code/game/objects/items/devices/radio/headset_vr.dm +++ b/code/game/objects/items/devices/radio/headset_vr.dm @@ -17,3 +17,30 @@ centComm = 1 ks2type = /obj/item/device/encryptionkey/ert +/obj/item/device/radio/headset + sprite_sheets = list(SPECIES_TESHARI = 'icons/mob/species/seromi/ears.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/ears.dmi') + +/obj/item/device/radio/headset/mob_headset //Adminbus headset for simplemob shenanigans. + name = "nonhuman radio implant" + desc = "An updated, modular intercom that requires no hands to operate. Takes encryption keys" + +/obj/item/device/radio/headset/mob_headset/receive_range(freq, level) + if(ismob(src.loc)) + return ..(freq, level) + return -1 + +/obj/item/device/radio/headset/mob_headset/afterattack(var/atom/movable/target, mob/living/user, proximity) + if(!proximity) + return + if(istype(target,/mob/living/simple_mob)) + var/mob/living/simple_mob/M = target + if(!M.mob_radio) + forceMove(M) + M.mob_radio = src + return + if(M.mob_radio) + M.mob_radio.forceMove(M.loc) + M.mob_radio = null + return + ..() \ No newline at end of file diff --git a/code/game/objects/items/devices/radio/radio.dm b/code/game/objects/items/devices/radio/radio.dm index 68c862db09..747f7f7d0e 100644 --- a/code/game/objects/items/devices/radio/radio.dm +++ b/code/game/objects/items/devices/radio/radio.dm @@ -95,7 +95,7 @@ var/global/list/default_medbay_channels = list( /obj/item/device/radio/interact(mob/user) if(!user) - return 0 + return FALSE if(b_stat) wires.Interact(user) @@ -151,10 +151,10 @@ var/global/list/default_medbay_channels = list( /obj/item/device/radio/proc/has_channel_access(var/mob/user, var/freq) if(!user) - return 0 + return FALSE if(!(freq in internal_channels)) - return 0 + return FALSE return user.has_internal_radio_channel_access(internal_channels[freq]) @@ -191,7 +191,7 @@ var/global/list/default_medbay_channels = list( /obj/item/device/radio/Topic(href, href_list) if(..()) - return 1 + return TRUE usr.set_machine(src) if (href_list["track"]) @@ -229,7 +229,7 @@ var/global/list/default_medbay_channels = list( set_frequency(text2num(freq)) . = 1 if(href_list["nowindow"]) // here for pAIs, maybe others will want it, idk - return 1 + return TRUE if(.) SSnanoui.update_uis(src) @@ -246,8 +246,6 @@ var/global/list/default_medbay_channels = list( channel = null if (!istype(connection)) return - if (!connection) - return var/static/mob/living/silicon/ai/announcer/A = new /mob/living/silicon/ai/announcer(src, null, null, 1) A.SetName(from) @@ -274,18 +272,18 @@ var/global/list/default_medbay_channels = list( return null /obj/item/device/radio/talk_into(mob/living/M as mob, message, channel, var/verb = "says", var/datum/language/speaking = null) - if(!on) return 0 // the device has to be on + if(!on) return FALSE // the device has to be on // Fix for permacell radios, but kinda eh about actually fixing them. - if(!M || !message) return 0 + if(!M || !message) return FALSE - if(speaking && (speaking.flags & (SIGNLANG|NONVERBAL))) return 0 + if(speaking && (speaking.flags & (SIGNLANG|NONVERBAL))) return FALSE if(istype(M)) M.trigger_aiming(TARGET_CAN_RADIO) // Uncommenting this. To the above comment: // The permacell radios aren't suppose to be able to transmit, this isn't a bug and this "fix" is just making radio wires useless. -Giacom if(wires.IsIndexCut(WIRE_TRANSMIT)) // The device has to have all its wires and shit intact - return 0 + return FALSE if(!radio_connection) set_frequency(frequency) @@ -304,9 +302,7 @@ var/global/list/default_medbay_channels = list( //#### Grab the connection datum ####// var/datum/radio_frequency/connection = handle_message_mode(M, message, channel) if (!istype(connection)) - return 0 - if (!connection) - return 0 + return FALSE var/turf/position = get_turf(src) @@ -360,13 +356,12 @@ var/global/list/default_medbay_channels = list( /* ###### Radio headsets can only broadcast through subspace ###### */ - if(subspace_transmission) var/list/jamming = is_jammed(src) if(jamming) var/distance = jamming["distance"] to_chat(M,"\icon[src] You hear the [distance <= 2 ? "loud hiss" : "soft hiss"] of static.") - return 0 + return FALSE // First, we want to generate a new radio signal var/datum/signal/signal = new @@ -414,6 +409,7 @@ var/global/list/default_medbay_channels = list( for(var/obj/machinery/telecomms/allinone/R in telecomms_list) R.receive_signal(signal) + // Receiving code can be located in Telecommunications.dm if(signal.data["done"] && position.z in signal.data["level"]) return TRUE //Huzzah, sent via subspace @@ -474,13 +470,13 @@ var/global/list/default_medbay_channels = list( to_chat(loc,"\The [src] pings as it reestablishes subspace communications.") subspace_transmission = TRUE // we're done here. - return 1 + return TRUE // Oh my god; the comms are down or something because the signal hasn't been broadcasted yet in our level. // Send a mundane broadcast with limited targets: //THIS IS TEMPORARY. YEAH RIGHT - if(!connection) return 0 //~Carn + if(!connection) return FALSE //~Carn //VOREStation Add Start if(bluespace_radio) @@ -504,7 +500,7 @@ var/global/list/default_medbay_channels = list( /obj/item/device/radio/proc/accept_rad(obj/item/device/radio/R as obj, message) if ((R.frequency == frequency && message)) - return 1 + return TRUE else if else @@ -544,7 +540,7 @@ var/global/list/default_medbay_channels = list( if (!accept) for (var/ch_name in channels) var/datum/radio_frequency/RF = secure_radio_connections[ch_name] - if (RF.frequency==freq && (channels[ch_name]&FREQ_LISTENING)) + if (RF && RF.frequency==freq && (channels[ch_name]&FREQ_LISTENING)) accept = 1 break if (!accept) @@ -695,7 +691,7 @@ var/global/list/default_medbay_channels = list( /obj/item/device/radio/borg/Topic(href, href_list) if(..()) - return 1 + return TRUE if (href_list["mode"]) var/enable_subspace_transmission = text2num(href_list["mode"]) if(enable_subspace_transmission != subspace_transmission) diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm index 90ae753da2..a085e59d24 100644 --- a/code/game/objects/items/devices/scanners.dm +++ b/code/game/objects/items/devices/scanners.dm @@ -175,6 +175,30 @@ HALOGEN COUNTER - Radcount on mobs dat += stomachunknownreagents[d] else dat += "Unknown substance[(unknown > 1)?"s":""] found in subject's stomach.
" + if(C.touching && C.touching.total_volume) + var/unknown = 0 + var/touchreagentdata[0] + var/touchunknownreagents[0] + for(var/B in C.touching.reagent_list) + var/datum/reagent/T = B + if(T.scannable) + touchreagentdata["[T.id]"] = "\t[round(C.touching.get_reagent_amount(T.id), 1)]u [T.name]
" + if (advscan == 0 || showadvscan == 0) + dat += "[T.name] found in subject's dermis.
" + else + ++unknown + touchunknownreagents["[T.id]"] = "\t[round(C.ingested.get_reagent_amount(T.id), 1)]u [T.name]
" + if(advscan >= 1 && showadvscan == 1) + dat += "Beneficial reagents detected in subject's dermis:
" + for(var/d in touchreagentdata) + dat += touchreagentdata[d] + if(unknown) + if(advscan >= 3 && showadvscan == 1) + dat += "Warning: Non-medical reagent[(unknown > 1)?"s":""] found in subject's dermis:
" + for(var/d in touchunknownreagents) + dat += touchunknownreagents[d] + else + dat += "Unknown substance[(unknown > 1)?"s":""] found in subject's dermis.
" if(C.virus2.len) for (var/ID in C.virus2) if (ID in virusDB) diff --git a/code/game/objects/items/poi_items.dm b/code/game/objects/items/poi_items.dm index 6fd6d7debd..c12a3a655a 100644 --- a/code/game/objects/items/poi_items.dm +++ b/code/game/objects/items/poi_items.dm @@ -13,7 +13,7 @@ return ..() /obj/item/poi/pascalb/process() - radiation_repository.radiate(src, 5) + SSradiation.radiate(src, 5) /obj/item/poi/pascalb/Destroy() STOP_PROCESSING(SSobj, src) @@ -41,7 +41,7 @@ return ..() /obj/item/poi/brokenoldreactor/process() - radiation_repository.radiate(src, 25) + SSradiation.radiate(src, 25) /obj/item/poi/brokenoldreactor/Destroy() STOP_PROCESSING(SSobj, src) diff --git a/code/game/objects/items/stacks/matter_synth.dm b/code/game/objects/items/stacks/matter_synth.dm index 3483dfbc61..d92cd5f8dd 100644 --- a/code/game/objects/items/stacks/matter_synth.dm +++ b/code/game/objects/items/stacks/matter_synth.dm @@ -50,4 +50,9 @@ /datum/matter_synth/wire name = "Wire Synthesizer" max_energy = 50 - recharge_rate = 2 \ No newline at end of file + recharge_rate = 2 + +/datum/matter_synth/bandage + name = "Bandage Synthesizer" + max_energy = 10 + recharge_rate = 1 diff --git a/code/game/objects/items/stacks/medical.dm b/code/game/objects/items/stacks/medical.dm index 612a14c4d4..51e2b8a03e 100644 --- a/code/game/objects/items/stacks/medical.dm +++ b/code/game/objects/items/stacks/medical.dm @@ -11,6 +11,8 @@ var/heal_burn = 0 var/apply_sounds + var/upgrade_to // The type path this stack can be upgraded to. + /obj/item/stack/medical/attack(mob/living/carbon/M as mob, mob/user as mob) if (!istype(M)) user << "\The [src] cannot be applied to [M]!" @@ -59,6 +61,80 @@ use(1) M.updatehealth() + +/obj/item/stack/medical/proc/upgrade_stack(var/upgrade_amount) + . = FALSE + + var/turf/T = get_turf(src) + + if(ispath(upgrade_to) && use(upgrade_amount)) + var/obj/item/stack/medical/M = new upgrade_to(T, upgrade_amount) + return M + + return . + +/obj/item/stack/medical/crude_pack + name = "crude bandage" + singular_name = "crude bandage length" + desc = "Some bandages to wrap around bloody stumps." + icon_state = "gauze" + origin_tech = list(TECH_BIO = 1) + no_variants = FALSE + apply_sounds = list('sound/effects/rip1.ogg','sound/effects/rip2.ogg') + + upgrade_to = /obj/item/stack/medical/bruise_pack + +/obj/item/stack/medical/crude_pack/attack(mob/living/carbon/M as mob, mob/user as mob) + if(..()) + return 1 + + if (istype(M, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = M + var/obj/item/organ/external/affecting = H.get_organ(user.zone_sel.selecting) + + if(affecting.open) + to_chat(user, "The [affecting.name] is cut open, you'll need more than a bandage!") + return + + if(affecting.is_bandaged()) + to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") + return 1 + else + user.visible_message("\The [user] starts bandaging [M]'s [affecting.name].", \ + "You start bandaging [M]'s [affecting.name]." ) + var/used = 0 + for (var/datum/wound/W in affecting.wounds) + if (W.internal) + continue + if(W.bandaged) + continue + if(used == amount) + break + if(!do_mob(user, M, W.damage/3)) + to_chat(user, "You must stand still to bandage wounds.") + break + + if(affecting.is_bandaged()) // We do a second check after the delay, in case it was bandaged after the first check. + to_chat(user, "The wounds on [M]'s [affecting.name] have already been bandaged.") + return 1 + + if (W.current_stage <= W.max_bleeding_stage) + user.visible_message("\The [user] bandages \a [W.desc] on [M]'s [affecting.name].", \ + "You bandage \a [W.desc] on [M]'s [affecting.name]." ) + else + user.visible_message("\The [user] places a bandage over \a [W.desc] on [M]'s [affecting.name].", \ + "You place a bandage over \a [W.desc] on [M]'s [affecting.name]." ) + W.bandage() + playsound(src, pick(apply_sounds), 25) + used++ + affecting.update_damages() + if(used == amount) + if(affecting.is_bandaged()) + to_chat(user, "\The [src] is used up.") + else + to_chat(user, "\The [src] is used up, but there are more wounds to treat on \the [affecting.name].") + use(used) + /obj/item/stack/medical/bruise_pack name = "roll of gauze" singular_name = "gauze length" @@ -68,6 +144,8 @@ no_variants = FALSE apply_sounds = list('sound/effects/rip1.ogg','sound/effects/rip2.ogg') + upgrade_to = /obj/item/stack/medical/advanced/bruise_pack + /obj/item/stack/medical/bruise_pack/attack(mob/living/carbon/M as mob, mob/user as mob) if(..()) return 1 diff --git a/code/game/objects/items/stacks/stack.dm b/code/game/objects/items/stacks/stack.dm index c5be255204..984c5b97f6 100644 --- a/code/game/objects/items/stacks/stack.dm +++ b/code/game/objects/items/stacks/stack.dm @@ -24,6 +24,9 @@ var/list/datum/matter_synth/synths = null var/no_variants = TRUE // Determines whether the item should update it's sprites based on amount. + var/pass_color = FALSE // Will the item pass its own color var to the created item? Dyed cloth, wood, etc. + var/strict_color_stacking = FALSE // Will the stack merge with other stacks that are different colors? (Dyed cloth, wood, etc) + /obj/item/stack/New(var/loc, var/amount=null) ..() if (!stacktype) @@ -159,6 +162,17 @@ for (var/obj/item/I in O) qdel(I) + if ((pass_color || recipe.pass_color)) + if(!color) + if(recipe.use_material) + var/material/MAT = get_material_by_name(recipe.use_material) + if(MAT.icon_colour) + O.color = MAT.icon_colour + else + return + else + O.color = color + /obj/item/stack/Topic(href, href_list) ..() if ((usr.restrained() || usr.stat || usr.get_active_hand() != src)) @@ -242,6 +256,9 @@ return 0 if ((stacktype != S.stacktype) && !type_verified) return 0 + if ((strict_color_stacking || S.strict_color_stacking) && S.color != color) + return 0 + if (isnull(tamount)) tamount = src.get_amount() @@ -355,8 +372,9 @@ var/one_per_turf = 0 var/on_floor = 0 var/use_material + var/pass_color - New(title, result_type, req_amount = 1, res_amount = 1, max_res_amount = 1, time = 0, one_per_turf = 0, on_floor = 0, supplied_material = null) + New(title, result_type, req_amount = 1, res_amount = 1, max_res_amount = 1, time = 0, one_per_turf = 0, on_floor = 0, supplied_material = null, pass_stack_color) src.title = title src.result_type = result_type src.req_amount = req_amount @@ -366,6 +384,7 @@ src.one_per_turf = one_per_turf src.on_floor = on_floor src.use_material = supplied_material + src.pass_color = pass_stack_color /* * Recipe list datum diff --git a/code/game/objects/items/toys.dm b/code/game/objects/items/toys.dm index 89182806db..067338bee9 100644 --- a/code/game/objects/items/toys.dm +++ b/code/game/objects/items/toys.dm @@ -322,6 +322,12 @@ qdel(src) /obj/item/toy/snappop/Crossed(H as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = H + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if((ishuman(H))) //i guess carp and shit shouldn't set them off var/mob/living/carbon/M = H if(M.m_intent == "run") @@ -929,10 +935,16 @@ icon_state = "nymphplushie" pokephrase = "Chirp!" +/obj/item/toy/plushie/teshari + name = "teshari plush" + desc = "This is a plush teshari. Very soft, with a pompom on the tail. The toy is made well, as if alive. Looks like she is sleeping. Shhh!" + icon_state = "teshariplushie" + pokephrase = "Rya!" + /obj/item/toy/plushie/mouse name = "mouse plush" desc = "A plushie of a delightful mouse! What was once considered a vile rodent is now your very best friend." - icon_state = "mouseplushie" + icon_state = "mouseplushie" //TFF 12/11/19 - updated icon to show a sprite that doesn't replicate a dead mouse. Heck you for that! >:C pokephrase = "Squeak!" /obj/item/toy/plushie/kitten @@ -1357,4 +1369,4 @@ icon_state = "tinyxmastree" w_class = ITEMSIZE_TINY force = 1 - throwforce = 1 \ No newline at end of file + throwforce = 1 diff --git a/code/game/objects/items/toys_yw.dm b/code/game/objects/items/toys_yw.dm new file mode 100644 index 0000000000..c79b27c3e8 --- /dev/null +++ b/code/game/objects/items/toys_yw.dm @@ -0,0 +1,18 @@ +/obj/item/toy/plushie/teshari/strix + name = "Strix Hades" + desc = "This is Strix Hades the plushie Avali. Very soft, with a pompom on the tail. The toy is made well, as if alive. Looks like he is sleeping. Shhh!" + icon_state = "strixplush" + pokephrase = "Weh!" + icon = 'icons/obj/toy_yw.dmi' + + rename_plushie() + set name = "Name Plushie" + set category = "Object" + set desc = "Give your plushie a cute name!" + var/mob/M = usr + if(!M.mind) + return 0 + + if(src && !M.stat && in_range(M,src)) + to_chat(M, "You cannot rename Strix Hades! You hug him anyway.") + return 1 \ No newline at end of file diff --git a/code/game/objects/items/trash.dm b/code/game/objects/items/trash.dm index dd3ddb29ca..12315972a2 100644 --- a/code/game/objects/items/trash.dm +++ b/code/game/objects/items/trash.dm @@ -80,6 +80,10 @@ name = "\improper \"LiquidProtein\" ration" icon_state = "liquidprotein" +/obj/item/trash/liquidvitamin + name = "\improper \"VitaPaste\" ration" + icon_state = "liquidvitamin" + /obj/item/trash/tastybread name = "bread tube" icon_state = "tastybread" diff --git a/code/game/objects/items/weapons/clown_items.dm b/code/game/objects/items/weapons/clown_items.dm index cb6a4e4a42..890e557f50 100644 --- a/code/game/objects/items/weapons/clown_items.dm +++ b/code/game/objects/items/weapons/clown_items.dm @@ -9,6 +9,12 @@ * Banana Peals */ /obj/item/weapon/bananapeel/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (istype(AM, /mob/living)) var/mob/living/M = AM M.slip("the [src.name]",4) @@ -24,6 +30,12 @@ reagents.add_reagent("cleaner", 5) /obj/item/weapon/soap/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if (istype(AM, /mob/living)) var/mob/living/M = AM M.slip("the [src.name]",3) diff --git a/code/game/objects/items/weapons/implants/implant.dm b/code/game/objects/items/weapons/implants/implant.dm index 1804d576fd..ff4146b8a0 100644 --- a/code/game/objects/items/weapons/implants/implant.dm +++ b/code/game/objects/items/weapons/implants/implant.dm @@ -13,6 +13,7 @@ var/implant_color = "b" var/allow_reagents = 0 var/malfunction = 0 + var/initialize_loc = BP_TORSO show_messages = 1 /obj/item/weapon/implant/proc/trigger(emote, source as mob) @@ -30,7 +31,7 @@ var/mob/living/carbon/human/H = source var/obj/item/organ/external/affected = H.get_organ(target_zone) if(affected) - affected.implants += src + affected.implants |= src part = affected if(part) forceMove(part) @@ -65,8 +66,8 @@ /obj/item/weapon/implant/proc/implant_loadout(var/mob/living/carbon/human/H) if(H) - var/obj/item/organ/external/affected = H.organs_by_name[BP_HEAD] - if(handle_implant(H, affected)) + if(handle_implant(H, initialize_loc)) + invisibility = initial(invisibility) post_implant(H) /obj/item/weapon/implant/Destroy() @@ -110,7 +111,7 @@ GLOBAL_LIST_BOILERPLATE(all_tracking_implants, /obj/item/weapon/implant/tracking ..() /obj/item/weapon/implant/tracking/post_implant(var/mob/source) - START_PROCESSING(SSobj, src) + START_PROCESSING(SSobj, src) /obj/item/weapon/implant/tracking/Destroy() STOP_PROCESSING(SSobj, src) @@ -563,7 +564,7 @@ the implant may become unstable and either pre-maturely inject the subject or si /obj/item/weapon/implant/death_alarm/post_implant(mob/source as mob) mobname = source.real_name - START_PROCESSING(SSobj, src) + START_PROCESSING(SSobj, src) ////////////////////////////// // Compressed Matter Implant diff --git a/code/game/objects/items/weapons/implants/implantaugment.dm b/code/game/objects/items/weapons/implants/implantaugment.dm new file mode 100644 index 0000000000..10873d1d06 --- /dev/null +++ b/code/game/objects/items/weapons/implants/implantaugment.dm @@ -0,0 +1,196 @@ +////////////////////////////// +// Nanite Organ Implant +////////////////////////////// +/obj/item/weapon/implant/organ + name = "nanite fabrication implant" + desc = "A buzzing implant covered in a writhing layer of metal insects." + icon_state = "implant_evil" + origin_tech = list(TECH_MATERIAL = 5, TECH_BIO = 2, TECH_ILLEGAL = 2) + + var/organ_to_implant = /obj/item/organ/internal/augment/bioaugment/thermalshades + var/organ_display_name = "unknown organ" + +/obj/item/weapon/implant/organ/get_data() + var/dat = {" +Implant Specifications:
+Name: \"GreyDoctor\" Class Nanite Hive
+Life: Activates upon implantation, destroying itself in the process.
+Important Notes: Nanites will fail to complete their task if a suitable location cannot be found for the organ.
+
+Implant Details:
+Function: Nanites will fabricate: [organ_display_name]
+Special Features: Organ identification protocols.
+Integrity: N/A"} + return dat + +/obj/item/weapon/implant/organ/post_implant(var/mob/M) + if(ishuman(M)) + var/mob/living/carbon/human/H = M + + var/obj/item/organ/NewOrgan = new organ_to_implant() + + var/obj/item/organ/external/E = H.get_organ(NewOrgan.parent_organ) + to_chat(H, "You feel a tingling sensation in your [part].") + if(E && !(H.internal_organs_by_name[NewOrgan.organ_tag])) + spawn(rand(1 SECONDS, 30 SECONDS)) + to_chat(H, "You feel a pressure in your [E] as the tingling fades, the lump caused by the implant now gone.") + + NewOrgan.forceMove(H) + NewOrgan.owner = H + if(E.internal_organs == null) + E.internal_organs = list() + E.internal_organs |= NewOrgan + H.internal_organs_by_name[NewOrgan.organ_tag] = NewOrgan + H.internal_organs |= NewOrgan + NewOrgan.handle_organ_mod_special() + + spawn(1) + if(!QDELETED(src)) + qdel(src) + + else + qdel(NewOrgan) + to_chat(H, "You feel a pinching sensation in your [part]. The implant remains.") + +/obj/item/weapon/implant/organ/islegal() + return 0 + +/* + * Arm / leg mounted augments. + */ + +/obj/item/weapon/implant/organ/limbaugment + name = "nanite implant" + + organ_to_implant = /obj/item/organ/internal/augment/armmounted/taser + organ_display_name = "physiological augment" + + var/list/possible_targets = list(O_AUG_L_FOREARM, O_AUG_R_FOREARM) + +/obj/item/weapon/implant/organ/limbaugment/post_implant(var/mob/M) + if(ishuman(M)) + var/mob/living/carbon/human/H = M + + var/obj/item/organ/NewOrgan = new organ_to_implant() + + var/obj/item/organ/external/E = setup_augment_slots(H, NewOrgan) + to_chat(H, "You feel a tingling sensation in your [part].") + if(E && istype(E) && !(H.internal_organs_by_name[NewOrgan.organ_tag])) + spawn(rand(1 SECONDS, 30 SECONDS)) + to_chat(H, "You feel a pressure in your [E] as the tingling fades, the lump caused by the implant now gone.") + + NewOrgan.forceMove(H) + NewOrgan.owner = H + if(E.internal_organs == null) + E.internal_organs = list() + E.internal_organs |= NewOrgan + H.internal_organs_by_name[NewOrgan.organ_tag] = NewOrgan + H.internal_organs |= NewOrgan + NewOrgan.handle_organ_mod_special() + + spawn(1) + if(!QDELETED(src)) + qdel(src) + + else + qdel(NewOrgan) + to_chat(H, "You feel a pinching sensation in your [part]. The implant remains.") + +/obj/item/weapon/implant/organ/limbaugment/proc/setup_augment_slots(var/mob/living/carbon/human/H, var/obj/item/organ/internal/augment/armmounted/I) + var/list/Choices = possible_targets.Copy() + + for(var/targ in possible_targets) + if(H.internal_organs_by_name[targ]) + Choices -= targ + + var/target_choice = null + if(Choices && Choices.len) + if(Choices.len == 1) + target_choice = Choices[1] + else + target_choice = input("Choose augment location:") in Choices + + else + return FALSE + + if(target_choice) + switch(target_choice) + if(O_AUG_R_HAND) + I.organ_tag = O_AUG_R_HAND + I.parent_organ = BP_R_HAND + I.target_slot = slot_r_hand + if(O_AUG_L_HAND) + I.organ_tag = O_AUG_L_HAND + I.parent_organ = BP_L_HAND + I.target_slot = slot_l_hand + + if(O_AUG_R_FOREARM) + I.organ_tag = O_AUG_R_FOREARM + I.parent_organ = BP_R_ARM + I.target_slot = slot_r_hand + if(O_AUG_L_FOREARM) + I.organ_tag = O_AUG_L_FOREARM + I.parent_organ = BP_L_ARM + I.target_slot = slot_l_hand + + if(O_AUG_R_UPPERARM) + I.organ_tag = O_AUG_R_UPPERARM + I.parent_organ = BP_R_ARM + I.target_slot = slot_r_hand + if(O_AUG_L_UPPERARM) + I.organ_tag = O_AUG_L_UPPERARM + I.parent_organ = BP_L_ARM + I.target_slot = slot_l_hand + + . = H.get_organ(I.parent_organ) + +/* + * Limb implant primary subtypes. + */ + +/obj/item/weapon/implant/organ/limbaugment/upperarm + organ_to_implant = /obj/item/organ/internal/augment/armmounted/shoulder/multiple + organ_display_name = "multi-use augment" + + possible_targets = list(O_AUG_R_UPPERARM,O_AUG_L_UPPERARM) + +/obj/item/weapon/implant/organ/limbaugment/wrist + organ_to_implant = /obj/item/organ/internal/augment/armmounted/hand + organ_display_name = "wrist augment" + + possible_targets = list(O_AUG_R_HAND,O_AUG_L_HAND) + +/* + * Limb implant general subtypes. + */ + +// Wrist +/obj/item/weapon/implant/organ/limbaugment/wrist/sword + organ_to_implant = /obj/item/organ/internal/augment/armmounted/hand/sword + organ_display_name = "weapon augment" + +// Fore-arm +/obj/item/weapon/implant/organ/limbaugment/laser + organ_to_implant = /obj/item/organ/internal/augment/armmounted + organ_display_name = "weapon augment" + +/obj/item/weapon/implant/organ/limbaugment/dart + organ_to_implant = /obj/item/organ/internal/augment/armmounted/dartbow + organ_display_name = "weapon augment" + +// Upper-arm. +/obj/item/weapon/implant/organ/limbaugment/upperarm/medkit + organ_to_implant = /obj/item/organ/internal/augment/armmounted/shoulder/multiple/medical + +/obj/item/weapon/implant/organ/limbaugment/upperarm/surge + organ_to_implant = /obj/item/organ/internal/augment/armmounted/shoulder/surge + +/* + * Others + */ + +/obj/item/weapon/implant/organ/pelvic + name = "nanite fabrication implant" + + organ_to_implant = /obj/item/organ/internal/augment/bioaugment/sprint_enhance + organ_display_name = "pelvic augment" diff --git a/code/game/objects/items/weapons/implants/implantcase.dm b/code/game/objects/items/weapons/implants/implantcase.dm index ae00895361..93fef6ca92 100644 --- a/code/game/objects/items/weapons/implants/implantcase.dm +++ b/code/game/objects/items/weapons/implants/implantcase.dm @@ -179,3 +179,103 @@ src.imp = new /obj/item/weapon/implant/language/eal( src ) ..() return + +/obj/item/weapon/implantcase/shades + name = "glass case - 'Integrated Shades'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/shades/New() + src.imp = new /obj/item/weapon/implant/organ( src ) + ..() + return + +/obj/item/weapon/implantcase/taser + name = "glass case - 'Taser'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/taser/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment( src ) + ..() + return + +/obj/item/weapon/implantcase/laser + name = "glass case - 'Laser'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/laser/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/laser( src ) + ..() + return + +/obj/item/weapon/implantcase/dart + name = "glass case - 'Dart'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/dart/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/dart( src ) + ..() + return + +/obj/item/weapon/implantcase/toolkit + name = "glass case - 'Toolkit'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/toolkit/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/upperarm( src ) + ..() + return + +/obj/item/weapon/implantcase/medkit + name = "glass case - 'Toolkit'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/medkit/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/upperarm/medkit( src ) + ..() + return + +/obj/item/weapon/implantcase/surge + name = "glass case - 'Muscle Overclocker'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/surge/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/upperarm/surge( src ) + ..() + return + +/obj/item/weapon/implantcase/analyzer + name = "glass case - 'Scanner'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/analyzer/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/wrist( src ) + ..() + return + +/obj/item/weapon/implantcase/sword + name = "glass case - 'Scanner'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/sword/New() + src.imp = new /obj/item/weapon/implant/organ/limbaugment/wrist/sword( src ) + ..() + return + +/obj/item/weapon/implantcase/sprinter + name = "glass case - 'Sprinter'" + desc = "A case containing a nanite fabricator implant." + icon_state = "implantcase-b" + +/obj/item/weapon/implantcase/sprinter/New() + src.imp = new /obj/item/weapon/implant/organ/pelvic( src ) + ..() + return diff --git a/code/game/objects/items/weapons/implants/implantdud.dm b/code/game/objects/items/weapons/implants/implantdud.dm new file mode 100644 index 0000000000..110051e58d --- /dev/null +++ b/code/game/objects/items/weapons/implants/implantdud.dm @@ -0,0 +1,21 @@ +/obj/item/weapon/implant/dud + name = "unknown implant" + desc = "A small device with small connector wires." + icon = 'icons/obj/device.dmi' + icon_state = "implant" + initialize_loc = BP_HEAD + var/roundstart = TRUE + +/obj/item/weapon/implant/dud/torso + name = "unknown implant" + desc = "A small device with small connector wires." + icon = 'icons/obj/device.dmi' + icon_state = "implant" + initialize_loc = BP_TORSO + +/obj/item/weapon/implant/dud/old + name = "old implant" + desc = "A small device with small connector wires." + icon = 'icons/obj/device.dmi' + icon_state = "implant" + roundstart = FALSE diff --git a/code/game/objects/items/weapons/implants/neuralbasic.dm b/code/game/objects/items/weapons/implants/neuralbasic.dm index d744c80fde..18d472154b 100644 --- a/code/game/objects/items/weapons/implants/neuralbasic.dm +++ b/code/game/objects/items/weapons/implants/neuralbasic.dm @@ -1,6 +1,7 @@ /obj/item/weapon/implant/neural name = "neural framework implant" desc = "A small metal casing with numerous wires stemming off of it." + initialize_loc = BP_HEAD var/obj/item/organ/internal/brain/my_brain = null var/target_state = null var/robotic_brain = FALSE diff --git a/code/game/objects/items/weapons/material/material_weapons.dm b/code/game/objects/items/weapons/material/material_weapons.dm index a911d1e137..3f2b1978d3 100644 --- a/code/game/objects/items/weapons/material/material_weapons.dm +++ b/code/game/objects/items/weapons/material/material_weapons.dm @@ -86,10 +86,13 @@ health-- check_health() -/obj/item/weapon/material/attackby(obj/item/weapon/W, mob/user as mob) +/obj/item/weapon/material/attackby(obj/item/weapon/W, mob/user) if(istype(W, /obj/item/weapon/whetstone)) var/obj/item/weapon/whetstone/whet = W repair(whet.repair_amount, whet.repair_time, user) + if(istype(W, /obj/item/weapon/material/sharpeningkit)) + var/obj/item/weapon/material/sharpeningkit/SK = W + repair(SK.repair_amount, SK.repair_time, user) ..() /obj/item/weapon/material/proc/check_health(var/consumed) @@ -134,7 +137,19 @@ to_chat(user, "You can't repair \the [src].") return - +/obj/item/weapon/material/proc/sharpen(var/material, var/sharpen_time, var/kit, mob/living/M) + if(!fragile) + if(health < initial(health)) + to_chat(M, "You should repair [src] first. Try using [kit] on it.") + return FALSE + M.visible_message("[M] begins to replace parts of [src] with [kit].", "You begin to replace parts of [src] with [kit].") + if(do_after(usr, sharpen_time)) + M.visible_message("[M] has finished replacing parts of [src].", "You finish replacing parts of [src].") + src.set_material(material) + return TRUE + else + to_chat(M, "You can't sharpen and re-edge [src].") + return FALSE /* Commenting this out pending rebalancing of radiation based on small objects. @@ -162,4 +177,4 @@ Commenting this out pending rebalancing of radiation based on small objects. TemperatureAct(150) else return ..() -*/ \ No newline at end of file +*/ diff --git a/code/game/objects/items/weapons/material/shards.dm b/code/game/objects/items/weapons/material/shards.dm index 937391737a..8df81e434c 100644 --- a/code/game/objects/items/weapons/material/shards.dm +++ b/code/game/objects/items/weapons/material/shards.dm @@ -63,58 +63,57 @@ /obj/item/weapon/material/shard/afterattack(var/atom/target, mob/living/carbon/human/user as mob) var/active_hand //hand the shard is in - var/will_break - var/gloves_are_heavy = FALSE//this is a fucking mess + var/will_break = FALSE + var/protected_hands = FALSE //this is a fucking mess var/break_damage = 4 var/light_glove_d = rand(2, 4) var/no_glove_d = rand(4, 6) - var/list/h_gloves = list(/obj/item/clothing/gloves/captain, /obj/item/clothing/gloves/cyborg, - /obj/item/clothing/gloves/swat, /obj/item/clothing/gloves/combat, - /obj/item/clothing/gloves/botanic_leather, /obj/item/clothing/gloves/duty, - /obj/item/clothing/gloves/tactical, /obj/item/clothing/gloves/vox, - /obj/item/clothing/gloves/gauntlets) + var/list/forbidden_gloves = list( + /obj/item/clothing/gloves/sterile, + /obj/item/clothing/gloves/knuckledusters + ) - if(istype(user.l_hand, src)) + if(src == user.l_hand) active_hand = BP_L_HAND - else + else if(src == user.r_hand) active_hand = BP_R_HAND + else + return // If it's not actually in our hands anymore, we were probably gentle with it + + active_hand = (src == user.l_hand) ? BP_L_HAND : BP_R_HAND // May not actually be faster than an if-else block, but a little bit cleaner -Ater if(prob(75)) will_break = TRUE - else - will_break = FALSE - if(user.gloves && (user.gloves.body_parts_covered & HANDS)) - var/obj/item/clothing/gloves/UG = user.gloves.type - for(var/I in h_gloves) - if(UG == I) - gloves_are_heavy = TRUE - if(will_break) - user.visible_message("[user] hit \the [target] with \the [src], shattering it!", "You shatter \the [src] in your hand!") - playsound(user, pick('sound/effects/Glassbr1.ogg', 'sound/effects/Glassbr2.ogg', 'sound/effects/Glassbr3.ogg'), 30, 1) - qdel(src) + if(user.gloves && (user.gloves.body_parts_covered & HANDS) && istype(user.gloves, /obj/item/clothing/gloves)) // Not-gloves aren't gloves, and therefore don't protect us + protected_hands = TRUE // If we're wearing gloves we can probably handle it just fine + for(var/I in forbidden_gloves) + if(istype(user.gloves, I)) // forbidden_gloves is a blacklist, so if we match anything in there, our hands are not protected + protected_hands = FALSE + break - if(gloves_are_heavy == FALSE) - to_chat(user, "\The [src] partially cuts into your hand through your gloves as you hit \the [target]!") - if(will_break) - user.visible_message("[user] hit \the [target] with \the [src], shattering it!", "You shatter \the [src] in your hand!") - user.apply_damage(light_glove_d + break_damage, BRUTE, active_hand, 0 ,0, src, src.sharp, src.edge) - playsound(user, pick('sound/effects/Glassbr1.ogg', 'sound/effects/Glassbr2.ogg', 'sound/effects/Glassbr3.ogg'), 30, 1) - qdel(src) - else - user.apply_damage(light_glove_d, BRUTE, active_hand, 0 ,0, src, src.sharp, src.edge) - else + if(user.gloves && !protected_hands) + to_chat(user, "\The [src] partially cuts into your hand through your gloves as you hit \the [target]!") + user.apply_damage(light_glove_d + will_break ? break_damage : 0, BRUTE, active_hand, 0, 0, src, src.sharp, src.edge) // Ternary to include break damage + + else if(!user.gloves) to_chat(user, "\The [src] cuts into your hand as you hit \the [target]!") - if(will_break) - user.visible_message("[user] hit \the [target] with \the [src], shattering it!", "You shatter \the [src] in your hand!") - user.apply_damage(no_glove_d + break_damage, BRUTE, active_hand, 0 ,0, src, src.sharp, src.edge) - playsound(user, pick('sound/effects/Glassbr1.ogg', 'sound/effects/Glassbr2.ogg', 'sound/effects/Glassbr3.ogg'), 30, 1) - qdel(src) - else - user.apply_damage(no_glove_d, BRUTE, active_hand, 0 ,0, src, src.sharp, src.edge) + user.apply_damage(no_glove_d + will_break ? break_damage : 0, BRUTE, active_hand, 0, 0, src, src.sharp, src.edge) + + if(will_break && src.loc == user) // If it's not in our hand anymore + user.visible_message("[user] hit \the [target] with \the [src], shattering it!", "You shatter \the [src] in your hand!") + playsound(user, pick('sound/effects/Glassbr1.ogg', 'sound/effects/Glassbr2.ogg', 'sound/effects/Glassbr3.ogg'), 30, 1) + qdel(src) + return /obj/item/weapon/material/shard/Crossed(AM as mob|obj) ..() + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(isliving(AM)) var/mob/M = AM diff --git a/code/game/objects/items/weapons/material/whetstone.dm b/code/game/objects/items/weapons/material/whetstone.dm index e312680d1b..628f450e3d 100644 --- a/code/game/objects/items/weapons/material/whetstone.dm +++ b/code/game/objects/items/weapons/material/whetstone.dm @@ -8,4 +8,69 @@ force = 3 w_class = ITEMSIZE_SMALL var/repair_amount = 5 - var/repair_time = 40 \ No newline at end of file + var/repair_time = 40 + +/obj/item/weapon/whetstone/attackby(obj/item/I, mob/user) + if(istype(I, /obj/item/stack/material)) + var/obj/item/stack/material/M = I + if(M.amount >= 5) + to_chat(user, "You begin to refine the [src] with [M]...") + if(do_after(user, 70)) + M.use(5) + var/obj/item/SK + SK = new /obj/item/weapon/material/sharpeningkit(get_turf(user), M.material.name) + to_chat(user, "You sharpen and refine the [src] into \a [SK].") + qdel(src) + if(SK) + user.put_in_hands(SK) + else + to_chat(user, "You need 5 [src] to refine it into a sharpening kit.") + +/obj/item/weapon/material/sharpeningkit + name = "sharpening kit" + desc = "A refined, fine grit whetstone, useful for sharpening dull edges, polishing out dents, and, with extra material, replacing an edge." + icon = 'icons/obj/kitchen.dmi' + icon_state = "sharpener" + hitsound = 'sound/weapons/genhit3.ogg' + force_divisor = 0.7 + thrown_force_divisor = 1 + var/repair_amount = 5 + var/repair_time = 40 + var/sharpen_time = 100 + var/uses = 0 + +/obj/item/weapon/material/sharpeningkit/examine(mob/user, distance) + . = ..() + to_chat(user, "There [uses == 1 ? "is" : "are"] [uses] [material] [uses == 1 ? src.material.sheet_singular_name : src.material.sheet_plural_name] left for use.") +/obj/item/weapon/material/sharpeningkit/Initialize() + . = ..() + setrepair() + +/obj/item/weapon/material/sharpeningkit/proc/setrepair() + repair_amount = material.hardness * 0.1 + repair_time = material.weight * 0.5 + sharpen_time = material.weight * 3 + +/obj/item/weapon/material/sharpeningkit/attackby(obj/item/weapon/W, mob/user) + if(istype(W, /obj/item/stack/material)) + var/obj/item/stack/material/S = W + if(S.material == material) + S.use(1) + uses += 1 + to_chat(user, "You add a [S.material.name] [S.material.sheet_singular_name] to [src].") + return + + if(istype(W, /obj/item/weapon/material)) + if(istype(W, /obj/item/weapon/material/sharpeningkit)) + to_chat(user, "Really? Sharpening a [W] with [src]? You goofball.") + return + var/obj/item/weapon/material/M = W + if(uses >= M.w_class*2) + if(M.sharpen(src.material.name, sharpen_time, src, user)) + uses -= M.w_class*2 + return + else + to_chat(user, "Not enough material to sharpen [M]. You need [M.w_class*2] [M.material.sheet_plural_name].") + return + else + to_chat(user, "You can't sharpen [W] with [src]!") diff --git a/code/game/objects/items/weapons/melee/energy.dm b/code/game/objects/items/weapons/melee/energy.dm index d935d4eaa2..2c4fd9949b 100644 --- a/code/game/objects/items/weapons/melee/energy.dm +++ b/code/game/objects/items/weapons/melee/energy.dm @@ -11,17 +11,26 @@ var/lrange = 2 var/lpower = 2 var/lcolor = "#0099FF" - + var/colorable = FALSE + var/rainbow = FALSE // If it uses energy. var/use_cell = FALSE var/hitcost = 120 var/obj/item/weapon/cell/bcell = null var/cell_type = /obj/item/weapon/cell/device + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_melee.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_melee.dmi', + ) /obj/item/weapon/melee/energy/proc/activate(mob/living/user) if(active) return active = 1 + if(rainbow) + item_state = "[icon_state]_blade_rainbow" + else + item_state = "[icon_state]_blade" embed_chance = active_embed_chance force = active_force throwforce = active_throwforce @@ -29,12 +38,14 @@ edge = 1 w_class = active_w_class playsound(user, 'sound/weapons/saberon.ogg', 50, 1) + update_icon() set_light(lrange, lpower, lcolor) /obj/item/weapon/melee/energy/proc/deactivate(mob/living/user) if(!active) return playsound(user, 'sound/weapons/saberoff.ogg', 50, 1) + item_state = "[icon_state]" active = 0 embed_chance = initial(embed_chance) force = initial(force) @@ -42,6 +53,7 @@ sharp = initial(sharp) edge = initial(edge) w_class = initial(w_class) + update_icon() set_light(0,0) /obj/item/weapon/melee/energy/proc/use_charge(var/cost) @@ -102,6 +114,13 @@ return ..() /obj/item/weapon/melee/energy/attackby(obj/item/weapon/W, mob/user) + if(istype(W, /obj/item/device/multitool) && colorable && !active) + if(!rainbow) + rainbow = TRUE + else + rainbow = FALSE + to_chat(user, "You manipulate the color controller in [src].") + update_icon() if(use_cell) if(istype(W, cell_type)) if(!bcell) @@ -125,13 +144,52 @@ /obj/item/weapon/melee/energy/get_cell() return bcell +/obj/item/weapon/melee/energy/update_icon() + . = ..() + var/mutable_appearance/blade_overlay = mutable_appearance(icon, "[icon_state]_blade") + if(colorable) + blade_overlay.color = lcolor + if(rainbow || !colorable) + blade_overlay = mutable_appearance(icon, "[icon_state]_blade_rainbow") + blade_overlay.color = "FFFFFF" + cut_overlays() //So that it doesn't keep stacking overlays non-stop on top of each other + if(active) + add_overlay(blade_overlay) + if(istype(usr,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = usr + H.update_inv_l_hand() + H.update_inv_r_hand() + + + + +/obj/item/weapon/melee/energy/AltClick(mob/living/user) + if(!colorable) //checks if is not colorable + return + if(!in_range(src, user)) //Basic checks to prevent abuse + return + if(user.incapacitated() || !istype(user)) + to_chat(user, "You can't do that right now!") + return + + if(alert("Are you sure you want to recolor your blade?", "Confirm Recolor", "Yes", "No") == "Yes") + var/energy_color_input = input(usr,"","Choose Energy Color",lcolor) as color|null + if(energy_color_input) + lcolor = sanitize_hexcolor(energy_color_input) + update_icon() + +/obj/item/weapon/melee/energy/examine(mob/user) + ..() + to_chat(user, "Alt-click to recolor it.") + /* * Energy Axe */ /obj/item/weapon/melee/energy/axe name = "energy axe" desc = "An energised battle axe." - icon_state = "axe0" + icon_state = "eaxe" + item_state = "eaxe" //active_force = 150 //holy... active_force = 60 active_throwforce = 35 @@ -152,13 +210,11 @@ /obj/item/weapon/melee/energy/axe/activate(mob/living/user) ..() damtype = SEARING - icon_state = "axe1" to_chat(user, "\The [src] is now energised.") /obj/item/weapon/melee/energy/axe/deactivate(mob/living/user) ..() damtype = BRUTE - icon_state = initial(icon_state) to_chat(user, "\The [src] is de-energised. It's just a regular axe now.") /obj/item/weapon/melee/energy/axe/suicide_act(mob/user) @@ -187,7 +243,8 @@ color name = "energy sword" desc = "May the force be within you." - icon_state = "sword0" + icon_state = "esword" + item_state = "esword" active_force = 30 active_throwforce = 20 active_w_class = ITEMSIZE_LARGE @@ -200,9 +257,8 @@ origin_tech = list(TECH_MAGNET = 3, TECH_ILLEGAL = 4) sharp = 1 edge = 1 - var/blade_color - var/random_color = TRUE - var/active_state = "sword" + colorable = TRUE + projectile_parry_chance = 65 @@ -211,30 +267,6 @@ if(!istype(loc,/mob)) deactivate(user) -/obj/item/weapon/melee/energy/sword/New() - if(random_color) - blade_color = pick("red","blue","green","purple","white") - lcolor = blade_color - -/obj/item/weapon/melee/energy/sword/green/New() - blade_color = "green" - lcolor = "#008000" - -/obj/item/weapon/melee/energy/sword/red/New() - blade_color = "red" - lcolor = "#FF0000" - -/obj/item/weapon/melee/energy/sword/blue/New() - blade_color = "blue" - lcolor = "#0000FF" - -/obj/item/weapon/melee/energy/sword/purple/New() - blade_color = "purple" - lcolor = "#800080" - -/obj/item/weapon/melee/energy/sword/white/New() - blade_color = "white" - lcolor = "#FFFFFF" /obj/item/weapon/melee/energy/sword/activate(mob/living/user) if(!active) @@ -242,14 +274,13 @@ ..() attack_verb = list("attacked", "slashed", "stabbed", "sliced", "torn", "ripped", "diced", "cut") - icon_state = "[active_state][blade_color]" + /obj/item/weapon/melee/energy/sword/deactivate(mob/living/user) if(active) to_chat(user, "\The [src] deactivates!") ..() attack_verb = list() - icon_state = initial(icon_state) /obj/item/weapon/melee/energy/sword/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") if(active && default_parry_check(user, attacker, damage_source) && prob(60)) @@ -284,11 +315,10 @@ /obj/item/weapon/melee/energy/sword/pirate name = "energy cutlass" desc = "Arrrr matey." - icon_state = "cutlass0" + icon_state = "cutlass" + item_state = "cutlass" + colorable = TRUE -/obj/item/weapon/melee/energy/sword/pirate/activate(mob/living/user) - ..() - icon_state = "cutlass1" /* *Ionic Rapier @@ -300,8 +330,8 @@ description_info = "This is a dangerous melee weapon that will deliver a moderately powerful electromagnetic pulse to whatever it strikes. \ Striking a lesser robotic entity will compel it to attack you, as well. It also does extra burn damage to robotic entities, but it does \ very little damage to purely organic targets." - icon_state = "ionic_rapier0" - random_color = FALSE + icon_state = "ionrapier" + item_state = "ionrapier" active_force = 5 active_throwforce = 3 active_embed_chance = 0 @@ -312,7 +342,6 @@ lrange = 2 lpower = 2 lcolor = "#0000FF" - active_state = "ionic_rapier" projectile_parry_chance = 30 // It's not specifically designed for cutting and slashing, but it can still, maybe, save your life. /obj/item/weapon/melee/energy/sword/ionic_rapier/afterattack(var/atom/movable/AM, var/mob/living/user, var/proximity) @@ -350,6 +379,7 @@ active_force = 25 armor_penetration = 25 projectile_parry_chance = 40 + colorable = TRUE hitcost = 75 @@ -357,15 +387,14 @@ ..() bcell = new/obj/item/weapon/cell/device/weapon(src) -/* - *Energy Blade - */ +//Energy Blade (ninja uses this) //Can't be activated or deactivated, so no reason to be a subtype of energy /obj/item/weapon/melee/energy/blade name = "energy blade" desc = "A concentrated beam of energy in the shape of a blade. Very stylish... and lethal." icon_state = "blade" + item_state = "blade" force = 40 //Normal attacks deal very high damage - about the same as wielded fire axe armor_penetration = 100 sharp = 1 @@ -448,49 +477,27 @@ return 1 -/* - *Energy Spear - */ +//Energy Spear /obj/item/weapon/melee/energy/spear - name = "energy spear" - desc = "Concentrated energy forming a sharp tip at the end of a long rod." - icon_state = "espear0" - armor_penetration = 75 - sharp = 1 - edge = 1 - force = 5 - throwforce = 10 - throw_speed = 7 - throw_range = 11 - reach = 2 - w_class = ITEMSIZE_LARGE - active_force = 25 - active_throwforce = 30 - active_w_class = ITEMSIZE_HUGE - var/random_color = TRUE - var/tip_color = "" - var/active_state = "espear" + name = "energy spear" + desc = "Concentrated energy forming a sharp tip at the end of a long rod." + icon_state = "espear" + armor_penetration = 75 + sharp = 1 + edge = 1 + force = 5 + throwforce = 10 + throw_speed = 7 + throw_range = 11 + reach = 2 + w_class = ITEMSIZE_LARGE + active_force = 25 + active_throwforce = 30 + active_w_class = ITEMSIZE_HUGE + colorable = TRUE -/obj/item/weapon/melee/energy/spear/New() - if(random_color) - tip_color = pick("red","blue","green","purple") - lcolor = tip_color -/obj/item/weapon/melee/energy/spear/green/New() - tip_color = "green" - lcolor = "#008000" - -/obj/item/weapon/melee/energy/spear/red/New() - tip_color = "red" - lcolor = "#FF0000" - -/obj/item/weapon/melee/energy/spear/blue/New() - tip_color = "blue" - lcolor = "#0000FF" - -/obj/item/weapon/melee/energy/spear/purple/New() - tip_color = "purple" lcolor = "#800080" /obj/item/weapon/melee/energy/spear/activate(mob/living/user) @@ -498,7 +505,6 @@ to_chat(user, "\The [src] is now energised.") ..() attack_verb = list("jabbed", "stabbed", "impaled") - icon_state = "[active_state]-[tip_color]" /obj/item/weapon/melee/energy/spear/deactivate(mob/living/user) @@ -506,7 +512,6 @@ to_chat(user, "\The [src] deactivates!") ..() attack_verb = list("whacked", "beat", "slapped", "thonked") - icon_state = "espear0" /obj/item/weapon/melee/energy/spear/handle_shield(mob/user, var/damage, atom/damage_source = null, mob/attacker = null, var/def_zone = null, var/attack_text = "the attack") if(active && default_parry_check(user, attacker, damage_source) && prob(50)) @@ -516,4 +521,4 @@ spark_system.start() playsound(user.loc, 'sound/weapons/blade1.ogg', 50, 1) return 1 - return 0 \ No newline at end of file + return 0 diff --git a/code/game/objects/items/weapons/shields.dm b/code/game/objects/items/weapons/shields.dm index 5ea586f43d..6d3310cdc4 100644 --- a/code/game/objects/items/weapons/shields.dm +++ b/code/game/objects/items/weapons/shields.dm @@ -115,7 +115,8 @@ name = "energy combat shield" desc = "A shield capable of stopping most projectile and melee attacks. It can be retracted, expanded, and stored anywhere." icon = 'icons/obj/weapons.dmi' - icon_state = "eshield0" // eshield1 for expanded + icon_state = "eshield" + item_state = "eshield" slot_flags = SLOT_EARS flags = NOCONDUCT force = 3.0 @@ -123,9 +124,16 @@ throw_speed = 1 throw_range = 4 w_class = ITEMSIZE_SMALL + var/lrange = 1.5 + var/lpower = 1.5 + var/lcolor = "#006AFF" origin_tech = list(TECH_MATERIAL = 4, TECH_MAGNET = 3, TECH_ILLEGAL = 4) attack_verb = list("shoved", "bashed") var/active = 0 + item_icons = list( + slot_l_hand_str = 'icons/mob/items/lefthand_melee.dmi', + slot_r_hand_str = 'icons/mob/items/righthand_melee.dmi', + ) /obj/item/weapon/shield/energy/handle_shield(mob/user) if(!active) @@ -175,11 +183,33 @@ return /obj/item/weapon/shield/energy/update_icon() - icon_state = "eshield[active]" + var/mutable_appearance/blade_overlay = mutable_appearance(icon, "[icon_state]_blade") + if(lcolor) + blade_overlay.color = lcolor + cut_overlays() //So that it doesn't keep stacking overlays non-stop on top of each other if(active) - set_light(1.5, 1.5, "#006AFF") + add_overlay(blade_overlay) + item_state = "[icon_state]_blade" + set_light(lrange, lpower, lcolor) else set_light(0) + item_state = "[icon_state]" + +/obj/item/weapon/shield/energy/AltClick(mob/living/user) + if(!in_range(src, user)) //Basic checks to prevent abuse + return + if(user.incapacitated() || !istype(user)) + to_chat(user, "You can't do that right now!") + return + if(alert("Are you sure you want to recolor your shield?", "Confirm Recolor", "Yes", "No") == "Yes") + var/energy_color_input = input(usr,"","Choose Energy Color",lcolor) as color|null + if(energy_color_input) + lcolor = sanitize_hexcolor(energy_color_input, desired_format=6, include_crunch=1) + update_icon() + +/obj/item/weapon/shield/energy/examine(mob/user) + ..() + to_chat(user, "Alt-click to recolor it.") /obj/item/weapon/shield/riot/tele name = "telescopic shield" @@ -226,4 +256,4 @@ H.update_inv_r_hand() add_fingerprint(user) - return \ No newline at end of file + return diff --git a/code/game/objects/items/weapons/storage/backpack.dm b/code/game/objects/items/weapons/storage/backpack.dm index 18c60af449..f5ea4ead6f 100644 --- a/code/game/objects/items/weapons/storage/backpack.dm +++ b/code/game/objects/items/weapons/storage/backpack.dm @@ -422,3 +422,10 @@ H.visible_message("\The [src] decides not to unpack \the [src]!", \ "You decide not to unpack \the [src]!") return + +/obj/item/weapon/storage/backpack/satchel/ranger + name = "ranger satchel" + desc = "A satchel designed for the Go Go ERT Rangers series to allow for slightly bigger carry capacity for the ERT-Rangers.\ + Unlike the show claims, it is not a phoron-enhanced satchel of holding with plot-relevant content." + icon = 'icons/obj/clothing/ranger.dmi' + icon_state = "ranger_satchel" \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/backpack_vr.dm b/code/game/objects/items/weapons/storage/backpack_vr.dm index d836d23581..5e121a2b35 100644 --- a/code/game/objects/items/weapons/storage/backpack_vr.dm +++ b/code/game/objects/items/weapons/storage/backpack_vr.dm @@ -128,4 +128,9 @@ /obj/item/weapon/storage/backpack/dufflebag/fluff //Black dufflebag without syndie buffs. name = "plain black dufflebag" desc = "A large dufflebag for holding extra tactical supplies." - icon_state = "duffle_syndie" \ No newline at end of file + icon_state = "duffle_syndie" + +/obj/item/weapon/storage/backpack + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/back.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/back.dmi') diff --git a/code/game/objects/items/weapons/storage/bags_vr.dm b/code/game/objects/items/weapons/storage/bags_vr.dm new file mode 100644 index 0000000000..6f9d0a0b15 --- /dev/null +++ b/code/game/objects/items/weapons/storage/bags_vr.dm @@ -0,0 +1,2 @@ +/obj/item/weapon/storage/bag/chemistry + slot_flags = null diff --git a/code/game/objects/items/weapons/storage/belt.dm b/code/game/objects/items/weapons/storage/belt.dm index f9a7d1e608..ddb8c489f6 100644 --- a/code/game/objects/items/weapons/storage/belt.dm +++ b/code/game/objects/items/weapons/storage/belt.dm @@ -435,3 +435,8 @@ icon_state = "fannypack_yellow" item_state = "fannypack_yellow" +/obj/item/weapon/storage/belt/ranger + name = "ranger belt" + desc = "The fancy utility-belt holding the tools, cuffs and gadgets of the Go Go ERT-Rangers. The belt buckle is not real phoron, but it is still surprisingly comfortable to wear." + icon = 'icons/obj/clothing/ranger.dmi' + icon_state = "ranger_belt" \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/belt_vr.dm b/code/game/objects/items/weapons/storage/belt_vr.dm new file mode 100644 index 0000000000..2e0829c153 --- /dev/null +++ b/code/game/objects/items/weapons/storage/belt_vr.dm @@ -0,0 +1,4 @@ +/obj/item/weapon/storage/belt + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/belt.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/belt.dmi') \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/boxes_vr.dm b/code/game/objects/items/weapons/storage/boxes_vr.dm index f2cbd06aed..8feee76bdd 100644 --- a/code/game/objects/items/weapons/storage/boxes_vr.dm +++ b/code/game/objects/items/weapons/storage/boxes_vr.dm @@ -33,7 +33,7 @@ starts_with = list(/obj/item/device/encryptionkey/headset_com = 7) /obj/item/weapon/storage/box/servicekeys - name = "box of command keys" + name = "box of service keys" desc = "A box full of service keys, for the HoP to give out as necessary." starts_with = list(/obj/item/device/encryptionkey/headset_service = 7) diff --git a/code/game/objects/items/weapons/storage/fancy_yw.dm b/code/game/objects/items/weapons/storage/fancy_yw.dm new file mode 100644 index 0000000000..2da08ec0a7 --- /dev/null +++ b/code/game/objects/items/weapons/storage/fancy_yw.dm @@ -0,0 +1,8 @@ +/obj/item/weapon/storage/fancy/cigarettes/yw + icon = 'icons/obj/cigarettes_yw.dmi' + +/obj/item/weapon/storage/fancy/cigarettes/yw/mauser + name = "\improper pack of f13 cigarettes" + desc = "A packet of 6 f13 brand cigarettes, they somehow have a faint flavor of gunpowder... And mustard gas." + icon_state = "MauserPacket" + brand = "\improper Mauser" \ No newline at end of file diff --git a/code/game/objects/items/weapons/storage/mre.dm b/code/game/objects/items/weapons/storage/mre.dm index c3adc484e0..582af52f43 100644 --- a/code/game/objects/items/weapons/storage/mre.dm +++ b/code/game/objects/items/weapons/storage/mre.dm @@ -185,6 +185,20 @@ MRE Stuff /obj/random/mre/sauce/crayon ) +/obj/item/weapon/storage/mre/menu13 + name = "medical MRE" + meal_desc = "This one is menu 13, vitamin paste & dessert. Only for emergencies." + icon_state = "crayonmre" + starts_with = list( + /obj/item/weapon/reagent_containers/food/snacks/liquidvitamin, + /obj/item/weapon/reagent_containers/food/snacks/liquidvitamin, + /obj/item/weapon/reagent_containers/food/snacks/liquidvitamin, + /obj/item/weapon/reagent_containers/food/snacks/liquidprotein, + /obj/random/mre/drink, + /obj/item/weapon/storage/mrebag/dessert, + /obj/item/weapon/material/kitchen/utensil/spoon/plastic + ) + /obj/item/weapon/storage/mre/random meal_desc = "The menu label is faded out." starts_with = list( diff --git a/code/game/objects/items/weapons/storage/uplink_kits.dm b/code/game/objects/items/weapons/storage/uplink_kits.dm index 4291752587..9624a85ca2 100644 --- a/code/game/objects/items/weapons/storage/uplink_kits.dm +++ b/code/game/objects/items/weapons/storage/uplink_kits.dm @@ -93,6 +93,42 @@ O.update() . = ..() +/obj/item/weapon/storage/box/syndie_kit/imp_aug + name = "boxed augment implant (with injector)" + var/case_type = /obj/item/weapon/implantcase/shades + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/Initialize() + new /obj/item/weapon/implanter(src) + new case_type(src) + . = ..() + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/taser + case_type = /obj/item/weapon/implantcase/taser + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/laser + case_type = /obj/item/weapon/implantcase/laser + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/dart + case_type = /obj/item/weapon/implantcase/dart + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/toolkit + case_type = /obj/item/weapon/implantcase/toolkit + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/medkit + case_type = /obj/item/weapon/implantcase/medkit + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/surge + case_type = /obj/item/weapon/implantcase/surge + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/analyzer + case_type = /obj/item/weapon/implantcase/analyzer + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/sword + case_type = /obj/item/weapon/implantcase/sword + +/obj/item/weapon/storage/box/syndie_kit/imp_aug/sprinter + case_type = /obj/item/weapon/implantcase/sprinter + /obj/item/weapon/storage/box/syndie_kit/space name = "boxed space suit and helmet" starts_with = list( diff --git a/code/game/objects/items/weapons/surgery_tools.dm b/code/game/objects/items/weapons/surgery_tools.dm index f011cd917b..292f047f0f 100644 --- a/code/game/objects/items/weapons/surgery_tools.dm +++ b/code/game/objects/items/weapons/surgery_tools.dm @@ -128,6 +128,15 @@ icon_state = "scalpel_manager_on" force = 7.5 +/obj/item/weapon/surgical/scalpel/ripper + name = "organ pincers" + desc = "A horrifying bladed tool with a large metal spike in its center. The tool is used for rapidly removing organs from hopefully willing patients." + icon_state = "organ_ripper" + item_state = "bone_setter" + force = 15.0 + toolspeed = 0.75 + origin_tech = list(TECH_MATERIAL = 5, TECH_BIO = 3, TECH_ILLEGAL = 2) + /* * Circular Saw */ @@ -147,6 +156,19 @@ sharp = 1 edge = 1 +/obj/item/weapon/surgical/circular_saw/manager + name = "energetic bone diverter" + desc = "For heavy duty cutting (and sealing), with science!" + icon_state = "adv_saw" + item_state = "saw3" + hitsound = 'sound/weapons/emitter2.ogg' + damtype = SEARING + w_class = ITEMSIZE_LARGE + origin_tech = list(TECH_BIO = 4, TECH_MATERIAL = 6, TECH_MAGNET = 6) + matter = list(DEFAULT_WALL_MATERIAL = 12500) + attack_verb = list("attacked", "slashed", "seared", "cut") + toolspeed = 0.75 + //misc, formerly from code/defines/weapons.dm /obj/item/weapon/surgical/bonegel name = "bone gel" @@ -245,4 +267,4 @@ /obj/item/weapon/surgical/bone_clamp/alien icon = 'icons/obj/abductor.dmi' - toolspeed = 0.75 \ No newline at end of file + toolspeed = 0.75 diff --git a/code/game/objects/items/weapons/tools/crowbar.dm b/code/game/objects/items/weapons/tools/crowbar.dm index 73b62f0741..fab0a6fb98 100644 --- a/code/game/objects/items/weapons/tools/crowbar.dm +++ b/code/game/objects/items/weapons/tools/crowbar.dm @@ -64,7 +64,7 @@ /obj/item/weapon/tool/crowbar/hybrid/is_crowbar() if(prob(10)) var/turf/T = get_turf(src) - radiation_repository.radiate(get_turf(src), 5) + SSradiation.radiate(get_turf(src), 5) T.visible_message("\The [src] shudders!") return FALSE return TRUE diff --git a/code/game/objects/items/weapons/tools/screwdriver.dm b/code/game/objects/items/weapons/tools/screwdriver.dm index a9bdd6cee8..1969987ff9 100644 --- a/code/game/objects/items/weapons/tools/screwdriver.dm +++ b/code/game/objects/items/weapons/tools/screwdriver.dm @@ -108,7 +108,7 @@ /obj/item/weapon/tool/screwdriver/hybrid/is_screwdriver() if(prob(10)) var/turf/T = get_turf(src) - radiation_repository.radiate(get_turf(src), 5) + SSradiation.radiate(get_turf(src), 5) T.visible_message("\The [src] shudders!") return FALSE return TRUE diff --git a/code/game/objects/items/weapons/tools/wirecutters.dm b/code/game/objects/items/weapons/tools/wirecutters.dm index 181c786c4c..4d61609db4 100644 --- a/code/game/objects/items/weapons/tools/wirecutters.dm +++ b/code/game/objects/items/weapons/tools/wirecutters.dm @@ -88,7 +88,7 @@ /obj/item/weapon/tool/wirecutters/hybrid/is_wirecutter() if(prob(10)) var/turf/T = get_turf(src) - radiation_repository.radiate(get_turf(src), 5) + SSradiation.radiate(get_turf(src), 5) T.visible_message("\The [src] shudders!") return FALSE return TRUE diff --git a/code/game/objects/items/weapons/tools/wrench.dm b/code/game/objects/items/weapons/tools/wrench.dm index 652e32cf75..3f02a2f8b3 100644 --- a/code/game/objects/items/weapons/tools/wrench.dm +++ b/code/game/objects/items/weapons/tools/wrench.dm @@ -44,7 +44,7 @@ /obj/item/weapon/tool/wrench/hybrid/is_wrench() if(prob(10)) var/turf/T = get_turf(src) - radiation_repository.radiate(get_turf(src), 5) + SSradiation.radiate(get_turf(src), 5) T.visible_message("\The [src] shudders!") return FALSE return TRUE diff --git a/code/game/objects/items/weapons/traps.dm b/code/game/objects/items/weapons/traps.dm index 1e63201f4e..1febf6b1ae 100644 --- a/code/game/objects/items/weapons/traps.dm +++ b/code/game/objects/items/weapons/traps.dm @@ -106,6 +106,12 @@ can_buckle = initial(can_buckle) /obj/item/weapon/beartrap/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(deployed && isliving(AM)) var/mob/living/L = AM if(L.m_intent == "run") diff --git a/code/game/objects/structures/catwalk.dm b/code/game/objects/structures/catwalk.dm index 20fd025ea9..5c606422d7 100644 --- a/code/game/objects/structures/catwalk.dm +++ b/code/game/objects/structures/catwalk.dm @@ -87,6 +87,12 @@ return ..() /obj/structure/catwalk/Crossed() + //VOREStation Edit begin: SHADEKIN + var/mob/SK = usr + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN . = ..() if(isliving(usr)) playsound(src, pick('sound/effects/footstep/catwalk1.ogg', 'sound/effects/footstep/catwalk2.ogg', 'sound/effects/footstep/catwalk3.ogg', 'sound/effects/footstep/catwalk4.ogg', 'sound/effects/footstep/catwalk5.ogg'), 25, 1) diff --git a/code/game/objects/structures/girders.dm b/code/game/objects/structures/girders.dm index 072dd43de6..aab0ecf7f0 100644 --- a/code/game/objects/structures/girders.dm +++ b/code/game/objects/structures/girders.dm @@ -38,7 +38,7 @@ if(!total_radiation) return - radiation_repository.radiate(src, total_radiation) + SSradiation.radiate(src, total_radiation) return total_radiation @@ -62,7 +62,7 @@ /obj/structure/girder/update_icon() if(anchored) - icon_state = "girder" + icon_state = initial(icon_state) else icon_state = "displaced" @@ -320,6 +320,7 @@ name = "column" icon= 'icons/obj/cult.dmi' icon_state= "cultgirder" + max_health = 250 health = 250 cover = 70 girder_material = "cult" @@ -354,6 +355,13 @@ new /obj/effect/decal/remains/human(get_turf(src)) dismantle() +/obj/structure/girder/resin + name = "soft girder" + icon_state = "girder_resin" + max_health = 225 + health = 225 + cover = 60 + girder_material = "resin" /obj/structure/girder/rcd_values(mob/living/user, obj/item/weapon/rcd/the_rcd, passed_mode) var/turf/simulated/T = get_turf(src) diff --git a/code/game/objects/structures/simple_doors.dm b/code/game/objects/structures/simple_doors.dm index 431ef0cdbb..60b94841ea 100644 --- a/code/game/objects/structures/simple_doors.dm +++ b/code/game/objects/structures/simple_doors.dm @@ -196,7 +196,7 @@ /obj/structure/simple_door/process() if(!material.radioactivity) return - radiation_repository.radiate(src, round(material.radioactivity/3)) + SSradiation.radiate(src, round(material.radioactivity/3)) /obj/structure/simple_door/iron/New(var/newloc,var/material_name) ..(newloc, "iron") diff --git a/code/game/sound.dm b/code/game/sound.dm index b1f0c32f66..cd3b140bd9 100644 --- a/code/game/sound.dm +++ b/code/game/sound.dm @@ -137,6 +137,46 @@ if ("button") soundin = pick('sound/machines/button1.ogg','sound/machines/button2.ogg','sound/machines/button3.ogg','sound/machines/button4.ogg') if ("switch") soundin = pick('sound/machines/switch1.ogg','sound/machines/switch2.ogg','sound/machines/switch3.ogg','sound/machines/switch4.ogg') if ("casing_sound") soundin = pick('sound/weapons/casingfall1.ogg','sound/weapons/casingfall2.ogg','sound/weapons/casingfall3.ogg') + //VORESTATION EDIT - vore sounds for better performance + if ("hunger_sounds") soundin = pick('sound/vore/growl1.ogg','sound/vore/growl2.ogg','sound/vore/growl3.ogg','sound/vore/growl4.ogg','sound/vore/growl5.ogg') + + if("classic_digestion_sounds") soundin = pick( + 'sound/vore/digest1.ogg','sound/vore/digest2.ogg','sound/vore/digest3.ogg','sound/vore/digest4.ogg', + 'sound/vore/digest5.ogg','sound/vore/digest6.ogg','sound/vore/digest7.ogg','sound/vore/digest8.ogg', + 'sound/vore/digest9.ogg','sound/vore/digest10.ogg','sound/vore/digest11.ogg','sound/vore/digest12.ogg') + if("classic_death_sounds") soundin = pick( + 'sound/vore/death1.ogg','sound/vore/death2.ogg','sound/vore/death3.ogg','sound/vore/death4.ogg','sound/vore/death5.ogg', + 'sound/vore/death6.ogg','sound/vore/death7.ogg','sound/vore/death8.ogg','sound/vore/death9.ogg','sound/vore/death10.ogg') + if("classic_struggle_sounds") soundin = pick('sound/vore/squish1.ogg','sound/vore/squish2.ogg','sound/vore/squish3.ogg','sound/vore/squish4.ogg') + + if("fancy_prey_struggle") soundin = pick( + 'sound/vore/sunesound/prey/struggle_01.ogg','sound/vore/sunesound/prey/struggle_02.ogg','sound/vore/sunesound/prey/struggle_03.ogg', + 'sound/vore/sunesound/prey/struggle_04.ogg','sound/vore/sunesound/prey/struggle_05.ogg') + if("fancy_digest_pred") soundin = pick( + 'sound/vore/sunesound/pred/digest_01.ogg','sound/vore/sunesound/pred/digest_02.ogg','sound/vore/sunesound/pred/digest_03.ogg', + 'sound/vore/sunesound/pred/digest_04.ogg','sound/vore/sunesound/pred/digest_05.ogg','sound/vore/sunesound/pred/digest_06.ogg', + 'sound/vore/sunesound/pred/digest_07.ogg','sound/vore/sunesound/pred/digest_08.ogg','sound/vore/sunesound/pred/digest_09.ogg', + 'sound/vore/sunesound/pred/digest_10.ogg','sound/vore/sunesound/pred/digest_11.ogg','sound/vore/sunesound/pred/digest_12.ogg', + 'sound/vore/sunesound/pred/digest_13.ogg','sound/vore/sunesound/pred/digest_14.ogg','sound/vore/sunesound/pred/digest_15.ogg', + 'sound/vore/sunesound/pred/digest_16.ogg','sound/vore/sunesound/pred/digest_17.ogg','sound/vore/sunesound/pred/digest_18.ogg') + if("fancy_death_pred") soundin = pick( + 'sound/vore/sunesound/pred/death_01.ogg','sound/vore/sunesound/pred/death_02.ogg','sound/vore/sunesound/pred/death_03.ogg', + 'sound/vore/sunesound/pred/death_04.ogg','sound/vore/sunesound/pred/death_05.ogg','sound/vore/sunesound/pred/death_06.ogg', + 'sound/vore/sunesound/pred/death_07.ogg','sound/vore/sunesound/pred/death_08.ogg','sound/vore/sunesound/pred/death_09.ogg', + 'sound/vore/sunesound/pred/death_10.ogg') + if("fancy_digest_prey") soundin = pick( + 'sound/vore/sunesound/prey/digest_01.ogg','sound/vore/sunesound/prey/digest_02.ogg','sound/vore/sunesound/prey/digest_03.ogg', + 'sound/vore/sunesound/prey/digest_04.ogg','sound/vore/sunesound/prey/digest_05.ogg','sound/vore/sunesound/prey/digest_06.ogg', + 'sound/vore/sunesound/prey/digest_07.ogg','sound/vore/sunesound/prey/digest_08.ogg','sound/vore/sunesound/prey/digest_09.ogg', + 'sound/vore/sunesound/prey/digest_10.ogg','sound/vore/sunesound/prey/digest_11.ogg','sound/vore/sunesound/prey/digest_12.ogg', + 'sound/vore/sunesound/prey/digest_13.ogg','sound/vore/sunesound/prey/digest_14.ogg','sound/vore/sunesound/prey/digest_15.ogg', + 'sound/vore/sunesound/prey/digest_16.ogg','sound/vore/sunesound/prey/digest_17.ogg','sound/vore/sunesound/prey/digest_18.ogg') + if("fancy_death_prey") soundin = pick( + 'sound/vore/sunesound/prey/death_01.ogg','sound/vore/sunesound/prey/death_02.ogg','sound/vore/sunesound/prey/death_03.ogg', + 'sound/vore/sunesound/prey/death_04.ogg','sound/vore/sunesound/prey/death_05.ogg','sound/vore/sunesound/prey/death_06.ogg', + 'sound/vore/sunesound/prey/death_07.ogg','sound/vore/sunesound/prey/death_08.ogg','sound/vore/sunesound/prey/death_09.ogg', + 'sound/vore/sunesound/prey/death_10.ogg') + //END VORESTATION EDIT return soundin //Are these even used? diff --git a/code/game/turfs/simulated/wall_attacks.dm b/code/game/turfs/simulated/wall_attacks.dm index bd6adfe32f..676ad392f0 100644 --- a/code/game/turfs/simulated/wall_attacks.dm +++ b/code/game/turfs/simulated/wall_attacks.dm @@ -7,7 +7,7 @@ if(can_open == WALL_OPENING) return - radiation_repository.resistance_cache.Remove(src) + SSradiation.resistance_cache.Remove(src) if(density) can_open = WALL_OPENING @@ -93,8 +93,9 @@ if(..()) return 1 if(!can_open) - to_chat(user, "You push the wall, but nothing happens.") - playsound(src, 'sound/weapons/Genhit.ogg', 25, 1) + if(!material.wall_touch_special(src, user)) + to_chat(user, "You push the wall, but nothing happens.") + playsound(src, 'sound/weapons/Genhit.ogg', 25, 1) else toggle_open(user) return 0 diff --git a/code/game/turfs/simulated/wall_icon.dm b/code/game/turfs/simulated/wall_icon.dm index b8a0980de4..f277ea79f5 100644 --- a/code/game/turfs/simulated/wall_icon.dm +++ b/code/game/turfs/simulated/wall_icon.dm @@ -26,7 +26,7 @@ else if(material.opacity < 0.5 && opacity) set_light(0) - radiation_repository.resistance_cache.Remove(src) + SSradiation.resistance_cache.Remove(src) update_connections(1) update_icon() diff --git a/code/game/turfs/simulated/wall_types.dm b/code/game/turfs/simulated/wall_types.dm index b7dff4c4c5..5f0fb77f62 100644 --- a/code/game/turfs/simulated/wall_types.dm +++ b/code/game/turfs/simulated/wall_types.dm @@ -59,6 +59,9 @@ /turf/simulated/wall/snowbrick/New(var/newloc) ..(newloc,"packed snow") +/turf/simulated/wall/resin/New(var/newloc) + ..(newloc,"resin",null,"resin") + // Kind of wondering if this is going to bite me in the butt. /turf/simulated/wall/skipjack/New(var/newloc) ..(newloc,"alienalloy") diff --git a/code/game/turfs/simulated/walls.dm b/code/game/turfs/simulated/walls.dm index 1847767083..bf5f711b20 100644 --- a/code/game/turfs/simulated/walls.dm +++ b/code/game/turfs/simulated/walls.dm @@ -274,7 +274,7 @@ if(!total_radiation) return - radiation_repository.radiate(src, total_radiation) + SSradiation.radiate(src, total_radiation) return total_radiation /turf/simulated/wall/proc/burn(temperature) diff --git a/code/game/turfs/turf_changing.dm b/code/game/turfs/turf_changing.dm index 8a0d7852f5..cb3496a96b 100644 --- a/code/game/turfs/turf_changing.dm +++ b/code/game/turfs/turf_changing.dm @@ -28,7 +28,7 @@ if(N == /turf/space) var/turf/below = GetBelow(src) - if(istype(below) && (air_master.has_valid_zone(below) || air_master.has_valid_zone(src)) && !istype(below, /turf/unsimulated/wall)) // VOREStation Edit: Weird open space + if(istype(below) && (air_master.has_valid_zone(below) || air_master.has_valid_zone(src)) && (!istype(below, /turf/unsimulated/wall) && !istype(below, /turf/simulated/sky))) // VOREStation Edit: Weird open space N = /turf/simulated/open var/obj/fire/old_fire = fire diff --git a/code/game/verbs/ooc.dm b/code/game/verbs/ooc.dm index 0c6fa0fed7..b75de6685e 100644 --- a/code/game/verbs/ooc.dm +++ b/code/game/verbs/ooc.dm @@ -9,28 +9,28 @@ if(!mob) return if(IsGuestKey(key)) - src << "Guests may not use OOC." + to_chat(src, "Guests may not use OOC.") return msg = sanitize(msg) if(!msg) return if(!is_preference_enabled(/datum/client_preference/show_ooc)) - src << "You have OOC muted." + to_chat(src, "You have OOC muted.") return if(!holder) if(!config.ooc_allowed) - src << "OOC is globally muted." + to_chat(src, "OOC is globally muted.") return if(!config.dooc_allowed && (mob.stat == DEAD)) usr << "OOC for dead mobs has been turned off." return if(prefs.muted & MUTE_OOC) - src << "You cannot use OOC (muted)." + to_chat(src, "You cannot use OOC (muted).") return if(findtext(msg, "byond://")) - src << "Advertising other servers is not allowed." + to_chat(src, "Advertising other servers is not allowed.") log_admin("[key_name(src)] has attempted to advertise in OOC: [msg]") message_admins("[key_name_admin(src)] has attempted to advertise in OOC: [msg]") return @@ -86,7 +86,7 @@ return if(IsGuestKey(key)) - src << "Guests may not use OOC." + to_chat(src, "Guests may not use OOC.") return msg = sanitize(msg) @@ -94,21 +94,21 @@ return if(!is_preference_enabled(/datum/client_preference/show_looc)) - src << "You have LOOC muted." + to_chat(src, "You have LOOC muted.") return if(!holder) if(!config.looc_allowed) - src << "LOOC is globally muted." + to_chat(src, "LOOC is globally muted.") return if(!config.dooc_allowed && (mob.stat == DEAD)) usr << "OOC for dead mobs has been turned off." return if(prefs.muted & MUTE_OOC) - src << "You cannot use OOC (muted)." + to_chat(src, "You cannot use OOC (muted).") return if(findtext(msg, "byond://")) - src << "Advertising other servers is not allowed." + to_chat(src, "Advertising other servers is not allowed.") log_admin("[key_name(src)] has attempted to advertise in OOC: [msg]") message_admins("[key_name_admin(src)] has attempted to advertise in OOC: [msg]") return diff --git a/code/game/verbs/suicide.dm b/code/game/verbs/suicide.dm index 4a40ea97cb..5a6bfefdb4 100644 --- a/code/game/verbs/suicide.dm +++ b/code/game/verbs/suicide.dm @@ -4,27 +4,27 @@ set hidden = 1 if (stat == DEAD) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (!ticker) - src << "You can't commit suicide before the game starts!" + to_chat(src, "You can't commit suicide before the game starts!") return if(!player_is_antag(mind)) message_admins("[ckey] has tried to suicide, but they were not permitted due to not being antagonist as human.", 1) - src << "No. Adminhelp if there is a legitimate reason." + to_chat(src, "No. Adminhelp if there is a legitimate reason.") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") if(confirm == "Yes") if(!canmove || restrained()) //just while I finish up the new 'fun' suiciding verb. This is to prevent metagaming via suicide - src << "You can't commit suicide whilst restrained! ((You can type Ghost instead however.))" + to_chat(src, "You can't commit suicide whilst restrained! ((You can type Ghost instead however.))") return suiciding = 15 does_not_breathe = 0 //Prevents ling-suicide zombies, or something @@ -92,15 +92,15 @@ set hidden = 1 if (stat == 2) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (!ticker) - src << "You can't commit suicide before the game starts!" + to_chat(src, "You can't commit suicide before the game starts!") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") @@ -116,11 +116,11 @@ set hidden = 1 if (stat == 2) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") @@ -136,11 +136,11 @@ set hidden = 1 if (stat == 2) - src << "You're already dead!" + to_chat(src, "You're already dead!") return if (suiciding) - src << "You're already committing suicide! Be patient!" + to_chat(src, "You're already committing suicide! Be patient!") return var/confirm = alert("Are you sure you want to commit suicide?", "Confirm Suicide", "Yes", "No") @@ -165,4 +165,4 @@ M.show_message("[src] flashes a message across its screen, \"Wiping core files. Please acquire a new personality to continue using pAI device functions.\"", 3, "[src] bleeps electronically.", 2) death(0) else - src << "Aborting suicide attempt." + to_chat(src, "Aborting suicide attempt.") diff --git a/code/game/verbs/who.dm b/code/game/verbs/who.dm index c030e25649..a8100038a8 100644 --- a/code/game/verbs/who.dm +++ b/code/game/verbs/who.dm @@ -171,7 +171,7 @@ num_event_managers_online++ if(config.admin_irc) - src << "Adminhelps are also sent to IRC. If no admins are available in game try anyway and an admin on IRC may see it and respond." + to_chat(src, "Adminhelps are also sent to IRC. If no admins are available in game try anyway and an admin on IRC may see it and respond.") msg = "Current Admins ([num_admins_online]):\n" + msg if(config.show_mods) diff --git a/code/game/world.dm b/code/game/world.dm index 075929b799..da0e2ae371 100644 --- a/code/game/world.dm +++ b/code/game/world.dm @@ -57,8 +57,8 @@ populate_robolimb_list() //Must be done now, otherwise ZAS zones and lighting overlays need to be recreated. - createRandomZlevel() - + //createRandomZlevel() //VOREStation Removal: Deprecated + processScheduler = new master_controller = new /datum/controller/game_controller() diff --git a/code/modules/admin/ToRban.dm b/code/modules/admin/ToRban.dm index d127bfe6f4..f4ddd3e3f2 100644 --- a/code/modules/admin/ToRban.dm +++ b/code/modules/admin/ToRban.dm @@ -72,16 +72,16 @@ var/choice = input(src,"Please select an IP address to remove from the ToR banlist:","Remove ToR ban",null) as null|anything in F.dir if(choice) F.dir.Remove(choice) - src << "Address removed" + to_chat(src, "Address removed") if("remove all") - src << "[TORFILE] was [fdel(TORFILE)?"":"not "]removed." + to_chat(src, "[TORFILE] was [fdel(TORFILE)?"":"not "]removed.") if("find") var/input = input(src,"Please input an IP address to search for:","Find ToR ban",null) as null|text if(input) if(ToRban_isbanned(input)) - src << "Address is a known ToR address" + to_chat(src, "Address is a known ToR address") else - src << "Address is not a known ToR address" + to_chat(src, "Address is not a known ToR address") return #undef TORFILE diff --git a/code/modules/admin/admin.dm b/code/modules/admin/admin.dm index 8daa899692..671520fbf8 100644 --- a/code/modules/admin/admin.dm +++ b/code/modules/admin/admin.dm @@ -1305,7 +1305,7 @@ var/datum/announcement/minor/admin_min_announcer = new set desc = "Should fix any mob sprite update errors." if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(istype(H)) diff --git a/code/modules/admin/admin_investigate.dm b/code/modules/admin/admin_investigate.dm index 1c90383f40..12a84346b3 100644 --- a/code/modules/admin/admin_investigate.dm +++ b/code/modules/admin/admin_investigate.dm @@ -34,7 +34,7 @@ if("singulo", "telesci") //general one-round-only stuff var/F = investigate_subject2file(subject) if(!F) - src << "Error: admin_investigate: [INVESTIGATE_DIR][subject] is an invalid path or cannot be accessed." + to_chat(src, "Error: admin_investigate: [INVESTIGATE_DIR][subject] is an invalid path or cannot be accessed.") return src << browse(F,"window=investigate[subject];size=800x300") @@ -43,8 +43,8 @@ if(href_logfile) src << browse(href_logfile,"window=investigate[subject];size=800x300") else - src << "Error: admin_investigate: No href logfile found." + to_chat(src, "Error: admin_investigate: No href logfile found.") return else - src << "Error: admin_investigate: Href Logging is not on." + to_chat(src, "Error: admin_investigate: Href Logging is not on.") return diff --git a/code/modules/admin/admin_memo.dm b/code/modules/admin/admin_memo.dm index 4bcaf10d9c..24ecba7c01 100644 --- a/code/modules/admin/admin_memo.dm +++ b/code/modules/admin/admin_memo.dm @@ -22,7 +22,7 @@ return if("") F.dir.Remove(ckey) - src << "Memo removed" + to_chat(src, "Memo removed") return if( findtext(memo,"Admin Memo by [F[ckey]]" + to_chat(src, "
Admin Memo by [F[ckey]]
") //delete your own or somebody else's memo /client/proc/admin_memo_delete() @@ -48,7 +48,7 @@ ckey = src.ckey if(ckey) F.dir.Remove(ckey) - src << "Removed Memo created by [ckey]." + to_chat(src, "Removed Memo created by [ckey].") #undef MEMOFILE #undef ENABLE_MEMOS \ No newline at end of file diff --git a/code/modules/admin/admin_report.dm b/code/modules/admin/admin_report.dm index c5cff737ee..40a96cb100 100644 --- a/code/modules/admin/admin_report.dm +++ b/code/modules/admin/admin_report.dm @@ -149,7 +149,8 @@ client/proc/mark_report_done(ID as num) for(var/datum/admin_report/N in reports) if(N.ID == ID) found = N - if(!found) src << "* An error occured, sorry." + if(!found) + to_chat(src, "* An error occured, sorry.") found.done = 1 @@ -158,7 +159,7 @@ client/proc/mark_report_done(ID as num) client/proc/edit_report(ID as num) if(!src.holder || src.holder.level < 0) - src << "You tried to modify the news, but you're not an admin!" + to_chat(src, "You tried to modify the news, but you're not an admin!") return var/savefile/Reports = new("data/reports.sav") @@ -170,7 +171,8 @@ client/proc/edit_report(ID as num) for(var/datum/admin_report/N in reports) if(N.ID == ID) found = N - if(!found) src << "* An error occured, sorry." + if(!found) + to_chat(src, "* An error occured, sorry.") var/body = input(src.mob, "Enter a body for the news", "Body") as null|message if(!body) return diff --git a/code/modules/admin/admin_verbs.dm b/code/modules/admin/admin_verbs.dm index 4d4bffd2b6..9924e3dce7 100644 --- a/code/modules/admin/admin_verbs.dm +++ b/code/modules/admin/admin_verbs.dm @@ -452,7 +452,7 @@ var/list/admin_verbs_event_manager = list( verbs.Remove(/client/proc/hide_most_verbs, admin_verbs_hideable) verbs += /client/proc/show_verbs - src << "Most of your adminverbs have been hidden." + to_chat(src, "Most of your adminverbs have been hidden.") feedback_add_details("admin_verb","HMV") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -463,7 +463,7 @@ var/list/admin_verbs_event_manager = list( remove_admin_verbs() verbs += /client/proc/show_verbs - src << "Almost all of your adminverbs have been hidden." + to_chat(src, "Almost all of your adminverbs have been hidden.") feedback_add_details("admin_verb","TAVVH") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -474,7 +474,7 @@ var/list/admin_verbs_event_manager = list( verbs -= /client/proc/show_verbs add_admin_verbs() - src << "All of your adminverbs are now visible." + to_chat(src, "All of your adminverbs are now visible.") feedback_add_details("admin_verb","TAVVS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -494,7 +494,7 @@ var/list/admin_verbs_event_manager = list( feedback_add_details("admin_verb","P") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! else if(istype(mob,/mob/new_player)) - src << "Error: Aghost: Can't admin-ghost whilst in the lobby. Join or Observe first." + to_chat(src, "Error: Aghost: Can't admin-ghost whilst in the lobby. Join or Observe first.") else //ghostize var/mob/body = mob @@ -656,7 +656,7 @@ var/list/admin_verbs_event_manager = list( else D = preferences_datums[warned_ckey] if(!D) - src << "Error: warn(): No such ckey found." + to_chat(src, "Error: warn(): No such ckey found.") return if(++D.warns >= MAX_WARNS) //uh ohhhh...you'reee iiiiin trouuuubble O:) @@ -819,7 +819,7 @@ var/list/admin_verbs_event_manager = list( deadmin_holder.reassociate() log_admin("[src] re-admined themself.") message_admins("[src] re-admined themself.", 1) - src << "You now have the keys to control the planet, or atleast a small space station" + to_chat(src, "You now have the keys to control the planet, or atleast a small space station") verbs -= /client/proc/readmin_self /client/proc/deadmin_self() @@ -831,7 +831,7 @@ var/list/admin_verbs_event_manager = list( log_admin("[src] deadmined themself.") message_admins("[src] deadmined themself.", 1) deadmin() - src << "You are now a normal player." + to_chat(src, "You are now a normal player.") verbs |= /client/proc/readmin_self feedback_add_details("admin_verb","DAS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -842,10 +842,10 @@ var/list/admin_verbs_event_manager = list( if(config) if(config.log_hrefs) config.log_hrefs = 0 - src << "Stopped logging hrefs" + to_chat(src, "Stopped logging hrefs") else config.log_hrefs = 1 - src << "Started logging hrefs" + to_chat(src, "Started logging hrefs") /client/proc/check_ai_laws() set name = "Check AI Laws" @@ -1040,11 +1040,11 @@ var/list/admin_verbs_event_manager = list( if(config) if(config.cult_ghostwriter) config.cult_ghostwriter = 0 - src << "Disallowed ghost writers." + to_chat(src, "Disallowed ghost writers.") message_admins("Admin [key_name_admin(usr)] has disabled ghost writers.", 1) else config.cult_ghostwriter = 1 - src << "Enabled ghost writers." + to_chat(src, "Enabled ghost writers.") message_admins("Admin [key_name_admin(usr)] has enabled ghost writers.", 1) /client/proc/toggledrones() @@ -1054,11 +1054,11 @@ var/list/admin_verbs_event_manager = list( if(config) if(config.allow_drone_spawn) config.allow_drone_spawn = 0 - src << "Disallowed maint drones." + to_chat(src, "Disallowed maint drones.") message_admins("Admin [key_name_admin(usr)] has disabled maint drones.", 1) else config.allow_drone_spawn = 1 - src << "Enabled maint drones." + to_chat(src, "Enabled maint drones.") message_admins("Admin [key_name_admin(usr)] has enabled maint drones.", 1) /client/proc/man_up(mob/T as mob in mob_list) diff --git a/code/modules/admin/ckey_vr.dm b/code/modules/admin/ckey_vr.dm index 90463eafcc..a46a4cdc07 100644 --- a/code/modules/admin/ckey_vr.dm +++ b/code/modules/admin/ckey_vr.dm @@ -4,7 +4,7 @@ set name = "Set CKey" set desc = "Mob to teleport" if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/list/keys = list() diff --git a/code/modules/admin/topic.dm b/code/modules/admin/topic.dm index ca971c9b65..8a3022f989 100644 --- a/code/modules/admin/topic.dm +++ b/code/modules/admin/topic.dm @@ -1896,7 +1896,7 @@ else if(href_list["cryoplayer"]) if(!check_rights(R_ADMIN)) return - var/mob/M = locate(href_list["cryoplayer"]) + var/mob/living/carbon/M = locate(href_list["cryoplayer"]) //VOREStation edit from just an all mob check to mob/living/carbon if(!istype(M)) to_chat(usr,"Mob doesn't exist!") return diff --git a/code/modules/admin/verbs/adminjump.dm b/code/modules/admin/verbs/adminjump.dm index 56af4e7e15..642aa456cb 100644 --- a/code/modules/admin/verbs/adminjump.dm +++ b/code/modules/admin/verbs/adminjump.dm @@ -91,7 +91,7 @@ keys += M.client var/selection = input("Please, select a player!", "Admin Jumping", null, null) as null|anything in sortKey(keys) if(!selection) - src << "No keys found." + to_chat(src, "No keys found.") return var/mob/M = selection:mob log_admin("[key_name(usr)] jumped to [key_name(M)]") diff --git a/code/modules/admin/verbs/atmosdebug.dm b/code/modules/admin/verbs/atmosdebug.dm index 083789e550..cc77c43cd0 100644 --- a/code/modules/admin/verbs/atmosdebug.dm +++ b/code/modules/admin/verbs/atmosdebug.dm @@ -3,7 +3,7 @@ set name = "Check Piping" set background = 1 if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return feedback_add_details("admin_verb","CP") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! @@ -44,7 +44,7 @@ set category = "Mapping" set name = "Check Power" if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return feedback_add_details("admin_verb","CPOW") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/admin/verbs/custom_event.dm b/code/modules/admin/verbs/custom_event.dm index 35931f8e54..987eb89c29 100644 --- a/code/modules/admin/verbs/custom_event.dm +++ b/code/modules/admin/verbs/custom_event.dm @@ -4,7 +4,7 @@ set name = "Change Custom Event" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/input = sanitize(input(usr, "Enter the description of the custom event. Be descriptive. To cancel the event, make this blank or hit cancel.", "Custom Event", custom_event_msg) as message|null, MAX_PAPER_MESSAGE_LEN, extra = 0) @@ -30,11 +30,11 @@ set name = "Custom Event Info" if(!custom_event_msg || custom_event_msg == "") - src << "There currently is no known custom event taking place." - src << "Keep in mind: it is possible that an admin has not properly set this." + to_chat(src, "There currently is no known custom event taking place.") + to_chat(src, "Keep in mind: it is possible that an admin has not properly set this.") return - src << "

Custom Event

" - src << "

A custom event is taking place. OOC Info:

" - src << "[custom_event_msg]" - src << "
" + to_chat(src, "

Custom Event

") + to_chat(src, "

A custom event is taking place. OOC Info:

") + to_chat(src, "[custom_event_msg]") + to_chat(src, "
") diff --git a/code/modules/admin/verbs/deadsay.dm b/code/modules/admin/verbs/deadsay.dm index 11193a3f09..cc70c43876 100644 --- a/code/modules/admin/verbs/deadsay.dm +++ b/code/modules/admin/verbs/deadsay.dm @@ -3,16 +3,16 @@ set name = "Dsay" //Gave this shit a shorter name so you only have to time out "dsay" rather than "dead say" to use it --NeoFite set hidden = 1 if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!src.mob) return if(prefs.muted & MUTE_DEADCHAT) - src << "You cannot send DSAY messages (muted)." + to_chat(src, "You cannot send DSAY messages (muted).") return if(!is_preference_enabled(/datum/client_preference/show_dsay)) - src << "You have deadchat muted." + to_chat(src, "You have deadchat muted.") return if (src.handle_spam_prevention(msg,MUTE_DEADCHAT)) diff --git a/code/modules/admin/verbs/debug.dm b/code/modules/admin/verbs/debug.dm index 11541128c5..6a9405fef6 100644 --- a/code/modules/admin/verbs/debug.dm +++ b/code/modules/admin/verbs/debug.dm @@ -562,7 +562,7 @@ SMES.output_level = 75000 if(!found_the_pump && response == "Setup Completely") - src << "Unable to locate air supply to fill up with coolant, adding some coolant around the supermatter" + to_chat(src, "Unable to locate air supply to fill up with coolant, adding some coolant around the supermatter") var/turf/simulated/T = SM.loc T.zone.air.gas["nitrogen"] += 450 T.zone.air.temperature = 50 diff --git a/code/modules/admin/verbs/diagnostics.dm b/code/modules/admin/verbs/diagnostics.dm index 9fdf39c0d1..5199f8455f 100644 --- a/code/modules/admin/verbs/diagnostics.dm +++ b/code/modules/admin/verbs/diagnostics.dm @@ -124,7 +124,7 @@ set category = "Debug" /* if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!air_master) @@ -146,7 +146,7 @@ set category = "Debug" /* if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!air_master) diff --git a/code/modules/admin/verbs/getlogs.dm b/code/modules/admin/verbs/getlogs.dm index 9e9ad67027..7215c8dd32 100644 --- a/code/modules/admin/verbs/getlogs.dm +++ b/code/modules/admin/verbs/getlogs.dm @@ -24,12 +24,12 @@ set category = null if(!src.holder) - src << "Only Admins may use this command." + to_chat(src, "Only Admins may use this command.") return var/client/target = input(src,"Choose somebody to grant access to the server's runtime logs (permissions expire at the end of each round):","Grant Permissions",null) as null|anything in GLOB.clients if(!istype(target,/client)) - src << "Error: giveruntimelog(): Client not found." + to_chat(src, "Error: giveruntimelog(): Client not found.") return target.verbs |= /client/proc/getruntimelog @@ -53,7 +53,7 @@ message_admins("[key_name_admin(src)] accessed file: [path]") src << run( file(path) ) - src << "Attempting to send file, this may take a fair few minutes if the file is very large." + to_chat(src, "Attempting to send file, this may take a fair few minutes if the file is very large.") return @@ -73,7 +73,7 @@ message_admins("[key_name_admin(src)] accessed file: [path]") src << run( file(path) ) - src << "Attempting to send file, this may take a fair few minutes if the file is very large." + to_chat(src, "Attempting to send file, this may take a fair few minutes if the file is very large.") return @@ -89,7 +89,7 @@ if( fexists(path) ) src << run( file(path) ) else - src << "Error: view_txt_log(): File not found/Invalid path([path])." + to_chat(src, "Error: view_txt_log(): File not found/Invalid path([path]).") return feedback_add_details("admin_verb","VTL") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! return @@ -107,7 +107,7 @@ if( fexists(path) ) src << run( file(path) ) else - src << "Error: view_atk_log(): File not found/Invalid path([path])." + to_chat(src, "Error: view_atk_log(): File not found/Invalid path([path]).") return usr << run( file(path) ) feedback_add_details("admin_verb","SSAL") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/admin/verbs/randomverbs.dm b/code/modules/admin/verbs/randomverbs.dm index 3ffd76878e..1a3fbfe76f 100644 --- a/code/modules/admin/verbs/randomverbs.dm +++ b/code/modules/admin/verbs/randomverbs.dm @@ -2,7 +2,7 @@ set category = null set name = "Drop Everything" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/confirm = alert(src, "Make [M] drop everything?", "Message", "Yes", "No") @@ -20,7 +20,7 @@ set category = "Admin" set name = "Prison" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if (ismob(M)) if(istype(M, /mob/living/silicon/ai)) @@ -48,7 +48,7 @@ set category = "Admin" set name = "Check new Players" if(!holder) - src << "Only staff members may use this command." + to_chat(src, "Only staff members may use this command.") var/age = alert(src, "Age check", "Show accounts yonger then _____ days","7", "30" , "All") @@ -70,12 +70,12 @@ msg += "[key_name(C, 1, 1, highlight_special_characters)]: account is [C.player_age] days old
" if(missing_ages) - src << "Some accounts did not have proper ages set in their clients. This function requires database to be present." + to_chat(src, "Some accounts did not have proper ages set in their clients. This function requires database to be present.") if(msg != "") src << browse(msg, "window=Player_age_check") else - src << "No matches for that age range found." + to_chat(src, "No matches for that age range found.") /client/proc/cmd_admin_subtle_message(mob/M as mob in mob_list) set category = "Special Verbs" @@ -83,7 +83,7 @@ if(!ismob(M)) return if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/msg = sanitize(input("Message:", text("Subtle PM to [M.key]")) as text) @@ -106,7 +106,7 @@ set name = "Global Narrate" if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/msg = sanitize(input("Message:", text("Enter the text you wish to appear to everyone:")) as text) @@ -123,7 +123,7 @@ set name = "Direct Narrate" if(!holder) - src << "Only administrators and moderators may use this command." + to_chat(src, "Only administrators and moderators may use this command.") return if(!M) @@ -148,7 +148,7 @@ set category = "Special Verbs" set name = "Godmode" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return M.status_flags ^= GODMODE usr << " Toggled [(M.status_flags & GODMODE) ? "ON" : "OFF"]" @@ -216,7 +216,7 @@ proc/cmd_admin_mute(mob/M as mob, mute_type, automute = 0) set category = "Fun" set name = "Add Random AI Law" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/confirm = alert(src, "You sure?", "Confirm", "Yes", "No") if(confirm != "Yes") return @@ -248,7 +248,7 @@ Ccomp's first proc. any = 1 //if no ghosts show up, any will just be 0 if(!any) if(notify) - src << "There doesn't appear to be any ghosts for you to select." + to_chat(src, "There doesn't appear to be any ghosts for you to select.") return for(var/mob/M in mobs) @@ -265,12 +265,12 @@ Ccomp's first proc. set name = "Allow player to respawn" set desc = "Let's the player bypass the wait to respawn or allow them to re-enter their corpse." if(!holder) - src << "Only administrators and moderators may use this command." + to_chat(src, "Only administrators and moderators may use this command.") var/list/ghosts= get_ghosts(1,1) var/target = input("Please, select a ghost!", "COME BACK TO LIFE!", null, null) as null|anything in ghosts if(!target) - src << "Hrm, appears you didn't select a ghost" // Sanity check, if no ghosts in the list we don't want to edit a null variable and cause a runtime error. + to_chat(src, "Hrm, appears you didn't select a ghost") // Sanity check, if no ghosts in the list we don't want to edit a null variable and cause a runtime error. return var/mob/observer/dead/G = ghosts[target] @@ -295,7 +295,7 @@ Ccomp's first proc. set desc = "Toggles antagHUD usage for observers" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") var/action="" if(config.antag_hud_allowed) for(var/mob/observer/dead/g in get_ghosts()) @@ -306,7 +306,7 @@ Ccomp's first proc. g.has_enabled_antagHUD = 2 // We'll allow them to respawn g << "The Administrator has disabled AntagHUD " config.antag_hud_allowed = 0 - src << "AntagHUD usage has been disabled" + to_chat(src, "AntagHUD usage has been disabled") action = "disabled" else for(var/mob/observer/dead/g in get_ghosts()) @@ -315,7 +315,7 @@ Ccomp's first proc. g << "The Administrator has enabled AntagHUD " // Notify all observers they can now use AntagHUD config.antag_hud_allowed = 1 action = "enabled" - src << "AntagHUD usage has been enabled" + to_chat(src, "AntagHUD usage has been enabled") log_admin("[key_name(usr)] has [action] antagHUD usage for observers") @@ -328,14 +328,14 @@ Ccomp's first proc. set name = "Toggle antagHUD Restrictions" set desc = "Restricts players that have used antagHUD from being able to join this round." if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") var/action="" if(config.antag_hud_restricted) for(var/mob/observer/dead/g in get_ghosts()) g << "The administrator has lifted restrictions on joining the round if you use AntagHUD" action = "lifted restrictions" config.antag_hud_restricted = 0 - src << "AntagHUD restrictions have been lifted" + to_chat(src, "AntagHUD restrictions have been lifted") else for(var/mob/observer/dead/g in get_ghosts()) g << "The administrator has placed restrictions on joining the round if you use AntagHUD" @@ -344,7 +344,7 @@ Ccomp's first proc. g.has_enabled_antagHUD = 0 action = "placed restrictions" config.antag_hud_restricted = 1 - src << "AntagHUD restrictions have been enabled" + to_chat(src, "AntagHUD restrictions have been enabled") log_admin("[key_name(usr)] has [action] on joining the round if they use AntagHUD") message_admins("Admin [key_name_admin(usr)] has [action] on joining the round if they use AntagHUD", 1) @@ -359,7 +359,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "Spawn Character" set desc = "(Re)Spawn a client's loaded character." if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return //I frontload all the questions so we don't have a half-done process while you're reading. @@ -443,7 +443,7 @@ Traitors and the like can also be revived with the previous role mostly intact. switch(location) if("Right Here") //Spawn them on your turf if(!src.mob) - src << "You can't use 'Right Here' when you are not 'Right Anywhere'!" + to_chat(src, "You can't use 'Right Here' when you are not 'Right Anywhere'!") return spawnloc = get_turf(src.mob) @@ -452,19 +452,19 @@ Traitors and the like can also be revived with the previous role mostly intact. spawnloc = pick(latejoin) else //I have no idea how you're here - src << "Invalid spawn location choice." + to_chat(src, "Invalid spawn location choice.") return //Did we actually get a loc to spawn them? if(!spawnloc) - src << "Couldn't get valid spawn location." + to_chat(src, "Couldn't get valid spawn location.") return new_character = new(spawnloc) //We were able to spawn them, right? if(!new_character) - src << "Something went wrong and spawning failed." + to_chat(src, "Something went wrong and spawning failed.") return //Write the appearance and whatnot out to the character @@ -517,7 +517,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Fun" set name = "Add Custom AI law" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/input = sanitize(input(usr, "Please enter anything you want the AI to do. Anything. Serious.", "What?", "") as text|null) if(!input) @@ -545,7 +545,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Special Verbs" set name = "Rejuvenate" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!mob) return @@ -567,7 +567,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Special Verbs" set name = "Create Command Report" if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/input = sanitize(input(usr, "Please enter anything you want. Anything. Serious.", "What?", "") as message|null, extra = 0) var/customname = sanitizeSafe(input(usr, "Pick a title for the report.", "Title") as text|null) @@ -595,7 +595,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "Delete" if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return admin_delete(O) @@ -604,11 +604,11 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "List free slots" if (!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(job_master) for(var/datum/job/job in job_master.occupations) - src << "[job.title]: [job.total_positions]" + to_chat(src, "[job.title]: [job.total_positions]") feedback_add_details("admin_verb","LFS") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! /client/proc/cmd_admin_explosion(atom/O as obj|mob|turf in world) @@ -705,7 +705,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set name = "Manual Ban" set category = "Special Verbs" if(!authenticated || !holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return var/mob/M = null switch(alert("How would you like to ban someone today?", "Manual Ban", "Key List", "Enter Manually", "Cancel")) @@ -777,7 +777,7 @@ Traitors and the like can also be revived with the previous role mostly intact. set category = "Debug" set name = "Stabilize Atmos." if(!holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return feedback_add_details("admin_verb","STATM") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! // DEFERRED diff --git a/code/modules/admin/verbs/striketeam.dm b/code/modules/admin/verbs/striketeam.dm index 37fc52eda8..65d954fbc9 100644 --- a/code/modules/admin/verbs/striketeam.dm +++ b/code/modules/admin/verbs/striketeam.dm @@ -7,7 +7,7 @@ var/const/commandos_possible = 6 //if more Commandos are needed in the future set desc = "Spawns a strike team if you want to run an admin event." if(!src.holder) - src << "Only administrators may use this command." + to_chat(src, "Only administrators may use this command.") return if(!ticker) diff --git a/code/modules/admin/verbs/ticklag.dm b/code/modules/admin/verbs/ticklag.dm index ab5693878a..3c34f0f35a 100644 --- a/code/modules/admin/verbs/ticklag.dm +++ b/code/modules/admin/verbs/ticklag.dm @@ -19,6 +19,6 @@ if("Yes") config.Tickcomp = 1 else config.Tickcomp = 0 else - src << "Error: ticklag(): Invalid world.ticklag value. No changes made." + to_chat(src, "Error: ticklag(): Invalid world.ticklag value. No changes made.") diff --git a/code/modules/admin/view_variables/topic.dm b/code/modules/admin/view_variables/topic.dm index ce2c684c09..8d547b76e1 100644 --- a/code/modules/admin/view_variables/topic.dm +++ b/code/modules/admin/view_variables/topic.dm @@ -359,13 +359,14 @@ var/list/possibleverbs = list() possibleverbs += "Cancel" // One for the top... possibleverbs += typesof(/mob/proc,/mob/verb,/mob/living/proc,/mob/living/verb) - switch(H.type) - if(/mob/living/carbon/human) - possibleverbs += typesof(/mob/living/carbon/proc,/mob/living/carbon/verb,/mob/living/carbon/human/verb,/mob/living/carbon/human/proc) - if(/mob/living/silicon/robot) - possibleverbs += typesof(/mob/living/silicon/proc,/mob/living/silicon/robot/proc,/mob/living/silicon/robot/verb) - if(/mob/living/silicon/ai) - possibleverbs += typesof(/mob/living/silicon/proc,/mob/living/silicon/ai/proc,/mob/living/silicon/ai/verb) + if(istype(H,/mob/living/carbon/human)) + possibleverbs += typesof(/mob/living/carbon/proc,/mob/living/carbon/verb,/mob/living/carbon/human/verb,/mob/living/carbon/human/proc) + if(istype(H,/mob/living/silicon/robot)) + possibleverbs += typesof(/mob/living/silicon/proc,/mob/living/silicon/robot/proc,/mob/living/silicon/robot/verb) + if(istype(H,/mob/living/silicon/ai)) + possibleverbs += typesof(/mob/living/silicon/proc,/mob/living/silicon/ai/proc,/mob/living/silicon/ai/verb) + if(istype(H,/mob/living/simple_mob)) + possibleverbs += typesof(/mob/living/simple_mob/proc,/mob/living/simple_mob/verb) //VOREStation edit, Apparently polaris simplemobs have no verbs at all. possibleverbs -= H.verbs possibleverbs += "Cancel" // ...And one for the bottom diff --git a/code/modules/ai/ai_holder_disabled.dm b/code/modules/ai/ai_holder_disabled.dm index 8b296b2d10..dc3717fe18 100644 --- a/code/modules/ai/ai_holder_disabled.dm +++ b/code/modules/ai/ai_holder_disabled.dm @@ -5,6 +5,9 @@ // If our holder is able to do anything. /datum/ai_holder/proc/can_act() + if(!holder) // Holder missing. + SSai.processing -= src + return FALSE if(holder.stat) // Dead or unconscious. ai_log("can_act() : Stat was non-zero ([holder.stat]).", AI_LOG_TRACE) return FALSE @@ -95,4 +98,4 @@ holder.IMove(get_step(holder,moving_to)) wander_delay = base_wander_delay ai_log("handle_wander_movement() : Exited.", AI_LOG_DEBUG) -*/ \ No newline at end of file +*/ diff --git a/code/modules/ai/ai_holder_movement.dm b/code/modules/ai/ai_holder_movement.dm index 55a1098b90..58b8c9d5ee 100644 --- a/code/modules/ai/ai_holder_movement.dm +++ b/code/modules/ai/ai_holder_movement.dm @@ -142,7 +142,7 @@ if(isturf(holder.loc) && can_act()) wander_delay-- if(wander_delay <= 0) - if(!wander_when_pulled && holder.pulledby) + if(!wander_when_pulled && (holder.pulledby || holder.grabbed_by.len)) ai_log("handle_wander_movement() : Being pulled and cannot wander. Exiting.", AI_LOG_DEBUG) return diff --git a/code/modules/assembly/holder.dm b/code/modules/assembly/holder.dm index 930329fd93..7db2d4e827 100644 --- a/code/modules/assembly/holder.dm +++ b/code/modules/assembly/holder.dm @@ -104,6 +104,12 @@ /obj/item/device/assembly_holder/Crossed(atom/movable/AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(a_left) a_left.Crossed(AM) if(a_right) diff --git a/code/modules/assembly/infrared.dm b/code/modules/assembly/infrared.dm index a76dae8ec7..afec31665d 100644 --- a/code/modules/assembly/infrared.dm +++ b/code/modules/assembly/infrared.dm @@ -25,7 +25,7 @@ /obj/item/device/assembly/infra/toggle_secure() secured = !secured if(secured) - START_PROCESSING(SSobj, src) + START_PROCESSING(SSobj, src) else on = 0 if(first) qdel(first) @@ -242,6 +242,12 @@ return /obj/effect/beam/i_beam/Crossed(atom/movable/AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(istype(AM, /obj/effect/beam)) return spawn(0) diff --git a/code/modules/assembly/mousetrap.dm b/code/modules/assembly/mousetrap.dm index 7d1c5346c0..b54df46b54 100644 --- a/code/modules/assembly/mousetrap.dm +++ b/code/modules/assembly/mousetrap.dm @@ -83,6 +83,12 @@ /obj/item/device/assembly/mousetrap/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(armed) if(ishuman(AM)) var/mob/living/carbon/H = AM diff --git a/code/modules/awaymissions/gateway.dm b/code/modules/awaymissions/gateway.dm index cee8fb73b0..b6695e39cb 100644 --- a/code/modules/awaymissions/gateway.dm +++ b/code/modules/awaymissions/gateway.dm @@ -168,6 +168,7 @@ obj/machinery/gateway/centerstation/process() update_icon() stationgate = locate(/obj/machinery/gateway/centerstation) . = ..() + density = 1 //VOREStation Add /obj/machinery/gateway/centeraway/update_icon() diff --git a/code/modules/blob2/overmind/types.dm b/code/modules/blob2/overmind/types.dm index 6049ccfc72..49b968cfcc 100644 --- a/code/modules/blob2/overmind/types.dm +++ b/code/modules/blob2/overmind/types.dm @@ -593,7 +593,7 @@ attack_verb = "splashes" /datum/blob_type/radioactive_ooze/on_pulse(var/obj/structure/blob/B) - radiation_repository.radiate(B, 200) + SSradiation.radiate(B, 200) /datum/blob_type/volatile_alluvium name = "volatile alluvium" diff --git a/code/modules/catalogue/catalogue_data_vr.dm b/code/modules/catalogue/catalogue_data_vr.dm index 5fa252ea39..0c97e9ce00 100644 --- a/code/modules/catalogue/catalogue_data_vr.dm +++ b/code/modules/catalogue/catalogue_data_vr.dm @@ -60,6 +60,11 @@ desc = "" value = CATALOGUER_REWARD_TRIVIAL +/datum/category_item/catalogue/fauna/shadekin + name = "Sapients - Shadekin" + desc = "" + value = CATALOGUER_REWARD_EASY + /datum/category_item/catalogue/fauna/custom_species name = "Sapients - Other" desc = "Remote frontiers require people of all sorts of life...\ diff --git a/code/modules/client/client procs.dm b/code/modules/client/client procs.dm index 95e4fb0f16..26b0103ed5 100644 --- a/code/modules/client/client procs.dm +++ b/code/modules/client/client procs.dm @@ -78,13 +78,13 @@ //This stops files larger than UPLOAD_LIMIT being sent from client to server via input(), client.Import() etc. /client/AllowUpload(filename, filelength) if(filelength > UPLOAD_LIMIT) - src << "Error: AllowUpload(): File Upload too large. Upload Limit: [UPLOAD_LIMIT/1024]KiB." + to_chat(src, "Error: AllowUpload(): File Upload too large. Upload Limit: [UPLOAD_LIMIT/1024]KiB.") return 0 /* //Don't need this at the moment. But it's here if it's needed later. //Helps prevent multiple files being uploaded at once. Or right after eachother. var/time_to_wait = fileaccess_timer - world.time if(time_to_wait > 0) - src << "Error: AllowUpload(): Spam prevention. Please wait [round(time_to_wait/10)] seconds." + to_chat(src, "Error: AllowUpload(): Spam prevention. Please wait [round(time_to_wait/10)] seconds.") return 0 fileaccess_timer = world.time + FTPDELAY */ return 1 @@ -106,7 +106,7 @@ del(src) return - src << "If the title screen is black, resources are still downloading. Please be patient until the title screen appears." + to_chat(src, "If the title screen is black, resources are still downloading. Please be patient until the title screen appears.") GLOB.clients += src @@ -132,10 +132,10 @@ prefs.sanitize_preferences() if(custom_event_msg && custom_event_msg != "") - src << "

Custom Event

" - src << "

A custom event is taking place. OOC Info:

" - src << "[custom_event_msg]" - src << "
" + to_chat(src, "

Custom Event

") + to_chat(src, "

A custom event is taking place. OOC Info:

") + to_chat(src, "[custom_event_msg]") + to_chat(src, "
") if(holder) @@ -161,7 +161,7 @@ screen += void if(prefs.lastchangelog != changelog_hash) //bolds the changelog button on the interface so we know there are updates. - src << "You have unread updates in the changelog." + to_chat(src, "You have unread updates in the changelog.") winset(src, "rpane.changelog", "background-color=#eaeaea;font-style=bold") if(config.aggressive_changelog) src.changes() diff --git a/code/modules/client/preference_setup/general/03_body.dm b/code/modules/client/preference_setup/general/03_body.dm index fe4b1a9399..55535b89bf 100644 --- a/code/modules/client/preference_setup/general/03_body.dm +++ b/code/modules/client/preference_setup/general/03_body.dm @@ -139,7 +139,7 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O else O.robotize() - for(var/name in list(O_HEART,O_EYES,O_LUNGS,O_LIVER,O_KIDNEYS,O_BRAIN)) + for(var/name in list(O_HEART,O_EYES,O_VOICE,O_LUNGS,O_LIVER,O_KIDNEYS,O_SPLEEN,O_STOMACH,O_INTESTINE,O_BRAIN)) var/status = pref.organ_data[name] if(!status) continue @@ -237,6 +237,8 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O organ_name = "heart" if(O_EYES) organ_name = "eyes" + if(O_VOICE) + organ_name = "larynx" if(O_BRAIN) organ_name = "brain" if(O_LUNGS) @@ -245,6 +247,12 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O organ_name = "liver" if(O_KIDNEYS) organ_name = "kidneys" + if(O_SPLEEN) + organ_name = "spleen" + if(O_STOMACH) + organ_name = "stomach" + if(O_INTESTINE) + organ_name = "intestines" if(status == "cyborg") ++ind @@ -708,7 +716,7 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O else if(href_list["organs"]) - var/organ_name = input(user, "Which internal function do you want to change?") as null|anything in list("Heart", "Eyes", "Lungs", "Liver", "Kidneys", "Brain") + var/organ_name = input(user, "Which internal function do you want to change?") as null|anything in list("Heart", "Eyes","Larynx", "Lungs", "Liver", "Kidneys", "Spleen", "Intestines", "Stomach", "Brain") if(!organ_name) return var/organ = null @@ -717,12 +725,20 @@ var/global/list/valid_bloodtypes = list("A+", "A-", "B+", "B-", "AB+", "AB-", "O organ = O_HEART if("Eyes") organ = O_EYES + if("Larynx") + organ = O_VOICE if("Lungs") organ = O_LUNGS if("Liver") organ = O_LIVER if("Kidneys") organ = O_KIDNEYS + if("Spleen") + organ = O_SPLEEN + if("Intestines") + organ = O_INTESTINE + if("Stomach") + organ = O_STOMACH if("Brain") if(pref.organ_data[BP_HEAD] != "cyborg") user << "You may only select a cybernetic or synthetic brain if you have a full prosthetic body." diff --git a/code/modules/client/preference_setup/global/setting_datums.dm b/code/modules/client/preference_setup/global/setting_datums.dm index 063150f69d..ac1a203e4b 100644 --- a/code/modules/client/preference_setup/global/setting_datums.dm +++ b/code/modules/client/preference_setup/global/setting_datums.dm @@ -135,6 +135,12 @@ var/list/_client_preferences_by_type enabled_description = "Show" disabled_description = "Hide" +/datum/client_preference/air_pump_noise + description ="Air Pump Ambient Noise" + key = "SOUND_AIRPUMP" + enabled_description = "Audible" + disabled_description = "Silent" + /datum/client_preference/mob_tooltips description ="Mob tooltips" key = "MOB_TOOLTIPS" diff --git a/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm b/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm new file mode 100644 index 0000000000..959f0951d5 --- /dev/null +++ b/code/modules/client/preference_setup/loadout/gear_tweaks_vr.dm @@ -0,0 +1,14 @@ +/datum/gear_tweak/collar_tag/get_contents(var/metadata) + return "Tag: [metadata]" + +/datum/gear_tweak/collar_tag/get_default() + return "" + +/datum/gear_tweak/collar_tag/get_metadata(var/user, var/metadata) + return sanitize( input(user, "Choose the tag text", "Character Preference", metadata) as text , MAX_NAME_LEN ) + +/datum/gear_tweak/collar_tag/tweak_item(var/obj/item/clothing/accessory/collar/C, var/metadata) + if(metadata == "") + return + else + C.initialize_tag(metadata) \ No newline at end of file diff --git a/code/modules/client/preference_setup/loadout/loadout.dm b/code/modules/client/preference_setup/loadout/loadout.dm index a5e6024653..285856d0cf 100644 --- a/code/modules/client/preference_setup/loadout/loadout.dm +++ b/code/modules/client/preference_setup/loadout/loadout.dm @@ -70,10 +70,13 @@ var/list/gear_datums = list() continue if(max_cost && G.cost > max_cost) continue - if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) //Vorestation Edit - continue //Vorestation Edit - if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) //Vorestation Edit - continue //Vorestation Edit + //VOREStation Edit Start + if(preference_mob && preference_mob.client) + if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) + continue + if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) + continue + //VOREStation Edit End . += gear_name /datum/category_item/player_setup_item/loadout/sanitize_character() @@ -150,10 +153,13 @@ var/list/gear_datums = list() . += "
" for(var/gear_name in LC.gear) var/datum/gear/G = LC.gear[gear_name] - if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) //Vorestation Edit - continue //Vorestation Edit - if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) //Vorestation Edit - continue //Vorestation Edit + //VOREStation Edit Start + if(preference_mob && preference_mob.client) + if(G.ckeywhitelist && !(preference_mob.ckey in G.ckeywhitelist)) + continue + if(G.character_name && !(preference_mob.client.prefs.real_name in G.character_name)) + continue + //VOREStation Edit End var/ticked = (G.display_name in pref.gear) . += "[G.display_name]" . += "[G.cost]" @@ -271,4 +277,7 @@ var/list/gear_datums = list() var/item = new gd.path(gd.location) for(var/datum/gear_tweak/gt in gear_tweaks) gt.tweak_item(item, metadata["[gt]"]) + var/mob/M = location + if(istype(M) && exploitable) //Update exploitable info records for the mob without creating a duplicate object at their feet. + M.amend_exploitable(item) return item diff --git a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm index 0f1ab31c6e..5e667b49e2 100644 --- a/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_accessories_vr.dm @@ -6,6 +6,10 @@ slot = slot_tie sort_category = "Accessories" +/datum/gear/collar/New() + ..() + gear_tweaks = list(gear_tweak_collar_tag) + /datum/gear/collar/golden display_name = "collar, golden" path = /obj/item/clothing/accessory/collar/gold diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm index 13c81b63e1..759f79e7fa 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_vr.dm @@ -34,6 +34,12 @@ ckeywhitelist = list("aegisoa") character_name = list("Xander Bevin") +/datum/gear/fluff/xander_medal + path = /obj/item/clothing/accessory/medal/conduct + display_name = "Xander's Conduct Medal" + ckeywhitelist = list("aegisoa") + character_name = list("Xander Bevin") + /datum/gear/fluff/lynn_penlight path = /obj/item/device/flashlight/pen/fluff/lynn display_name = "Lynn's Penlight" @@ -85,6 +91,12 @@ ckeywhitelist = list("beyondmylife") character_name = list("Ne'tra Ky'ram") +/datum/gear/fluff/nolan_medal + path = /obj/item/clothing/accessory/medal/silver/unity + display_name = "Nolan's Unity Medal" + ckeywhitelist = list("blakeryan") + character_name = list("Nolan Conaway") + /datum/gear/fluff/xin_sovietuniform path = /obj/item/clothing/under/soviet display_name = "Xin's Soviet Uniform" @@ -98,6 +110,24 @@ ckeywhitelist = list("bwoincognito") character_name = list("Tasald Corlethian") +/datum/gear/fluff/tasald_cartographer_jumpsuit + path = /obj/item/clothing/under/solgov/utility/sifguard/officer/exploration + display_name = "Tasald's Cartographer's uniform - jumpsuit" + ckeywhitelist = list("bwoincognito") + character_name = list("Tasald Corlethian") + +/datum/gear/fluff/tasald_cartographer_jacket + path = /obj/item/clothing/suit/storage/service/sifguard/command + display_name = "Tasald's Cartographer's uniform - jacket" + ckeywhitelist = list("bwoincognito") + character_name = list("Tasald Corlethian") + +/datum/gear/fluff/tasald_cartographer_beret + path = /obj/item/clothing/head/beret/sol/expedition/command + display_name = "Tasald's Cartographer's uniform - beret" + ckeywhitelist = list("bwoincognito") + character_name = list("Tasald Corlethian") + /datum/gear/fluff/octavius_box path = /obj/item/weapon/storage/box/fluff/octavious display_name = "Octavious' Box" @@ -210,6 +240,12 @@ ckeywhitelist = list("epigraphzero") character_name = list("Verd Woodrow") +/datum/gear/fluff/erik_medal + path = /obj/item/clothing/accessory/medal/silver/unity + display_name = "Erik's Unity Medal" + ckeywhitelist = list("erikthedog") + character_name = list("Erik Ramadwood") + // F CKEYS // G CKEYS @@ -708,6 +744,12 @@ ckeywhitelist = list("techtypes") character_name = list("Lasshseeki Korss") +/datum/gear/fluff/nick_medal + path = /obj/item/clothing/accessory/medal/conduct + display_name = "Nick's Conduct Medal" + ckeywhitelist = list("thedavestdave") + character_name = list("Nick Sloan") + /datum/gear/fluff/konor_medal path = /obj/item/clothing/accessory/medal/silver/unity display_name = "Konor's Unity Medal" @@ -842,27 +884,30 @@ path = /obj/item/clothing/glasses/omnihud/med/fluff/wickedtemphud display_name = "Tempest's Medical Hud" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") - + slot = slot_glasses + /datum/gear/fluff/tempest_hypospray path = /obj/item/weapon/reagent_containers/hypospray/vial/tempest display_name = "Tempest's Hypospray" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") allowed_roles = list("Chief Medical Officer","Medical Doctor","Chemist","Psychiatrist","Paramedic", "Field Medic") - + slot = slot_belt + /datum/gear/fluff/tempest_backpack path = /obj/item/weapon/storage/backpack/saddlebag/tempest display_name = "Tempest's Saddlebag" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") - + character_name = list("Chakat Tempest Venosare") + slot = slot_back + /datum/gear/fluff/tempest_implant path = /obj/item/weapon/implanter/reagent_generator/tempest display_name = "Tempest's Implant" ckeywhitelist = list("wickedtemp") - character_name = list("Chakat Tempest Venesare") + character_name = list("Chakat Tempest Venosare") // X CKEYS /datum/gear/fluff/penelope_box @@ -897,3 +942,9 @@ display_name = "Nehi's Radio" ckeywhitelist = list("zodiacshadow") character_name = list("Nehi Maximus") + +/datum/gear/fluff/star_sweater + path = /obj/item/clothing/accessory/sweater/fluff/star + display_name = "Star Sweater" + ckeywhitelist = list("bacon12366") + character_name = list("Elly Brown") diff --git a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm index ed6abec2c5..75aa5afa48 100644 --- a/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm +++ b/code/modules/client/preference_setup/loadout/loadout_fluffitems_yw.dm @@ -110,6 +110,20 @@ ckeywhitelist = list("blackangelsace") character_name = list("Strix Hades") +/datum/gear/fluff/strix_coat_cco + path = /obj/item/clothing/suit/storage/seromi/cloak/fluff/strix_cco + display_name = "Central Command Coat" + description = "It drapes over a Avali's shoulders and closes at the neck with pockets convienently placed inside. It bears the Central Command's colors. The name 'Strix Hades' is embroilled in gold lettering around a golden embroilled outline on the neck collar." + ckeywhitelist = list("blackangelsace") + character_name = list("Strix Hades") + +/datum/gear/fluff/strix_under_cco + path = /obj/item/clothing/under/seromi/undercoat/fluff/strix_cco + display_name = "Central Command Undercoat" + description = "Made of carbon nanofiber, it is light and billowy, perfect for going fast and stylishly!" + ckeywhitelist = list("blackangelsace") + character_name = list("Strix Hades") + //benl8561 //M.I.S.S.Y /datum/gear/fluff/missy_skirt @@ -145,6 +159,15 @@ // C CKEYS +//cheekycrenando +//Srusu Rskuzu-Ahslru +/datum/gear/fluff/srususovietuniform + path = /obj/item/clothing/under/fluff/srususoviet + display_name = "Soviet Uniform" + description = "Standard issue soviet dress uniform" + ckeywhitelist = list("cheekycrenando") + character_name = list("Srusu Rskuzu-Ahslru") + //captmatt4 //Payton Joghs /datum/gear/fluff/payton_joghs_1 @@ -154,6 +177,14 @@ ckeywhitelist = list("captmatt4") character_name = list("Payton Joghs") +//Kaenin Qerrlar +/datum/gear/fluff/kaenin_qerrlar_1 + path = /obj/item/clothing/accessory/medal/silver/fluff/kaeninmedal + display_name = "Kaenin Qerrlar's medal of valor" + description = "A silver medal, polished to a shine. On it, it says \"For Honorable Service, Kaenin Qerrlar, among the first to volunteer to save the world of Virgo-Erigone Four, homeworld of the zorren. Qerrlar piloted a combat exosuit to combat a hostile lifeform until it simply ran out of power, after this, he continued on foot.\" It is adorned with a purple ribbon." + ckeywhitelist = list("captmatt4") + character_name = list("Kaenin Qerrlar") + //Eliana Noya /datum/gear/fluff/eliana_noya_1 path = /obj/item/clothing/under/fluff/eliana_noya_1 @@ -211,7 +242,7 @@ display_name = "A mysterious cookie" description = "DAS A BIG COOKIE!!!" ckeywhitelist = list("dameonowen") - character_name = list("Dameon Owen") + character_name = list("Dameon Owen", "Amber Owen") //dawidoe //Melissa Krutz @@ -461,6 +492,15 @@ // H CKEYS +//hagawaga +//Lana Xavier +/datum/gear/fluff/hagawaga_romanarmor + path = /obj/item/clothing/under/fluff/romanarmor + display_name = "Roman Legionary Armor" + description = "Basically looks like what you would expect a segmented plated armor from the early Roman Empire to look like." + ckeywhitelist = list("hagawaga") + character_name = list("Lana Xavier") + //harpsong //Harpsong /datum/gear/fluff/harpsong_1 @@ -650,7 +690,32 @@ ckeywhitelist = list("masmc") character_name = list("Kettek Ollarch") +//Moca_The_Porg1 +//Mocha +/datum/gear/fluff/mocha_jumpsuit + path = /obj/item/clothing/under/fluff/mocha_uniform + display_name = "Winterized Explorer Jumpsuit" + description = "A Greenish-white uniform for operating in hazardous environments. This one is suited for colder environments." + ckeywhitelist = list("mocatheporg1") + character_name = list("Mocha") + allowed_roles = list("Explorer", "Pathfinder") + +/datum/gear/fluff/mocha_suit_kit + path = /obj/item/device/modkit_conversion/fluff/mocha_suit_kit + display_name = "Mocha's modkit" + description = "A kit containing all the needed tools and parts to modify a Explorer Suit" + ckeywhitelist = list("mocatheporg1") + character_name = list("Mocha") + allowed_roles = list("Explorer", "Pathfinder") + // N CKEYS +//NESgamer190 +/datum/gear/fluff/lucy_flask + path = /obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/lucyprice + display_name = "Cryostasis Thermos" + description = "A thermos that has been designed to look something akin to a mix between a cryostasis beaker and a thermos. Does NOT keep the drinks cold, surprisingly enough.." + ckeywhitelist = list("nesgamer190") + character_name = list("Lucy Price") // O CKEYS @@ -690,6 +755,14 @@ // R CKEYS +//risingstarflash +/datum/gear/fluff/stellar_collar + path = /obj/item/clothing/accessory/collar/fluff/stellar_collar + display_name = "Heart Collar" + description = "The collar appears to have a heart shaped pin on the front, the medical logo on visible from a distance. Closer inspection shows that the heart can be opened, revealing a picture. On the picture you can see Stellar and Reyna close together, paws locked and facing the picture slightly sideways with beaming smiles." + ckeywhitelist = list("risingstarslash") + character_name = list("Stellar Wolf") + //radiantflash //Vasharr Zahirn /datum/gear/fluff/vasharr_armlets @@ -730,7 +803,6 @@ character_name = list("Basir Fahim") // S CKEYS - //snakewitharocketlauncher //Alex Wolf /datum/gear/fluff/alex_1 diff --git a/code/modules/client/preference_setup/loadout/loadout_utility.dm b/code/modules/client/preference_setup/loadout/loadout_utility.dm index 2a1e88cd35..40fe71a087 100644 --- a/code/modules/client/preference_setup/loadout/loadout_utility.dm +++ b/code/modules/client/preference_setup/loadout/loadout_utility.dm @@ -124,6 +124,24 @@ path = /obj/item/weapon/implant/tracking/weak cost = 0 //VOREStation Edit. Changed cost to 0 +/datum/gear/utility/implant/neural + display_name = "implant, neural assistance web" + description = "A complex web implanted into the subject, medically in order to compensate for neurological disease." + path = /obj/item/weapon/implant/neural + cost = 6 + +/datum/gear/utility/implant/dud1 + display_name = "implant, head" + description = "An implant with no obvious purpose." + path = /obj/item/weapon/implant/dud + cost = 1 + +/datum/gear/utility/implant/dud2 + display_name = "implant, torso" + description = "An implant with no obvious purpose." + path = /obj/item/weapon/implant/dud/torso + cost = 1 + /datum/gear/utility/implant/language cost = 2 exploitable = 0 diff --git a/code/modules/client/preference_setup/traits/trait_defines.dm b/code/modules/client/preference_setup/traits/trait_defines.dm index aa53392f2c..8ad3ff9253 100644 --- a/code/modules/client/preference_setup/traits/trait_defines.dm +++ b/code/modules/client/preference_setup/traits/trait_defines.dm @@ -72,25 +72,45 @@ Regardless, you find it quite difficult to land shots where you wanted them to go." modifier_type = /datum/modifier/trait/inaccurate -/datum/trait/modifier/physical/smaller - name = "Smaller" - modifier_type = /datum/modifier/trait/smaller - mutually_exclusive = list(/datum/trait/modifier/physical/small, /datum/trait/modifier/physical/large, /datum/trait/modifier/physical/larger) +/datum/trait/modifier/physical/shorter + name = "Shorter" + modifier_type = /datum/modifier/trait/shorter + mutually_exclusive = list(/datum/trait/modifier/physical/short, /datum/trait/modifier/physical/tall, /datum/trait/modifier/physical/taller) -/datum/trait/modifier/physical/small - name = "Small" - modifier_type = /datum/modifier/trait/small - mutually_exclusive = list(/datum/trait/modifier/physical/smaller, /datum/trait/modifier/physical/large, /datum/trait/modifier/physical/larger) +/datum/trait/modifier/physical/short + name = "Short" + modifier_type = /datum/modifier/trait/short + mutually_exclusive = list(/datum/trait/modifier/physical/shorter, /datum/trait/modifier/physical/tall, /datum/trait/modifier/physical/taller) -/datum/trait/modifier/physical/large - name = "Large" - modifier_type = /datum/modifier/trait/large - mutually_exclusive = list(/datum/trait/modifier/physical/smaller, /datum/trait/modifier/physical/small, /datum/trait/modifier/physical/larger) +/datum/trait/modifier/physical/tall + name = "Tall" + modifier_type = /datum/modifier/trait/tall + mutually_exclusive = list(/datum/trait/modifier/physical/shorter, /datum/trait/modifier/physical/short, /datum/trait/modifier/physical/taller) -/datum/trait/modifier/physical/larger - name = "Larger" - modifier_type = /datum/modifier/trait/larger - mutually_exclusive = list(/datum/trait/modifier/physical/smaller, /datum/trait/modifier/physical/small, /datum/trait/modifier/physical/large) +/datum/trait/modifier/physical/taller + name = "Taller" + modifier_type = /datum/modifier/trait/taller + mutually_exclusive = list(/datum/trait/modifier/physical/shorter, /datum/trait/modifier/physical/short, /datum/trait/modifier/physical/tall) + +/datum/trait/modifier/physical/thin + name = "Thin" + modifier_type = /datum/modifier/trait/thin + mutually_exclusive = list(/datum/trait/modifier/physical/fat, /datum/trait/modifier/physical/obese, /datum/trait/modifier/physical/thinner) + +/datum/trait/modifier/physical/thinner + name = "Rail Thin" + modifier_type = /datum/modifier/trait/thinner + mutually_exclusive = list(/datum/trait/modifier/physical/fat, /datum/trait/modifier/physical/obese, /datum/trait/modifier/physical/thin) + +/datum/trait/modifier/physical/fat + name = "Broad-Shouldered" + modifier_type = /datum/modifier/trait/fat + mutually_exclusive = list(/datum/trait/modifier/physical/thin, /datum/trait/modifier/physical/obese, /datum/trait/modifier/physical/thinner) + +/datum/trait/modifier/physical/obese + name = "Heavily Built" + modifier_type = /datum/modifier/trait/obese + mutually_exclusive = list(/datum/trait/modifier/physical/fat, /datum/trait/modifier/physical/thinner, /datum/trait/modifier/physical/thin) /datum/trait/modifier/physical/colorblind_protanopia name = "Protanopia" diff --git a/code/modules/client/preference_setup/vore/01_ears.dm b/code/modules/client/preference_setup/vore/01_ears.dm index 91ae5f41c9..51e100ec9e 100644 --- a/code/modules/client/preference_setup/vore/01_ears.dm +++ b/code/modules/client/preference_setup/vore/01_ears.dm @@ -89,10 +89,19 @@ pref.b_wing = sanitize_integer(pref.b_wing, 0, 255, initial(pref.b_wing)) if(pref.ear_style) pref.ear_style = sanitize_inlist(pref.ear_style, ear_styles_list, initial(pref.ear_style)) + var/datum/sprite_accessory/temp_ear_style = ear_styles_list[pref.ear_style] + if(temp_ear_style.apply_restrictions && (!(pref.species in temp_ear_style.species_allowed))) + pref.ear_style = initial(pref.ear_style) if(pref.tail_style) pref.tail_style = sanitize_inlist(pref.tail_style, tail_styles_list, initial(pref.tail_style)) + var/datum/sprite_accessory/temp_tail_style = tail_styles_list[pref.tail_style] + if(temp_tail_style.apply_restrictions && (!(pref.species in temp_tail_style.species_allowed))) + pref.tail_style = initial(pref.tail_style) if(pref.wing_style) pref.wing_style = sanitize_inlist(pref.wing_style, wing_styles_list, initial(pref.wing_style)) + var/datum/sprite_accessory/temp_wing_style = wing_styles_list[pref.wing_style] + if(temp_wing_style.apply_restrictions && (!(pref.species in temp_wing_style.species_allowed))) + pref.wing_style = initial(pref.wing_style) /datum/category_item/player_setup_item/vore/ears/copy_to_mob(var/mob/living/carbon/human/character) character.ear_style = ear_styles_list[pref.ear_style] @@ -182,7 +191,7 @@ var/list/pretty_ear_styles = list("Normal" = null) for(var/path in ear_styles_list) var/datum/sprite_accessory/ears/instance = ear_styles_list[path] - if((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) + if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed))) pretty_ear_styles[instance.name] = path // Present choice to user @@ -215,7 +224,7 @@ var/list/pretty_tail_styles = list("Normal" = null) for(var/path in tail_styles_list) var/datum/sprite_accessory/tail/instance = tail_styles_list[path] - if((!instance.ckeys_allowed) || (user.ckey in instance.ckeys_allowed)) + if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed))) pretty_tail_styles[instance.name] = path // Present choice to user @@ -248,7 +257,7 @@ var/list/pretty_wing_styles = list("Normal" = null) for(var/path in wing_styles_list) var/datum/sprite_accessory/wing/instance = wing_styles_list[path] - if((!instance.ckeys_allowed) || (user.ckey in instance.ckeys_allowed)) + if(((!instance.ckeys_allowed) || (usr.ckey in instance.ckeys_allowed)) && ((!instance.apply_restrictions) || (pref.species in instance.species_allowed))) pretty_wing_styles[instance.name] = path // Present choice to user diff --git a/code/modules/client/preferences_toggle_procs.dm b/code/modules/client/preferences_toggle_procs.dm index fa51b9e4e9..d016029b23 100644 --- a/code/modules/client/preferences_toggle_procs.dm +++ b/code/modules/client/preferences_toggle_procs.dm @@ -203,7 +203,7 @@ toggle_preference(pref_path) - src << "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear jukebox music." + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear jukebox music.") SScharacter_setup.queue_preferences_save(prefs) @@ -224,6 +224,21 @@ feedback_add_details("admin_verb","TBeSpecial") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! +/client/verb/toggle_air_pump_hum() + set name = "Toggle Air Pump Noise" + set category = "Preferences" + set desc = "Toggles Air Pumps humming" + + var/pref_path = /datum/client_preference/air_pump_noise + + toggle_preference(pref_path) + + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear air pumps hum, start, and stop.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TAirPumpNoise") + /client/verb/toggle_safe_firing() set name = "Toggle Gun Firing Intent Requirement" set category = "Preferences" diff --git a/code/modules/client/preferences_vr.dm b/code/modules/client/preferences_vr.dm index 61c2d83025..746a95d6db 100644 --- a/code/modules/client/preferences_vr.dm +++ b/code/modules/client/preferences_vr.dm @@ -2,3 +2,35 @@ datum/preferences var/show_in_directory = 1 //TFF 5/8/19 - show in Character Directory var/sensorpref = 5 //TFF 5/8/19 - set character's suit sensor level + +//Why weren't these in game toggles already? +/client/verb/toggle_eating_noises() + set name = "Eating Noises" + set category = "Preferences" + set desc = "Toggles Vore Eating noises." + + var/pref_path = /datum/client_preference/eating_noises + + toggle_preference(pref_path) + + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear eating related vore noises.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TEatNoise") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! + + +/client/verb/toggle_digestion_noises() + set name = "Digestion Noises" + set category = "Preferences" + set desc = "Toggles Vore Digestion noises." + + var/pref_path = /datum/client_preference/digestion_noises + + toggle_preference(pref_path) + + to_chat(src, "You will [ (is_preference_enabled(pref_path)) ? "now" : "no longer"] hear digestion related vore noises.") + + SScharacter_setup.queue_preferences_save(prefs) + + feedback_add_details("admin_verb","TDigestNoise") //If you are copy-pasting this, ensure the 2nd parameter is unique to the new proc! diff --git a/code/modules/clothing/clothing_vr.dm b/code/modules/clothing/clothing_vr.dm index b6e387c9bf..f81dd53c18 100644 --- a/code/modules/clothing/clothing_vr.dm +++ b/code/modules/clothing/clothing_vr.dm @@ -4,6 +4,10 @@ /obj/item/clothing/shoes var/list/inside_emotes = list() var/recent_squish = 0 + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/shoes.dmi', + SPECIES_VOX = 'icons/mob/species/vox/shoes.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/feet.dmi') /obj/item/clothing/shoes/New() inside_emotes = list( @@ -51,6 +55,17 @@ ..() +/obj/item/clothing/gloves + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/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_WEREBEAST = 'icons/mob/species/werebeast/ears.dmi') + /obj/item/clothing/relaymove(var/mob/living/user,var/direction) if(recent_struggle) @@ -98,13 +113,18 @@ SPECIES_ZORREN_FLAT = 'icons/mob/species/fennec/mask_vr.dmi', SPECIES_AKULA = 'icons/mob/species/akula/mask_vr.dmi', SPECIES_VULPKANIN = 'icons/mob/species/vulpkanin/mask.dmi', - SPECIES_XENOCHIMERA = 'icons/mob/species/tajaran/mask_vr.dmi' + SPECIES_XENOCHIMERA = 'icons/mob/species/tajaran/mask_vr.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/masks.dmi' ) //"Spider" = 'icons/mob/species/spider/mask_vr.dmi' Add this later when they have custom mask sprites and everything. //Switch to taur sprites if a taur equips /obj/item/clothing/suit var/taurized = FALSE //Easier than trying to 'compare icons' to see if it's a taur suit + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/suit.dmi', + SPECIES_VOX = 'icons/mob/species/vox/suit.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/suit.dmi') /obj/item/clothing/suit/equipped(var/mob/user, var/slot) var/normalize = TRUE @@ -137,6 +157,10 @@ /obj/item/clothing/under sensor_mode = 3 var/sensorpref = 5 + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/uniform.dmi', + SPECIES_VOX = 'icons/mob/species/vox/uniform.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/uniform.dmi') //TFF 5/8/19 - define numbers and specifics for suit sensor settings /obj/item/clothing/under/New(var/mob/living/carbon/human/H) @@ -150,4 +174,10 @@ if(5) sensor_mode = pick(0,1,2,3) //Select a random setting else sensor_mode = pick(0,1,2,3) - log_debug("Invalid switch for suit sensors, defaulting to random. [sensorpref] chosen") \ No newline at end of file + log_debug("Invalid switch for suit sensors, defaulting to random. [sensorpref] chosen") + +/obj/item/clothing/head + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/head.dmi', + SPECIES_VOX = 'icons/mob/species/vox/head.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/head.dmi') diff --git a/code/modules/clothing/glasses/glasses_vr.dm b/code/modules/clothing/glasses/glasses_vr.dm index 1d7cb0087f..90e53d89b2 100644 --- a/code/modules/clothing/glasses/glasses_vr.dm +++ b/code/modules/clothing/glasses/glasses_vr.dm @@ -111,3 +111,10 @@ item_state = "tajblind_meson" off_state = "tajblind" body_parts_covered = EYES + +/obj/item/clothing/glasses + sprite_sheets = list( + SPECIES_TESHARI = 'icons/mob/species/seromi/eyes.dmi', + SPECIES_VOX = 'icons/mob/species/vox/eyes.dmi', + SPECIES_WEREBEAST = 'icons/mob/species/werebeast/eyes.dmi' + ) \ No newline at end of file diff --git a/code/modules/clothing/gloves/miscellaneous.dm b/code/modules/clothing/gloves/miscellaneous.dm index bfb53f5e03..94e2d1fef0 100644 --- a/code/modules/clothing/gloves/miscellaneous.dm +++ b/code/modules/clothing/gloves/miscellaneous.dm @@ -127,3 +127,35 @@ overgloves = 1 force = 5 punch_force = 5 + +/obj/item/clothing/gloves/ranger + var/glovecolor = "white" + name = "ranger gloves" + desc = "The gloves of the Rangers are the least memorable part. They're not even insulated in the show, so children \ + don't try and take apart a toaster with inadequate protection. They only serve to complete the fancy outfit." + icon = 'icons/obj/clothing/ranger.dmi' + icon_state = "ranger_gloves" + +/obj/item/clothing/gloves/ranger/Initialize() + . = ..() + if(icon_state == "ranger_gloves") + name = "[glovecolor] ranger gloves" + icon_state = "[glovecolor]_ranger_gloves" + +/obj/item/clothing/gloves/ranger/black + glovecolor = "black" + +/obj/item/clothing/gloves/ranger/pink + glovecolor = "pink" + +/obj/item/clothing/gloves/ranger/green + glovecolor = "green" + +/obj/item/clothing/gloves/ranger/cyan + glovecolor = "cyan" + +/obj/item/clothing/gloves/ranger/orange + glovecolor = "orange" + +/obj/item/clothing/gloves/ranger/yellow + glovecolor = "yellow" \ No newline at end of file diff --git a/code/modules/clothing/head/hardhat.dm b/code/modules/clothing/head/hardhat.dm index 558f30fbd9..e7d7cee13d 100644 --- a/code/modules/clothing/head/hardhat.dm +++ b/code/modules/clothing/head/hardhat.dm @@ -35,3 +35,37 @@ /obj/item/clothing/head/hardhat/dblue name = "blue hard hat" icon_state = "hardhat0_dblue" + +/obj/item/clothing/head/hardhat/ranger + var/hatcolor = "white" + name = "ranger helmet" + desc = "A special helmet designed for the Go Go ERT-Rangers, able to withstand a pressureless environment, filter gas and provide air. It has thermal vision and sometimes \ + mesons to find breaches, as well as an integrated radio... well, only in the show, of course. This one has none of those features- it just has a flashlight instead." + icon = 'icons/obj/clothing/ranger.dmi' + icon_state = "ranger_helmet" + light_overlay = "helmet_light" + flags_inv = HIDEMASK|HIDEEARS|HIDEEYES|HIDEFACE|BLOCKHAIR + +/obj/item/clothing/head/hardhat/ranger/Initialize() + . = ..() + if(icon_state == "ranger_helmet") + name = "[hatcolor] ranger helmet" + icon_state = "[hatcolor]_ranger_helmet" + +/obj/item/clothing/head/hardhat/ranger/black + hatcolor = "black" + +/obj/item/clothing/head/hardhat/ranger/pink + hatcolor = "pink" + +/obj/item/clothing/head/hardhat/ranger/green + hatcolor = "green" + +/obj/item/clothing/head/hardhat/ranger/cyan + hatcolor = "cyan" + +/obj/item/clothing/head/hardhat/ranger/orange + hatcolor = "orange" + +/obj/item/clothing/head/hardhat/ranger/yellow + hatcolor = "yellow" \ No newline at end of file diff --git a/code/modules/clothing/head/helmet.dm b/code/modules/clothing/head/helmet.dm index f246a8563c..dd290af26e 100644 --- a/code/modules/clothing/head/helmet.dm +++ b/code/modules/clothing/head/helmet.dm @@ -107,7 +107,7 @@ name = "tactical light helmet" desc = "A tan helmet made from advanced ceramic with an integrated tactical flashlight." icon_state = "flexitac" - armor = list(40, bullet = 40, laser = 60, energy = 35, bomb = 30, bio = 0, rad = 0) + armor = list(melee = 40, bullet = 40, laser = 60, energy = 35, bomb = 30, bio = 0, rad = 0) siemens_coefficient = 0.6 brightness_on = 6 light_overlay = "helmet_light_dual_green" diff --git a/code/modules/clothing/shoes/miscellaneous.dm b/code/modules/clothing/shoes/miscellaneous.dm index 0311a0fec2..e2a93f1dff 100644 --- a/code/modules/clothing/shoes/miscellaneous.dm +++ b/code/modules/clothing/shoes/miscellaneous.dm @@ -155,3 +155,35 @@ force = 0 w_class = ITEMSIZE_SMALL species_restricted = null + +/obj/item/clothing/shoes/boots/ranger + var/bootcolor = "white" + name = "ranger boots" + desc = "The Rangers special lightweight hybrid magboots-jetboots perfect for EVA. If only these functions were so easy to copy in reality.\ + These ones are just a well-made pair of boots in appropriate colours." + icon = 'icons/obj/clothing/ranger.dmi' + icon_state = "ranger_boots" + +/obj/item/clothing/shoes/boots/ranger/Initialize() + . = ..() + if(icon_state == "ranger_boots") + name = "[bootcolor] ranger boots" + icon_state = "[bootcolor]_ranger_boots" + +/obj/item/clothing/shoes/boots/ranger/black + bootcolor = "black" + +/obj/item/clothing/shoes/boots/ranger/pink + bootcolor = "pink" + +/obj/item/clothing/shoes/boots/ranger/green + bootcolor = "green" + +/obj/item/clothing/shoes/boots/ranger/cyan + bootcolor = "cyan" + +/obj/item/clothing/shoes/boots/ranger/orange + bootcolor = "orange" + +/obj/item/clothing/shoes/boots/ranger/yellow + bootcolor = "yellow" \ No newline at end of file diff --git a/code/modules/clothing/spacesuits/rig/rig.dm b/code/modules/clothing/spacesuits/rig/rig.dm index a7c3287133..7cf9084435 100644 --- a/code/modules/clothing/spacesuits/rig/rig.dm +++ b/code/modules/clothing/spacesuits/rig/rig.dm @@ -1016,7 +1016,7 @@ M.stop_pulling() if(wearer.pinned.len) - src << "Your host is pinned to a wall by [wearer.pinned[1]]!" + to_chat(src, "Your host is pinned to a wall by [wearer.pinned[1]]!") return 0 // AIs are a bit slower than regular and ignore move intent. diff --git a/code/modules/clothing/under/accessories/accessory_vr.dm b/code/modules/clothing/under/accessories/accessory_vr.dm index 5dc05b44c8..9f1e33f457 100644 --- a/code/modules/clothing/under/accessories/accessory_vr.dm +++ b/code/modules/clothing/under/accessories/accessory_vr.dm @@ -211,13 +211,17 @@ desc = initial(desc) else to_chat(user,"You set the [name]'s tag to '[str]'.") - name = initial(name) + " ([str])" - if(istype(src,/obj/item/clothing/accessory/collar/holo)) - desc = initial(desc) + " The tag says \"[str]\"." - else - desc = initial(desc) + " \"[str]\" has been engraved on the tag." + initialize_tag(str) + +/obj/item/clothing/accessory/collar/proc/initialize_tag(var/tag) + name = initial(name) + " ([tag])" + desc = initial(desc) + " \"[tag]\" has been engraved on the tag." writtenon = 1 +/obj/item/clothing/accessory/collar/holo/initialize_tag(var/tag) + ..() + desc = initial(desc) + " The tag says \"[tag]\"." + /obj/item/clothing/accessory/collar/attackby(obj/item/I, mob/user) if(istype(src,/obj/item/clothing/accessory/collar/holo)) return diff --git a/code/modules/clothing/under/miscellaneous.dm b/code/modules/clothing/under/miscellaneous.dm index c90d575b98..c7ccb6a31a 100644 --- a/code/modules/clothing/under/miscellaneous.dm +++ b/code/modules/clothing/under/miscellaneous.dm @@ -908,3 +908,40 @@ name = "hazard cohesion suit" desc = "An orange cohesion suit with yellow hazard stripes intended to assist Prometheans in maintaining their form and prevent direct skin exposure." icon_state = "cohesionsuit_hazard" + +//Uniforms +//On-mob sprites go in icons\mob\uniform.dmi with the format "white_ranger_uniform_s" - with 'white' replaced with green, cyan, etc... of course! Note the _s - this is not optional. +//Item sprites go in icons\obj\clothing\ranger.dmi with the format "white_ranger_uniform" +/obj/item/clothing/under/color/ranger + var/unicolor = "white" + name = "ranger uniform" + desc = "Made from a space-proof fibre and tight fitting, this uniform usually gives the agile Rangers all kinds of protection while not inhibiting their movement. \ + This costume is instead made from genuine cotton fibre and is based on the season three uniform." + icon = 'icons/obj/clothing/ranger.dmi' + icon_state = "ranger_uniform" + rolled_down = 0 + rolled_sleeves = 0 + +/obj/item/clothing/under/color/ranger/Initialize() + . = ..() + if(icon_state == "ranger_uniform") //allows for custom items + name = "[unicolor] ranger uniform" + icon_state = "[unicolor]_ranger_uniform" + +/obj/item/clothing/under/color/ranger/black + unicolor = "black" + +/obj/item/clothing/under/color/ranger/pink + unicolor = "pink" + +/obj/item/clothing/under/color/ranger/green + unicolor = "green" + +/obj/item/clothing/under/color/ranger/cyan + unicolor = "cyan" + +/obj/item/clothing/under/color/ranger/orange + unicolor = "orange" + +/obj/item/clothing/under/color/ranger/yellow + unicolor = "yellow" \ No newline at end of file diff --git a/code/modules/economy/price_list_yw.dm b/code/modules/economy/price_list_yw.dm new file mode 100644 index 0000000000..893af8f6d8 --- /dev/null +++ b/code/modules/economy/price_list_yw.dm @@ -0,0 +1,2 @@ +/obj/item/weapon/storage/fancy/cigarettes/yw/mauser + price_tag = 18 \ No newline at end of file diff --git a/code/modules/events/event_container.dm b/code/modules/events/event_container.dm index a4c55b27ae..79c294c5ac 100644 --- a/code/modules/events/event_container.dm +++ b/code/modules/events/event_container.dm @@ -142,7 +142,6 @@ var/global/list/severity_to_string = list(EVENT_LEVEL_MUNDANE = "Mundane", EVENT new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust , 60, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400), - //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 50), //VORESTATION AI TEMPORARY REMOVAL new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50)), diff --git a/code/modules/events/event_container_vr.dm b/code/modules/events/event_container_vr.dm index 0212435c71..6f5e8dada2 100644 --- a/code/modules/events/event_container_vr.dm +++ b/code/modules/events/event_container_vr.dm @@ -28,36 +28,38 @@ /datum/event_container/mundane/New() available_events = list( // Severity level, event name, even type, base weight, role weights, one shot, min weight, max weight. Last two only used if set and non-zero - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 200), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Nothing", /datum/event/nothing, 400), // Bluescreens APCs, but they still work new /datum/event_meta(EVENT_LEVEL_MUNDANE, "APC Damage", /datum/event/apc_damage, 20, list(ASSIGNMENT_ENGINEER = 20)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Brand Intelligence",/datum/event/brand_intelligence,20, list(ASSIGNMENT_JANITOR = 25), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Camera Damage", /datum/event/camera_damage, 20, list(ASSIGNMENT_ENGINEER = 20)), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Canister Leak", /datum/event/canister_leak, 10, list(ASSIGNMENT_ENGINEER = 20)), - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 0, 0, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Economic News", /datum/event/economic_event, 300), - //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 1, list(), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 10), 1), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Lotto", /datum/event/money_lotto, 0, list(ASSIGNMENT_ANY = 1), 1, 5, 15), //new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Mundane News", /datum/event/mundane_news, 300), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "PDA Spam", /datum/event/pda_spam, 0, list(ASSIGNMENT_ANY = 4), 1, 25, 50), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Shipping Error", /datum/event/shipping_error , 30, list(ASSIGNMENT_ANY = 2), 0), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Trivial News", /datum/event/trivial_news, 400), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lore News", /datum/event/lore_news, 400), // Spawns mice, lizards, or dud spiderlings new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Vermin Infestation",/datum/event/infestation, 100, list(ASSIGNMENT_JANITOR = 100), 1), // Rot only weakens walls, not destroy them new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Wallrot", /datum/event/wallrot, 0, list(ASSIGNMENT_ENGINEER = 30, ASSIGNMENT_GARDENER = 50), 1), ) add_disabled_events(list( - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Lost Carp", /datum/event/carp_migration, 20, list(ASSIGNMENT_SECURITY = 10), 1), - new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Money Hacker", /datum/event/money_hacker, 0, list(ASSIGNMENT_ANY = 4), 1, 10, 25), + new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Ian Storm", /datum/event/ianstorm, 1, list(), 1), new /datum/event_meta(EVENT_LEVEL_MUNDANE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) /datum/event_container/moderate/New() available_events = list( - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Nothing", /datum/event/nothing, 800), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Nothing", /datum/event/nothing, 1600), // Leaks gas into an unoccupied room. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Carp School", /datum/event/carp_migration, 0, list(ASSIGNMENT_SECURITY = 30), 1), // Just disables comms for a short while. new /datum/event_meta(EVENT_LEVEL_MODERATE, "Communication Blackout", /datum/event/communications_blackout, 500, list(ASSIGNMENT_AI = 150, ASSIGNMENT_SECURITY = 120), 1), // Just blows out a few lights @@ -71,37 +73,36 @@ // Opens doors in brig. So just RP fun new /datum/event_meta(EVENT_LEVEL_MODERATE, "Prison Break", /datum/event/prison_break, 10, list(ASSIGNMENT_SECURITY = 100), 1), // Radiation, but only in space. + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 0, list(ASSIGNMENT_SECURITY = 20), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Solar Storm", /datum/event/solar_storm, 30, list(ASSIGNMENT_ENGINEER = 40, ASSIGNMENT_SECURITY = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 0, list(ASSIGNMENT_ENGINEER = 20), 1, 0, 50), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Virology Breach", /datum/event/prison_break/virology, 0, list(ASSIGNMENT_MEDICAL = 100), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Xenobiology Breach", /datum/event/prison_break/xenobiology, 0, list(ASSIGNMENT_SCIENCE = 100), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 20, ASSIGNMENT_ENGINEER = 30), 1), + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 30, list(ASSIGNMENT_SECURITY = 30), 1), //Evil grubs that drain station power slightly + new /datum/event_meta(EVENT_LEVEL_MODERATE, "Grub Infestation", /datum/event/grub_infestation, 0, list(ASSIGNMENT_SECURITY = 10, ASSIGNMENT_ENGINEER = 30), 1), ) add_disabled_events(list( new /datum/event_meta(EVENT_LEVEL_MODERATE, "Appendicitis", /datum/event/spontaneous_appendicitis, 0, list(ASSIGNMENT_MEDICAL = 30), 1), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Carp School", /datum/event/carp_migration, 100, list(ASSIGNMENT_ENGINEER = 20, ASSIGNMENT_SECURITY = 30), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Meteor Shower", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 20)), // Not bad (dorms are shielded) but inconvenient new /datum/event_meta(EVENT_LEVEL_MODERATE, "Radiation Storm", /datum/event/radiation_storm, 50, list(ASSIGNMENT_MEDICAL = 50), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Random Antagonist", /datum/event/random_antag, 2.5, list(ASSIGNMENT_SECURITY = 1), 1, 0, 5), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Rogue Drones", /datum/event/rogue_drone, 20, list(ASSIGNMENT_SECURITY = 60)), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Space Dust", /datum/event/dust, 80, list(ASSIGNMENT_ENGINEER = 30)), - new /datum/event_meta(EVENT_LEVEL_MODERATE, "Spider Infestation", /datum/event/spider_infestation, 100, list(ASSIGNMENT_SECURITY = 40), 1), new /datum/event_meta(EVENT_LEVEL_MODERATE, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) /datum/event_container/major/New() available_events = list( - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 900), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Nothing", /datum/event/nothing, 3600), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Atmos Leak", /datum/event/atmos_leak, 30, list(ASSIGNMENT_ENGINEER = 25), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15) ,1) + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Strike", /datum/event/meteor_strike, 10, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 7), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 5), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0, list(ASSIGNMENT_ANY = 5), 1), ) add_disabled_events(list( new /datum/event_meta(EVENT_LEVEL_MAJOR, "Blob", /datum/event/blob, 10, list(ASSIGNMENT_ENGINEER = 60), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Carp Migration", /datum/event/carp_migration, 10, list(ASSIGNMENT_SECURITY = 10), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Containment Breach", /datum/event/prison_break/station,0,list(ASSIGNMENT_ANY = 5)), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 30), 1), - new /datum/event_meta(EVENT_LEVEL_MAJOR, "Space Vines", /datum/event/spacevine, 20, list(ASSIGNMENT_ENGINEER = 15), 1), + new /datum/event_meta(EVENT_LEVEL_MAJOR, "Meteor Wave", /datum/event/meteor_wave, 30, list(ASSIGNMENT_ENGINEER = 15), 1), new /datum/event_meta(EVENT_LEVEL_MAJOR, "Supply Demand", /datum/event/supply_demand, 0, list(ASSIGNMENT_ANY = 5, ASSIGNMENT_SCIENCE = 15, ASSIGNMENT_GARDENER = 10, ASSIGNMENT_ENGINEER = 10, ASSIGNMENT_MEDICAL = 15), 1), )) diff --git a/code/modules/events/ian_storm_vr.dm b/code/modules/events/ian_storm_vr.dm index 2ddee490d9..574df331bb 100644 --- a/code/modules/events/ian_storm_vr.dm +++ b/code/modules/events/ian_storm_vr.dm @@ -23,7 +23,7 @@ for(var/i = 0, i < 3, i++) var/turf/target = get_step(T, pick(alldirs)) if(target && istype(target, /turf/simulated/floor)) - var/mob/living/simple_mob/corgi/Ian/doge = new(target) + var/mob/living/simple_mob/animal/passive/dog/corgi/Ian/doge = new(target) doge.name = "Ian " + pick("Alpha", "Beta", "Chi", "Delta", "Epsilon", "Phi", "Gamma", "Eta", "Iota", "Kappa", "Lambda", "Omicron", "Theta", "Rho", "Sigma", "Tau", "Upsilon", "Omega", "Psi", "Zeta") diff --git a/code/modules/events/radiation_storm.dm b/code/modules/events/radiation_storm.dm index 6140ae2de0..13f853dd3c 100644 --- a/code/modules/events/radiation_storm.dm +++ b/code/modules/events/radiation_storm.dm @@ -31,7 +31,7 @@ /datum/event/radiation_storm/proc/radiate() var/radiation_level = rand(15, 35) for(var/z in using_map.station_levels) - radiation_repository.z_radiate(locate(1, 1, z), radiation_level, 1) + SSradiation.z_radiate(locate(1, 1, z), radiation_level, 1) for(var/mob/living/carbon/C in living_mob_list) var/area/A = get_area(C) diff --git a/code/modules/events/spider_infestation.dm b/code/modules/events/spider_infestation.dm index 7eb0be92cc..6d0be161c5 100644 --- a/code/modules/events/spider_infestation.dm +++ b/code/modules/events/spider_infestation.dm @@ -23,6 +23,6 @@ while((spawncount >= 1) && vents.len) var/obj/vent = pick(vents) - new /obj/effect/spider/spiderling(vent.loc) + new /obj/effect/spider/spiderling/virgo(vent.loc) //VOREStation Edit - No nurses vents -= vent spawncount-- diff --git a/code/modules/examine/descriptions/smokeables_yw.dm b/code/modules/examine/descriptions/smokeables_yw.dm new file mode 100644 index 0000000000..e3ece0df2f --- /dev/null +++ b/code/modules/examine/descriptions/smokeables_yw.dm @@ -0,0 +1,2 @@ +/obj/item/weapon/storage/fancy/cigarettes/yw/mauser + description_fluff = "f13 is a side brand of the Mauser family. The Mauser brand is an old earth, German company that has managed to stay afloat throughout the years, they mainly produce projectile weapons that are known to be extremely efficient and powerful. They are also known for their Gorilla class mech which is a force to be reckoned with. They have a wide range of other branded products, including this cigarette packet." \ No newline at end of file diff --git a/code/modules/flufftext/Dreaming.dm b/code/modules/flufftext/Dreaming.dm index 964ea8dbed..911931eda3 100644 --- a/code/modules/flufftext/Dreaming.dm +++ b/code/modules/flufftext/Dreaming.dm @@ -23,7 +23,7 @@ mob/living/carbon/proc/dream() spawn(0) for(var/i = rand(1,4),i > 0, i--) - src << "... [pick(dreams)] ..." + to_chat(src, "... [pick(dreams)] ...") sleep(rand(40,70)) if(paralysis <= 0) dreaming = 0 diff --git a/code/modules/flufftext/Hallucination.dm b/code/modules/flufftext/Hallucination.dm index f70873f226..cdd497c016 100644 --- a/code/modules/flufftext/Hallucination.dm +++ b/code/modules/flufftext/Hallucination.dm @@ -28,13 +28,13 @@ mob/living/carbon/proc/handle_hallucinations() switch(halpick) if(0 to 15) //Screwy HUD - //src << "Screwy HUD" + //to_chat(src, "Screwy HUD") hal_screwyhud = pick(1,2,3,3,4,4) spawn(rand(100,250)) hal_screwyhud = 0 if(16 to 25) //Strange items - //src << "Traitor Items" + //to_chat(src, "Traitor Items") if(!halitem) halitem = new var/list/slots_free = list(ui_lhand,ui_rhand) @@ -82,7 +82,7 @@ mob/living/carbon/proc/handle_hallucinations() halitem = null if(26 to 40) //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halimage) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) @@ -92,13 +92,13 @@ mob/living/carbon/proc/handle_hallucinations() switch(rand(1,3)) if(1) - //src << "Space" + //to_chat(src, "Space") halimage = image('icons/turf/space.dmi',target,"[rand(1,25)]",TURF_LAYER) if(2) - //src << "Fire" + //to_chat(src, "Fire") halimage = image('icons/effects/fire.dmi',target,"1",TURF_LAYER) if(3) - //src << "C4" + //to_chat(src, "C4") halimage = image('icons/obj/assemblies.dmi',target,"plastic-explosive2",OBJ_LAYER+0.01) @@ -110,7 +110,7 @@ mob/living/carbon/proc/handle_hallucinations() if(41 to 65) //Strange audio - //src << "Strange Audio" + //to_chat(src, "Strange Audio") switch(rand(1,12)) if(1) src << 'sound/machines/airlock.ogg' if(2) @@ -144,7 +144,7 @@ mob/living/carbon/proc/handle_hallucinations() src << pick(creepyasssounds) if(66 to 70) //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halbody) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) diff --git a/code/modules/food/food/snacks.dm b/code/modules/food/food/snacks.dm index 379a151051..befb6a5fbf 100644 --- a/code/modules/food/food/snacks.dm +++ b/code/modules/food/food/snacks.dm @@ -3748,6 +3748,24 @@ reagents.add_reagent("iron", 3) bitesize = 4 +/obj/item/weapon/reagent_containers/food/snacks/liquidvitamin + name = "\improper VitaPaste Ration" + desc = "A variant of the liquidfood ration, designed for any carbon-based life. Somehow worse than regular liquidfood. Should this be crunchy?" + icon_state = "liquidvitamin" + trash = /obj/item/trash/liquidvitamin + filling_color = "#A8A8A8" + survivalfood = TRUE + center_of_mass = list("x"=16, "y"=15) + +/obj/item/weapon/reagent_containers/food/snacks/liquidvitamin/Initialize() + ..() + reagents.add_reagent("flour", 20) + reagents.add_reagent("tricordrazine", 5) + reagents.add_reagent("paracetamol", 5) + reagents.add_reagent("enzyme", 1) + reagents.add_reagent("iron", 3) + bitesize = 4 + /obj/item/weapon/reagent_containers/food/snacks/meatcube name = "cubed meat" desc = "Fried, salted lean meat compressed into a cube. Not very appetizing." diff --git a/code/modules/food/glass/bottle_vr.dm b/code/modules/food/glass/bottle_vr.dm index e357de97fa..fc1595b699 100644 --- a/code/modules/food/glass/bottle_vr.dm +++ b/code/modules/food/glass/bottle_vr.dm @@ -137,3 +137,12 @@ icon = 'icons/obj/chemical.dmi' icon_state = "bottle-3" prefill = list("unsorbitol" = 60) + +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose + name = "glucose container" + desc = "A container of glucose. Used to treat bloodloss through a hardsuit in unconscious patients." + +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose/Initialize() + . = ..() + reagents.add_reagent("glucose", 100) + on_reagent_change() diff --git a/code/modules/food/recipe_dump.dm b/code/modules/food/recipe_dump.dm index a458a568cf..781ef7fc2f 100644 --- a/code/modules/food/recipe_dump.dm +++ b/code/modules/food/recipe_dump.dm @@ -214,4 +214,4 @@ html += "" src << browse(html, "window=recipes;file=recipes_drinks.html;display=0") - src << "In your byond cache, recipe-xxx.png files and recipes_drinks.html and recipes_food.html now exist. Place recipe-xxx.png files in a subfolder named 'imgrecipes' wherever you put them. The file will take a food.css or drinks.css file if in the same path." + to_chat(src, "In your byond cache, recipe-xxx.png files and recipes_drinks.html and recipes_food.html now exist. Place recipe-xxx.png files in a subfolder named 'imgrecipes' wherever you put them. The file will take a food.css or drinks.css file if in the same path.") diff --git a/code/modules/gamemaster/actions/radiation_storm.dm b/code/modules/gamemaster/actions/radiation_storm.dm index 243af5dbee..678ad16ab6 100644 --- a/code/modules/gamemaster/actions/radiation_storm.dm +++ b/code/modules/gamemaster/actions/radiation_storm.dm @@ -41,7 +41,7 @@ /datum/gm_action/radiation_storm/proc/radiate() var/radiation_level = rand(15, 35) for(var/z in using_map.station_levels) - radiation_repository.z_radiate(locate(1, 1, z), radiation_level, 1) + SSradiation.z_radiate(locate(1, 1, z), radiation_level, 1) for(var/mob/living/carbon/C in living_mob_list) var/area/A = get_area(C) diff --git a/code/modules/hydroponics/beekeeping/beehive.dm b/code/modules/hydroponics/beekeeping/beehive.dm index 7af5ce286c..d215ab3dac 100644 --- a/code/modules/hydroponics/beekeeping/beehive.dm +++ b/code/modules/hydroponics/beekeeping/beehive.dm @@ -241,6 +241,8 @@ icon = 'icons/obj/beekeeping.dmi' icon_state = "wax" default_type = "wax" + pass_color = TRUE + strict_color_stacking = TRUE /obj/item/stack/material/wax/New() ..() @@ -252,6 +254,7 @@ icon_colour = "#fff343" melting_point = T0C+300 weight = 1 + pass_stack_colors = TRUE var/global/list/datum/stack_recipe/wax_recipes = list( \ new/datum/stack_recipe("candle", /obj/item/weapon/flame/candle) \ diff --git a/code/modules/hydroponics/grown.dm b/code/modules/hydroponics/grown.dm index 81018de61c..428f50e696 100644 --- a/code/modules/hydroponics/grown.dm +++ b/code/modules/hydroponics/grown.dm @@ -24,47 +24,50 @@ if(planttype) plantname = planttype - if(!plantname) - return +/obj/item/weapon/reagent_containers/food/snacks/grown/Initialize() + ..() + spawn() + if(!plantname) + return - if(!plant_controller) - sleep(250) // ugly hack, should mean roundstart plants are fine. - if(!plant_controller) - world << "Plant controller does not exist and [src] requires it. Aborting." - qdel(src) - return + if(!plant_controller) + sleep(250) // ugly hack, should mean roundstart plants are fine. + if(!plant_controller) + world << "Plant controller does not exist and [src] requires it. Aborting." + qdel(src) + return - seed = plant_controller.seeds[plantname] + seed = plant_controller.seeds[plantname] - if(!seed) - return + if(!seed) + return - name = "[seed.seed_name]" - trash = seed.get_trash_type() + name = "[seed.seed_name]" + trash = seed.get_trash_type() - update_icon() + update_icon() - if(!seed.chems) - return + if(!seed.chems) + return - potency = seed.get_trait(TRAIT_POTENCY) + potency = seed.get_trait(TRAIT_POTENCY) - for(var/rid in seed.chems) - var/list/reagent_data = seed.chems[rid] - if(reagent_data && reagent_data.len) - var/rtotal = reagent_data[1] - var/list/data = list() - if(reagent_data.len > 1 && potency > 0) - rtotal += round(potency/reagent_data[2]) - if(rid == "nutriment") - data[seed.seed_name] = max(1,rtotal) + for(var/rid in seed.chems) + var/list/reagent_data = seed.chems[rid] + if(reagent_data && reagent_data.len) + var/rtotal = reagent_data[1] + var/list/data = list() + if(reagent_data.len > 1 && potency > 0) + rtotal += round(potency/reagent_data[2]) + if(rid == "nutriment") + data[seed.seed_name] = max(1,rtotal) - reagents.add_reagent(rid,max(1,rtotal),data) - update_desc() - if(reagents.total_volume > 0) - bitesize = 1+round(reagents.total_volume / 2, 1) - if(seed.get_trait(TRAIT_STINGS)) - force = 1 + reagents.add_reagent(rid,max(1,rtotal),data) + update_desc() + if(reagents.total_volume > 0) + bitesize = 1+round(reagents.total_volume / 2, 1) + if(seed.get_trait(TRAIT_STINGS)) + force = 1 /obj/item/weapon/reagent_containers/food/snacks/grown/proc/update_desc() @@ -154,6 +157,12 @@ overlays |= plant_icon /obj/item/weapon/reagent_containers/food/snacks/grown/Crossed(var/mob/living/M) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = M + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(seed && seed.get_trait(TRAIT_JUICY) == 2) if(istype(M)) diff --git a/code/modules/hydroponics/spreading/spreading_response.dm b/code/modules/hydroponics/spreading/spreading_response.dm index 8a8ceabfeb..1a2e46283e 100644 --- a/code/modules/hydroponics/spreading/spreading_response.dm +++ b/code/modules/hydroponics/spreading/spreading_response.dm @@ -20,6 +20,12 @@ manual_unbuckle(user) /obj/effect/plant/Crossed(atom/movable/O) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = O + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(isliving(O)) trodden_on(O) diff --git a/code/modules/library/hardcode_library/_library.dm b/code/modules/library/hardcode_library/_library.dm new file mode 100644 index 0000000000..03364fea0a --- /dev/null +++ b/code/modules/library/hardcode_library/_library.dm @@ -0,0 +1,61 @@ +/* + * Home of the New (NOV 1st, 2019) library books. + */ + +/obj/item/weapon/book/custom_library + name = "Book" + desc = "A hardbound book." + description_info = "This book is printed from the custom repo. If you can see this, something went wrong." + + icon = 'icons/obj/custom_books.dmi' + icon_state = "book" + + // This is the ckey of the book's author. + var/origkey = null + author = "UNKNOWN" + +/obj/item/weapon/book/custom_library/fiction + libcategory = "Fiction" + +/obj/item/weapon/book/custom_library/nonfiction + libcategory = "Non-Fiction" + +/obj/item/weapon/book/custom_library/reference + libcategory = "Reference" + +/obj/item/weapon/book/custom_library/religious + libcategory = "Religious" +/* +/obj/item/weapon/book/custom_library/adult + libcategory = "Adult" +*/ +/obj/item/weapon/book/bundle/custom_library + name = "Book" + desc = "A hardbound book." + description_info = "This book is printed from the custom repo. If you can see this, something went wrong." + + icon = 'icons/obj/custom_books.dmi' + icon_state = "book" + + // This is the ckey of the book's author. + var/origkey = null + author = "UNKNOWN" + + page = 1 //current page + pages = list() //the contents of each page + +/obj/item/weapon/book/bundle/custom_library/fiction + libcategory = "Fiction" + +/obj/item/weapon/book/bundle/custom_library/nonfiction + libcategory = "Non-Fiction" + +/obj/item/weapon/book/bundle/custom_library/reference + libcategory = "Reference" + +/obj/item/weapon/book/bundle/custom_library/religious + libcategory = "Religious" +/* +/obj/item/weapon/book/bundle/custom_library/adult + libcategory = "Adult" +*/ diff --git a/code/modules/library/lib_items.dm b/code/modules/library/lib_items.dm index 3c7ebec377..9b9be0d6c8 100644 --- a/code/modules/library/lib_items.dm +++ b/code/modules/library/lib_items.dm @@ -147,6 +147,7 @@ var/dat // Actual page content var/due_date = 0 // Game time in 1/10th seconds var/author // Who wrote the thing, can be changed by pen or PC. It is not automatically assigned + var/libcategory = "Miscellaneous" // The library category this book sits in. "Fiction", "Non-Fiction", "Adult", "Reference", "Religion" var/unique = 0 // 0 - Normal book, 1 - Should not be treated as normal book, unable to be copied, unable to be modified var/title // The real name of the book. var/carved = 0 // Has the book been hollowed out for use as a secret storage item? @@ -260,6 +261,74 @@ M << browse("Penned by [author].
" + "[dat]", "window=book") user.setClickCooldown(DEFAULT_QUICK_COOLDOWN) //to prevent spam +/* +* Book Bundle (Multi-page book) +*/ + +/obj/item/weapon/book/bundle + var/page = 1 //current page + var/list/pages = list() //the contents of each page + +/obj/item/weapon/book/bundle/proc/show_content(mob/user as mob) + var/dat + var/obj/item/weapon/W = pages[page] + // first + if(page == 1) + dat+= "
Front
" + dat+= "
Next Page


" + // last + else if(page == pages.len) + dat+= "
Previous Page
" + dat+= "
Back


" + // middle pages + else + dat+= "
Previous Page
" + dat+= "
Next Page


" + if(istype(pages[page], /obj/item/weapon/paper)) + var/obj/item/weapon/paper/P = W + if(!(istype(usr, /mob/living/carbon/human) || isobserver(usr) || istype(usr, /mob/living/silicon))) + dat += "[P.name][stars(P.info)][P.stamps]" + else + dat += "[P.name][P.info][P.stamps]" + user << browse(dat, "window=[name]") + else if(istype(pages[page], /obj/item/weapon/photo)) + var/obj/item/weapon/photo/P = W + user << browse_rsc(P.img, "tmp_photo.png") + user << browse(dat + "[P.name]" \ + + "" \ + + "
Written on the back:
[P.scribble]" : ]"\ + + "", "window=[name]") + else if(!isnull(pages[page])) + if(!(istype(usr, /mob/living/carbon/human) || isobserver(usr) || istype(usr, /mob/living/silicon))) + dat += "Page [page][stars(pages[page])]" + else + dat += "Page [page][pages[page]]" + user << browse(dat, "window=[name]") + +/obj/item/weapon/book/bundle/attack_self(mob/user as mob) + src.show_content(user) + add_fingerprint(usr) + update_icon() + return + +/obj/item/weapon/book/bundle/Topic(href, href_list) + if(..()) + return 1 + if((src in usr.contents) || (istype(src.loc, /obj/item/weapon/folder) && (src.loc in usr.contents))) + usr.set_machine(src) + if(href_list["next_page"]) + if(page != pages.len) + page++ + playsound(src.loc, "pageturn", 50, 1) + if(href_list["prev_page"]) + if(page > 1) + page-- + playsound(src.loc, "pageturn", 50, 1) + src.attack_self(usr) + updateUsrDialog() + else + to_chat(usr, "You need to hold it in your hands!") /* * Barcode Scanner diff --git a/code/modules/library/lib_machines.dm b/code/modules/library/lib_machines.dm index 716b85f2f1..39070779ca 100644 --- a/code/modules/library/lib_machines.dm +++ b/code/modules/library/lib_machines.dm @@ -113,7 +113,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f * Library Computer */ // TODO: Make this an actual /obj/machinery/computer that can be crafted from circuit boards and such -// It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it. +// It is August 22nd, 2012... This TODO has already been here for months.. I wonder how long it'll last before someone does something about it. // Nov 2019. Nope. /obj/machinery/librarycomp name = "Check-In/Out Computer" icon = 'icons/obj/library.dmi' @@ -133,6 +133,40 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f var/bibledelay = 0 // LOL NO SPAM (1 minute delay) -- Doohl + var/static/list/all_books + + var/static/list/base_genre_books + +/obj/machinery/librarycomp/Initialize() + ..() + + if(!base_genre_books || !base_genre_books.len) + base_genre_books = list( + /obj/item/weapon/book/custom_library/fiction, + /obj/item/weapon/book/custom_library/nonfiction, + /obj/item/weapon/book/custom_library/reference, + /obj/item/weapon/book/custom_library/religious, + /obj/item/weapon/book/bundle/custom_library/fiction, + /obj/item/weapon/book/bundle/custom_library/nonfiction, + /obj/item/weapon/book/bundle/custom_library/reference, + /obj/item/weapon/book/bundle/custom_library/religious + ) + + if(!all_books || !all_books.len) + all_books = list() + + for(var/path in subtypesof(/obj/item/weapon/book/codex/lore)) + var/obj/item/weapon/book/C = new path(null) + all_books[C.name] = C + + for(var/path in subtypesof(/obj/item/weapon/book/custom_library) - base_genre_books) + var/obj/item/weapon/book/B = new path(null) + all_books[B.title] = B + + for(var/path in subtypesof(/obj/item/weapon/book/bundle/custom_library) - base_genre_books) + var/obj/item/weapon/book/M = new path(null) + all_books[M.title] = M + /obj/machinery/librarycomp/attack_hand(var/mob/user as mob) usr.set_machine(src) var/dat = "Book Inventory Management\n" // @@ -144,7 +178,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f 3. Check out a Book
4. Connect to External Archive
5. Upload New Title to Archive
- 6. Print a Bible
"} + 6. Print a Bible
+ 8. Access NT Internal Archive
"} if(src.emagged) dat += "7. Access the Forbidden Lore Vault
" if(src.arcanecheckout) @@ -190,8 +225,11 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f (Commit Entry)
(Return to main menu)
"} if(4) - dat += "

External Archive

" + dat += "

External Archive

" //VOREStation Edit establish_old_db_connection() + + dat += "

Warning: System Administrator has slated this archive for removal. Personal uploads should be taken to the NT board of internal literature.

" + if(!dbcon_old.IsConnected()) dat += "ERROR: Unable to contact External Archive. Please contact your system administrator for assistance." else @@ -210,6 +248,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f dat += "" dat += "
(Return to main menu)
" if(5) + //dat += "

ERROR

" //VOREStation Removal + //dat+= "Library Database is in Secure Management Mode.
\ //VOREStation Removal + //Contact a System Administrator for more information.
" //VOREStation Removal + //VOREstation Edit Start dat += "

Upload a New Title

" if(!scanner) for(var/obj/machinery/libraryscanner/S in range(9)) @@ -227,12 +269,30 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f dat += {"Author: [scanner.cache.author]
Category: [upload_category]
\[Upload\]
"} + //VOREStation Edit End dat += "(Return to main menu)
" if(7) dat += {"

Accessing Forbidden Lore Vault v 1.3

Are you absolutely sure you want to proceed? EldritchTomes Inc. takes no responsibilities for loss of sanity resulting from this action.

Yes.
No.
"} + if(8) + dat += "

NT Internal Archive

" + if(!all_books || !all_books.len) + dat += "ERROR Something has gone seriously wrong. Contact System Administrator for more information." + else + dat += {" + " + dat += "
TITLE\[Order\]
" + dat += "
(Return to main menu)
" //dat += "Close

" user << browse(dat, "window=library") @@ -293,6 +353,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f if("7") screenstate = 7 + if("8") + screenstate = 8 if(href_list["arccheckout"]) if(src.emagged) src.arcanecheckout = 1 @@ -328,6 +390,8 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f var/newcategory = input("Choose a category: ") in list("Fiction", "Non-Fiction", "Adult", "Reference", "Religion") if(newcategory) upload_category = newcategory + + //VOREStation Edit Start if(href_list["upload"]) if(scanner) if(scanner.cache) @@ -356,6 +420,7 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f else log_game("[usr.name]/[usr.key] has uploaded the book titled [scanner.cache.name], [length(scanner.cache.dat)] signs") alert("Upload Complete.") + //VOREStation Edit End if(href_list["targetid"]) var/sqlid = sanitizeSQL(href_list["targetid"]) @@ -392,6 +457,10 @@ datum/borrowbook // Datum used to keep track of who has borrowed what when and f spawn() src.Topic(nhref, params2list(nhref), src) if(href_list["sort"] in list("author", "title", "category")) sortby = href_list["sort"] + if(href_list["hardprint"]) + var/newpath = href_list["hardprint"] + var/obj/item/weapon/book/NewBook = new newpath(get_turf(src)) + NewBook.name = "Book: [NewBook.name]" src.add_fingerprint(usr) src.updateUsrDialog() return diff --git a/code/modules/lore_codex/codex.dm b/code/modules/lore_codex/codex.dm index 126c470de4..c1cf1b3200 100644 --- a/code/modules/lore_codex/codex.dm +++ b/code/modules/lore_codex/codex.dm @@ -24,13 +24,14 @@ has the words 'Don't Panic' in small, friendly letters on the cover." icon_state = "codex" root_type = /datum/lore/codex/category/main_virgo_lore + libcategory = "Reference" /obj/item/weapon/book/codex/lore/robutt name = "A Buyer's Guide to Artificial Bodies" desc = "Recommended reading for the newly cyborgified, new positronics, and the upwardly-mobile FBP." icon_state = "codex_robutt" root_type = /datum/lore/codex/category/main_robutts - + libcategory = "Reference" /obj/item/weapon/book/codex/lore/news name = "Daedalus Pocket Newscaster" @@ -38,6 +39,7 @@ icon_state = "newscodex" w_class = ITEMSIZE_SMALL root_type = /datum/lore/codex/category/main_news + libcategory = "Reference" /* //VORESTATION REMOVAL // Combines SOP/Regs/Law @@ -48,4 +50,5 @@ icon_state = "corp_regs" root_type = /datum/lore/codex/category/main_corp_regs throwforce = 5 // Throw the book at 'em. + libcategory = "Reference" */ diff --git a/code/modules/lore_codex/news_data/main.dm b/code/modules/lore_codex/news_data/main.dm index a2f5f43043..277c38e175 100644 --- a/code/modules/lore_codex/news_data/main.dm +++ b/code/modules/lore_codex/news_data/main.dm @@ -4,6 +4,19 @@ region. Each is labeled by date of publication and title. This list is self-updating, and from time to time the publisher will push new \ articles. You are encouraged to check back frequently." children = list( + /datum/lore/codex/page/article66, + /datum/lore/codex/page/article65, + /datum/lore/codex/page/article64, + /datum/lore/codex/page/article63, + /datum/lore/codex/page/article62, + /datum/lore/codex/page/article61, + /datum/lore/codex/page/article60, + /datum/lore/codex/page/article59, + /datum/lore/codex/page/article58, + /datum/lore/codex/page/article57, + /datum/lore/codex/page/article56, + /datum/lore/codex/page/article55, + /datum/lore/codex/page/article54, /datum/lore/codex/page/article53, /datum/lore/codex/page/article52, /datum/lore/codex/page/article51, @@ -650,4 +663,122 @@

\ Candidate Freya Singh, a career investment banker, spent much of today's debate advocating for reduced safety regulations and the apparent overturning of the Five Points, raising eyebrows across the system. Singh's office claims that her statements were 'a joke', but we do not feel that this is a laughing matter.\

\ - In related news, Shadow Coalition candidate Phaedrus remains under a profanity filter 'house arrest' for the remainder of the election." \ No newline at end of file + In related news, Shadow Coalition candidate Phaedrus remains under a profanity filter 'house arrest' for the remainder of the election." + +/datum/lore/codex/page/article54 + name = "06/28/63 - Vir Finalizes Dates for Election Voting" + data = "The Vir Governmental Authority has confirmed that voting for Vir's governorship and Colonial Assembly seats will take place on the 29th and 30th of June, with an additional voting period set for Wednesday the 3rd of July to allow for out-of-system and full-time weekend employees to cast their votes. No exit poll information will be released until the final votes have been cast, and final results are expected to be announced within another week.\ +

\ + According to a Oculum poll, Lusia Hainirsdottir is expected to comfortably take a seat, though the certainty of her governor position is not hard set. Candidates Sao, Singh and Jorg are trailing not far behind, but will all have to make good showings this weekend if they hope for electoral success. In an unexpected surge among minority species, the Shadow Coalition's Tajaran candidate Kurah Zarshir is leading the polls in certain outlying and orbital communities.\ +

\ + Not sure how to vote, if you can vote, or who to vote for? Check out the official election website at your-choice-vir.virgov.xo.vr" + +/datum/lore/codex/page/article55 + name = "06/29/63 - Morpheus Cyberkinetics To Split Assets" + data = "The Morpheus Cyberkenetics Corporation is to split into two distinct entities operating under a single board of trustees, in light of their Almach branch's apparent involvement in the ongoing war after last month's 'unintentional' corporate drone strikes. Citing 'Severe communications disruptions' between its operations and assets on either side of the cordon since it was put in place last year, the SolGov-side corporation is to become 'Morpheus Sol', retaining most assets and current corporate headquarters, and its Almach counterpart 'Morpheus Shelf', which is to be based out of the administration station MAS Sophia Jr., located in the El system.'\ +

\ + The principle victim of the Aetolian coup, Nanotrasen, has seen most of their considerable Almachi investment nationalized by the secessionist government, as has Xion and other major Almachi organizations. Most surviving corporate exclaves have been effectively written off by their parent company for the duration of the conflict, due to the severe difficulties effectively conducting trade across the militarized border. Before today, the sole exception was Morpheus, whose involvement in the secession prevented any seizing of their assets. It seems, however, that even the sardonic positronic corporation is not immune to the difficulties of doing business in the Almach Rim region.\ +

\ + Member of the Board Chock Full of Sardines introduced the proposal by saying, 'Our goal here is not being shot. Together with leading economic scientists, we've devised a scheme that will allow us to be shot for illegal smuggling almost ninety percent less often.' They defended the confusing and offensive choice of name in 'Sophia Jr.', seemingly intended as an insult to longstanding rival Sophia, by claiming, 'It's absolutely hilarious.'" + +/datum/lore/codex/page/article56 + name = "06/30/63 - Almach Leak Confirms 'Super-weapon' in Whythe" + data = "Solar Confederate Government Intelligence has this afternoon confirmed the presence of a so-called 'Super-weapon' in the distant Whythe system, after an apparent intelligence leak was posted to the exonet in the early hours of this morning. According to a spokesperson for the Solar Fleet, the public were not made aware of the super-weapon as the military 'have no reason to believe that the weapon poses any threat to civilian targets within SolGov space at this time, and there is no reason to cause panic with what amounts to the announcement of an Almachi propaganda tool intended to sow discord with bold threats of overwhelming power. This morning's leak achieves nothing but serving the Association's schemes. Keeping this so-called super-weapon - and I hesitate to use that term - a secret seems to have been last on their list of priorities.'\ +

\ + According to the intelligence documents released this morning and widely spread within minutes of upload, the 'super-weapon' is a colossal space-bound structure equipped with 'newly developed bluespace technology', though its exact purpose or capabilities have not been confirmed by either side.\ +

\ + Additionally, the Solar Fleet has announced that an unnamed individual within the intelligence service has been placed under arrest in connection with the leak." + +/datum/lore/codex/page/article57 + name = "07/04/63 - Exit Polls Suggest Shadow Coalition Win in Vir" + data = "According to the first exit poll data released after Vir Gubernatorial voting closed at midnight, local favourite the Shadow Coalition is expected to win at least two representative seats, with incumbent representative Lusia Hainirsdottir taking a comfortable lead.\ +

\ + Final results are not expected to be tallied until Saturday morning, but other frontrunners include the Icarus Front's Vani Jee and Mehmet Sao - running on drastically different platforms - alongside the Shadow Coalition's Selma Jorg. In an unexpected turn, sole Tajaran Candidate Kurah Zarshir of the Shadow Coalition has seen an immense surge in popularity among minority and more xenophilic voters. Could Vir be seeing its first Tajaran Representative? Experts say: 'Perhaps.'" + +/datum/lore/codex/page/article58 + name = "07/07/63 - Vir Election Results" + data = "The results of the 2563 Vir Gubernatorial Elections are as follows:\ +
\ + Governor of Vir: Lusia Hainirsdottir (Shadow Coalition)\ +
\ + Vir Colonial Assembly Representative: Vani Jee (Icarus Front)\ +
\ + Vir Colonial Assembly Representative: Selma Jorg (Shadow Coalition)\ +
\ + Other candidates ranked: Sao (4), Zarshir (5), Keldow (6), Singh (7), Moravec (8), Phaedrus (9), Lye (10), Savik (11), Square (12), Wekstrom (13)\ +

\ + Voter turnout: 30,928,287 (63%)\ +

\ + The greatest upset this election cycle has been the unexpected popularity of 'alien rights' candidate Kurah Zarshir, who was eliminated in favour of Mehmet Sao (Icarus Front) in the 8th round of vote transfers by a margin of just 30 votes, or 0.000096%, prompting a rigourous recount process to confirm the result. A difference at this stage could have resulted in a significantly different final line-up.\ +

\ + This year's winners showed clear advantages in the first-choice votes, each gaining at least 15% of the popular vote before any transfers were calculated, though Sao made significant gains in the final count, falling only a few percent short of the Jorg's 3rd place position. By far the least popular candidate this cycle was Hal Wekstrom of the Sol Economic Organization, who received just 0.8% of the first-choice vote and was immediately eliminated. Also of note were Phaedrus, Apogee Lye and Yole Savik voters, each of whom had high (30%+) voter exhaustion rates, opting not to provide alternative choices; sending the message 'My candidate or none at all.'\ +

\ + The elected are to be sworn in at a ceremony on Luna in two weeks time." + +/datum/lore/codex/page/article59 + name = "07/30/63 - Solar Fleet Data Breach" + data = "Last night, a number of files were spread on the Monsters From Beyond's exolife forums allegedly depicting the boarding and eventual scuttling of the SCG-TV Mariner's Cage during a voyage close to the Gavel system on the 12th of June, before the SCG had officially released any information regarding the event. The files contained undisclosed documents from the Solar Fleet investigation, some of which appear to contain audio and video recordings of the final moments of the crew before the vessel's bluespace drive was detonated. Due to the graphic violence depicted and their classified nature, we will not be sharing the files, however as a matter of public record we will explain the events recorded therein. The following description may be unsuitable for sensitive readers.\ +

\ + First, the navigation crew detects a drive signature on an apparent intercept course with their own, originating from across the SCG-Almachi border. It was not a large vessel, and is assumed to be some form of autonomous drone. The crew disregards it as a low level threat, instead continuing on their trajectory, leaving only the standard point defense armament locked on. This proved to be a lethal mistake, as the vessel appeared and near-instantly began accelerating toward the Mariner's Cage, before impacting the fore weapons array. The recording is cut, due to what was likely a power surge, however upon reconnection, reports indicate no damage related to any known warhead was apparent, aside from the initial impactor. The crew mistakenly assumes it to be a failed suicide drone strike, and dispatches minimal security personnel, and a large complement of response engineers.\ +

\ + Approximately thirty minutes after the response teams are dispatched to the impact zone, the teams begin losing contact, with those first arriving being the first to disappear. When the security responders intercept the path of communications blackouts, they are met with the blades of multiple Aetolian shock troopers. Two appear to be made from a 'living steel', with each limb taking the form of 'jagged cleavers' as one radio recording states, and three more of 'indeterminable classification'. The ship entered a red alert state, and moments later, the small contingent of marines aboard the supply vessel were dispatched to deal with the threat. All five members of the enemy boarding party were able to be rendered inert through sustained fire, though not without Sol casualties.\ +

\ + According to the next recordings, approximately three hours after the incident, the vessel received orders to interrogate the boarding 'Aetotheans'. The two noted to appear as the officers of the squad were rejuvenated within sealed interrogation chambers reinforced with supplies on hand, apparently capable of stopping sustained fire from multiple energy weapons. The first individual was a 'sapphire' according to information from NanoTrasen correspondants. It refused to speak in Galactic Common, and instead utilized an unknown frequency of biological transmission, and internal charge shifts. The individual was moved to a more permanent cell within the vessel's brig for transport, and the second was rejuvenated. Only the first half of the interrogation, which lasted approximately two and a half minutes, compared to four hours for the first, was recovered. The individual is rejuvenated, and is engaged in discussion with the interrogating officer when it suddenly stands, emits what is described as a 'wail', and detonates, destroying the transmitting camera, and presumably killing the officers involved in direct interrogation.\ +

\ + Final recordings originate from the ship's onboard A.I. housing, which was involved in continual discussions with presumably the 'sapphire', as it enacted the vessel's scuttling. It is unknown whether or not the individual was somehow capable of restoring the other individuals that fell in combat in order to free itself, or if it was able to incapacitate the transporting officers, and command crew of the vessel alone.\ +

\ + The Solar Fleet has expressed 'regret' that the files were leaked in their complete form, and have assured the public that an official report was due for release in the coming weeks. Concerns of 'Aetothean' attacks on civilian targets have been dismissed as 'improbable', but have affirmed that 'the threat is being taken very seriously'." + +/datum/lore/codex/page/article60 + name = "08/03/63 - Hainirsdottir Sworn In As Governor of Vir" + data = "Following a short transitionary period for the previous administration, this year's election victors have been sworn in at an official ceremony at the Colonial Assembly Hall on Luna. During her welcoming address, Governor Hainirsdottir reaffirmed her plans for the future of the system, promising a 'Bright future for Vir as a hub for medical science.', and plans for an incentivisation program for the removal of invasive extra-terrestrial species that have long plagued the region - in particular the aggressive spiders that have become synonymous with certain regions of the Sivian wilderness.\ +

\ + Additionally, the newly elected representatives announced expected, but none-the-less significant changes to the administrative staff of the system. Notable figures include two defeated election hopefuls: Kurah Zarshir has been selected as the Shadow Coalition's Culture Secretary for the system, while Mehmet Sao has been brought aboard by the Representative Vani Jee as the Vir Icarus Front's Internal Security Advisor. It is expected that the former candidates may use their positions to further certain goals from their own campaigns, but under the watchful eyes of their perhaps more moderate superiors." + +/datum/lore/codex/page/article61 + name = "08/04/63 - Former Independence Candidate Found Dead" + data = "It has been confirmed by a spokesperson for the Sivian Independence Front that a body found by hikers last week in the Ingolfskynn Mountains, approximately 200 miles northeast of New Reykjavik, belonged to party chair Yole Savik.\ +

\ + Savik, 68 - who had run for Vir Representative in the recent election - had not been seen since the 14th of July, shortly after the results were announced. Party officials claim that Mr. Savik frequently made 'off the grid' trips into the Sivian wilderness and his absence had not been treated as suspicious until investigators approached them to confirm the identity of the body. According to police, though Yole was publicly known as a 'seasoned frontiersman', Savik had succumbed to exposure at least two weeks prior to the grisly discovery. His death is not being treated as suspicious." + +/datum/lore/codex/page/article62 + name = "08/07/63 - Almach Pirate Threat Vanishes - Analysts Baffled" + data = "Skrellian Xe'qua pirates operating in the far reaches of the Almach Association since the onset of hostilities last year, have inexplicably gone dark. The pirates, who were under close SolGov surveillance to monitor their impact on Almachi shipping, have drastically dropped in activity and numbers over the last month according to an official report released by the Solar Fleet today. The Fleet is unable to account for the cease in activity, which has now reached levels even lower than their pre-war baseline, as there have been no reports of Almach military operations in the area, nor any signs of decisive battle on the Almach border with pirate space.\ +

\ + The drop in activity roughly coincides with the leaked information on an Almach 'Super-weapon' in Whythe, though military sources do not believe that the weapon has been deployed in any capacity at this time. According to Hasan Drust, an expert on Skrellian foreign policy, the 'only feasible explanation (is) major anti-piracy action undertaken by the Skrellian Far Kingdoms', who occupy the space beyond the Xe'qua pirates' known range. The reasoning behind this action now, against pirates who have historically only targeted human space is not entirely clear, though Drust suggests that it may simply be a coincidence as pirates would be a 'trivial issue' for Far Kingdom military might." + +/datum/lore/codex/page/article63 + name = "09/02/63 - Shock Almach Attack Routs Relan Front!" + data = "Following close to a month of reduced Almach activity, enemy Militia forces have today launched a staggering attack on Sol frontline forces in the region of the Relan system, disabling several SCG warships and forcing a major tactical retreat to Saint Columbia. The scale of this attack by Almach forces is unprecedented, but seems to be the result of the Association consolidating manpower previously dedicated to anti-piracy patrols on the far side of their territory. It is believed these vessels have become freed up due to the apparent but as of yet unconfirmed annihilation of Xe'qua criminal flotillas by Skrellian Far Kingdom police action.\ +

\ + The Solar fleet had been in position to blockade the Relan system in the hopes of forcing the Free Relan Federation to surrender and withdraw from the Association, but was unprepared for what has been described as an 'all-out attack' on their positions, which left the vessels SCG-D Liu Bei, SCG-D Wodehouse, SCG-TV Ceylon Hartal and SCG-TV Apoxpalon disabled and unable to retreat with the bulk of our forces, as well as inflicting severe damage to several other craft. According to initial reports, the strikes on many of the afflicted ships closely resembled scenes from the controversial 'Aetothean shock attacks' on the SCG-TV Mariner's Cage this June, which saw the ruthless deployment of gene-altered Promethean 'super-soldiers' by the Almach Association.\ +

\ + Fleet Admiral Ripon Latt, commanding officer of the assailed fleet, has confirmed that reinforcements are underway and the retreat 'shall not be a significant setback in the war effort', especially assuring citizens of the embattled Saint Columbia system and its neighbours that there is no cause for alarm and civilians have yet to be targeted.\ +

\ + The fates of the four missing ships have not been confirmed, and though the Fleet has not yet made an official statement, Sol casualties are cautiously estimated to be in the hundreds." + +/datum/lore/codex/page/article64 + name = "09/23/63 - Fleet Refuses Inquiry Into Relan Losses" + data = "The SCG Fleet has refused to heed widespread calls from critics to launch an investigation into the heavy losses sustained by our forces in a major Almach attack early this month, citing that an investigation at this time would 'undermine the ongoing efforts of our troops in battles to come'.\ +

\ + The attack, which took place on the 2nd of September and at current count resulted in the loss of a staggering 1281 Sol lives, quickly drew criticism from experts for 'the total unpreparedness' of the fleet despite their public claims that all vessels were 'battle ready and prepared for a coming offensive.'. The specifics of the fleets apparent failings have been the focus of much speculation in the intervening weeks, with the blame placed on everything from a critically inexperienced officer core, to ongoing redeployments to and from the recently expanded Hegemony border.\ +

\ + Admiral Latt has condemned critics, stating that 'the last thing our brave troops need right now is murmuring from people who don't know the first thing what they're talking about. Their actions in following orders to fall back to the border have been nothing but commendable, and all effort was made to minimise loss of life. The fleet is undergoing reorganization at this time, and is in a better position than ever.'" + +/datum/lore/codex/page/article65 + name = "09/27/63 - Almach Bypass Saint Columbia In Brazen Gavel Attack!" + data = "Almach Association fleet forces entered the Gavel system this afternoon, reportedly having evaded interdicting Sol forces from Saint Columbia in an apparent effort to skirt the range of the MJOLNIR weapon system in Saint Columbia and cut off that system from major shipping routes. Current reports from the system capital in New Xanadu are that the majority of outlying civilian stations have surrendered to invading forces with only minor incident, but that skirmishes with local defence forces - including Sol Fleet detachments - are ongoing, and it is too early to remark on the outcome of the battle. Official military reports are scarce at this time, but the Fleet in Saint Columbia is 'on the move and ready to repel the invaders'.\ +

\ + Accounts from the system's edge describe Almach forces 'firing indiscriminately' on anti-piracy emplacements including those mounted to the ILS Thurston, a Greyson Manufactories collection station with eight crew, killing all hands.\ +

\ + Open fighting in the Gavel system marks the furthest Almach encroachment on Sol territory to date. The system, which is a stone's throw from the Oasis and Vir systems is best known for the destruction of the moonlet 'Requiem' by a rogue nanoswarm in 2289, which was successfully neutralized by government forces, and boasts only a small population relative to its neighbors." + +/datum/lore/codex/page/article66 + name = "10/01/63 - 'Judgement Day' As Gavel Falls!" + data = "The government of New Xanadu has surrendered to Association invaders following a disastrous relief effort by the Solar Fleet, whose interdiction vessels are believed to have been captured by the invading force. The manoeuvre leaves the bulk of the Sol fleet isolated in the Saint Columbia system - though a breakout is expected - and has led to widespread outrage in the Colonial Assembly. Critics of the war have damned the Fleet for their 'inability to fight a civilian rabble, gene-modded or otherwise' and renewed calls for a peaceful arrangement between the Solar Confederate Government and Association.\ +

\ + ISA-5, current spokesperson for the Shadow Coalition has forwarded a motion today to resume discussions with Almachi heads of state, just hours after news of Gavel's surrender broke. The proposal which has yet to gain widespread traction, would call for a new ceasefire, and ISA-5 has stated they 'hope that a new agreement can be made to end the senseless loss of life over the particulars of a foreign government's right to autonomy.'.\ +

\ + Executive Sifat Unar of the Emergent Intelligence Oversight has voiced immediate concern over the motion, criticising the use of 'foreign government' in reference to Almach; 'Our Fleet has suffered a few defeats, but this conflict goes deeper than mere lasers and shells and to surrender to torturers, mind-hackers, and Machiavellian machines at this stage would be insanity. To allow a seccessionist state, particularly one so unabashedly guilty of crimes against humanity that go far beyond even our modern definitions of 'Human Sanctity', to exist unquestioned a stone's throw from some of our most precious member states, would be a failing not only of this government, but of humanity that would echo through history like a great shameful dirge for all to hear.'\ +

\ + A communications blackout has been instated on the Gavel system by the Almach Militia, though earlier reports indicate continued strikes on numerous civilian colonies who were unwilling, or unable to deactivate their automated defence systems prior to the invaders arrival." \ No newline at end of file diff --git a/code/modules/materials/material_recipes.dm b/code/modules/materials/material_recipes.dm index 0fe0f264bb..d141f1c7af 100644 --- a/code/modules/materials/material_recipes.dm +++ b/code/modules/materials/material_recipes.dm @@ -7,27 +7,27 @@ recipes = list() // If is_brittle() returns true, these are only good for a single strike. - recipes += new/datum/stack_recipe("[display_name] baseball bat", /obj/item/weapon/material/twohanded/baseballbat, 10, time = 20, one_per_turf = 0, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] ashtray", /obj/item/weapon/material/ashtray, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] spoon", /obj/item/weapon/material/kitchen/utensil/spoon/plastic, 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] armor plate", /obj/item/weapon/material/armor_plating, 1, time = 20, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] grave marker", /obj/item/weapon/material/gravemarker, 5, time = 50, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] ring", /obj/item/clothing/gloves/ring/material, 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] bracelet", /obj/item/clothing/accessory/bracelet/material, 1, on_floor = 1, supplied_material = "[name]") + recipes += new/datum/stack_recipe("[display_name] baseball bat", /obj/item/weapon/material/twohanded/baseballbat, 10, time = 20, one_per_turf = 0, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] ashtray", /obj/item/weapon/material/ashtray, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] spoon", /obj/item/weapon/material/kitchen/utensil/spoon/plastic, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] armor plate", /obj/item/weapon/material/armor_plating, 1, time = 20, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] grave marker", /obj/item/weapon/material/gravemarker, 5, time = 50, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] ring", /obj/item/clothing/gloves/ring/material, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] bracelet", /obj/item/clothing/accessory/bracelet/material, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) if(integrity>=50) - recipes += new/datum/stack_recipe("[display_name] door", /obj/structure/simple_door, 10, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] barricade", /obj/structure/barricade, 5, time = 50, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] stool", /obj/item/weapon/stool, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] chair", /obj/structure/bed/chair, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] bed", /obj/structure/bed, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] double bed", /obj/structure/bed/double, 4, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] wall girders", /obj/structure/girder, 2, time = 50, one_per_turf = 1, on_floor = 1, supplied_material = "[name]") + recipes += new/datum/stack_recipe("[display_name] door", /obj/structure/simple_door, 10, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] barricade", /obj/structure/barricade, 5, time = 50, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] stool", /obj/item/weapon/stool, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] chair", /obj/structure/bed/chair, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] bed", /obj/structure/bed, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] double bed", /obj/structure/bed/double, 4, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] wall girders", /obj/structure/girder, 2, time = 50, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) if(hardness>50) - recipes += new/datum/stack_recipe("[display_name] fork", /obj/item/weapon/material/kitchen/utensil/fork/plastic, 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] knife", /obj/item/weapon/material/knife/plastic, 1, on_floor = 1, supplied_material = "[name]") - recipes += new/datum/stack_recipe("[display_name] blade", /obj/item/weapon/material/butterflyblade, 6, time = 20, one_per_turf = 0, on_floor = 1, supplied_material = "[name]") + recipes += new/datum/stack_recipe("[display_name] fork", /obj/item/weapon/material/kitchen/utensil/fork/plastic, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] knife", /obj/item/weapon/material/knife/plastic, 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] blade", /obj/item/weapon/material/butterflyblade, 6, time = 20, one_per_turf = 0, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) /material/steel/generate_recipes() ..() @@ -117,55 +117,55 @@ /material/plastic/generate_recipes() ..() - recipes += new/datum/stack_recipe("plastic crate", /obj/structure/closet/crate/plastic, 10, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("plastic bag", /obj/item/weapon/storage/bag/plasticbag, 3, on_floor = 1) - recipes += new/datum/stack_recipe("blood pack", /obj/item/weapon/reagent_containers/blood/empty, 4, on_floor = 0) - recipes += new/datum/stack_recipe("reagent dispenser cartridge (large)", /obj/item/weapon/reagent_containers/chem_disp_cartridge, 5, on_floor=0) // 500u - recipes += new/datum/stack_recipe("reagent dispenser cartridge (med)", /obj/item/weapon/reagent_containers/chem_disp_cartridge/medium, 3, on_floor=0) // 250u - recipes += new/datum/stack_recipe("reagent dispenser cartridge (small)", /obj/item/weapon/reagent_containers/chem_disp_cartridge/small, 1, on_floor=0) // 100u - recipes += new/datum/stack_recipe("white floor tile", /obj/item/stack/tile/floor/white, 1, 4, 20) - recipes += new/datum/stack_recipe("freezer floor tile", /obj/item/stack/tile/floor/freezer, 1, 4, 20) - recipes += new/datum/stack_recipe("shower curtain", /obj/structure/curtain, 4, time = 15, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("plastic flaps", /obj/structure/plasticflaps, 4, time = 25, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("water-cooler", /obj/structure/reagent_dispensers/water_cooler, 4, time = 10, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("lampshade", /obj/item/weapon/lampshade, 1, time = 1) - recipes += new/datum/stack_recipe("plastic net", /obj/item/weapon/material/fishing_net, 25, time = 1 MINUTE) + recipes += new/datum/stack_recipe("plastic crate", /obj/structure/closet/crate/plastic, 10, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("plastic bag", /obj/item/weapon/storage/bag/plasticbag, 3, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("blood pack", /obj/item/weapon/reagent_containers/blood/empty, 4, on_floor = 0, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("reagent dispenser cartridge (large)", /obj/item/weapon/reagent_containers/chem_disp_cartridge, 5, on_floor=0, pass_stack_color = TRUE) // 500u + recipes += new/datum/stack_recipe("reagent dispenser cartridge (med)", /obj/item/weapon/reagent_containers/chem_disp_cartridge/medium, 3, on_floor=0, pass_stack_color = TRUE) // 250u + recipes += new/datum/stack_recipe("reagent dispenser cartridge (small)", /obj/item/weapon/reagent_containers/chem_disp_cartridge/small, 1, on_floor=0, pass_stack_color = TRUE) // 100u + recipes += new/datum/stack_recipe("white floor tile", /obj/item/stack/tile/floor/white, 1, 4, 20, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("freezer floor tile", /obj/item/stack/tile/floor/freezer, 1, 4, 20, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("shower curtain", /obj/structure/curtain, 4, time = 15, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("plastic flaps", /obj/structure/plasticflaps, 4, time = 25, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("water-cooler", /obj/structure/reagent_dispensers/water_cooler, 4, time = 10, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("lampshade", /obj/item/weapon/lampshade, 1, time = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("plastic net", /obj/item/weapon/material/fishing_net, 25, time = 1 MINUTE, pass_stack_color = TRUE) /material/wood/generate_recipes() ..() - recipes += new/datum/stack_recipe("oar", /obj/item/weapon/oar, 2, time = 30, supplied_material = "[name]") - recipes += new/datum/stack_recipe("boat", /obj/vehicle/boat, 20, time = 10 SECONDS, supplied_material = "[name]") - recipes += new/datum/stack_recipe("dragon boat", /obj/vehicle/boat/dragon, 50, time = 30 SECONDS, supplied_material = "[name]") - recipes += new/datum/stack_recipe("wooden sandals", /obj/item/clothing/shoes/sandal, 1) - recipes += new/datum/stack_recipe("wood circlet", /obj/item/clothing/head/woodcirclet, 1) - recipes += new/datum/stack_recipe("clipboard", /obj/item/weapon/clipboard, 1) - recipes += new/datum/stack_recipe("wood floor tile", /obj/item/stack/tile/wood, 1, 4, 20) - recipes += new/datum/stack_recipe("wooden chair", /obj/structure/bed/chair/wood, 3, time = 10, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("crossbow frame", /obj/item/weapon/crossbowframe, 5, time = 25, one_per_turf = 0, on_floor = 0) - recipes += new/datum/stack_recipe("coffin", /obj/structure/closet/coffin, 5, time = 15, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("beehive assembly", /obj/item/beehive_assembly, 4) - recipes += new/datum/stack_recipe("beehive frame", /obj/item/honey_frame, 1) - recipes += new/datum/stack_recipe("book shelf", /obj/structure/bookcase, 5, time = 15, one_per_turf = 1, on_floor = 1) - recipes += new/datum/stack_recipe("noticeboard frame", /obj/item/frame/noticeboard, 4, time = 5, one_per_turf = 0, on_floor = 1) - recipes += new/datum/stack_recipe("wooden bucket", /obj/item/weapon/reagent_containers/glass/bucket/wood, 2, time = 4, one_per_turf = 0, on_floor = 0) - recipes += new/datum/stack_recipe("coilgun stock", /obj/item/weapon/coilgun_assembly, 5) - recipes += new/datum/stack_recipe("crude fishing rod", /obj/item/weapon/material/fishing_rod/built, 8, time = 10 SECONDS) + recipes += new/datum/stack_recipe("oar", /obj/item/weapon/oar, 2, time = 30, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("boat", /obj/vehicle/boat, 20, time = 10 SECONDS, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("dragon boat", /obj/vehicle/boat/dragon, 50, time = 30 SECONDS, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("wooden sandals", /obj/item/clothing/shoes/sandal, 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("wood circlet", /obj/item/clothing/head/woodcirclet, 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("clipboard", /obj/item/weapon/clipboard, 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("wood floor tile", /obj/item/stack/tile/wood, 1, 4, 20, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("wooden chair", /obj/structure/bed/chair/wood, 3, time = 10, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("crossbow frame", /obj/item/weapon/crossbowframe, 5, time = 25, one_per_turf = 0, on_floor = 0, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("coffin", /obj/structure/closet/coffin, 5, time = 15, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("beehive assembly", /obj/item/beehive_assembly, 4, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("beehive frame", /obj/item/honey_frame, 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("book shelf", /obj/structure/bookcase, 5, time = 15, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("noticeboard frame", /obj/item/frame/noticeboard, 4, time = 5, one_per_turf = 0, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("wooden bucket", /obj/item/weapon/reagent_containers/glass/bucket/wood, 2, time = 4, one_per_turf = 0, on_floor = 0, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("coilgun stock", /obj/item/weapon/coilgun_assembly, 5, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("crude fishing rod", /obj/item/weapon/material/fishing_rod/built, 8, time = 10 SECONDS, pass_stack_color = TRUE) /material/wood/log/generate_recipes() recipes = list() - recipes += new/datum/stack_recipe("bonfire", /obj/structure/bonfire, 5, time = 50, supplied_material = "[name]") + recipes += new/datum/stack_recipe("bonfire", /obj/structure/bonfire, 5, time = 50, supplied_material = "[name]", pass_stack_color = TRUE) /material/cardboard/generate_recipes() ..() - recipes += new/datum/stack_recipe("box", /obj/item/weapon/storage/box) - recipes += new/datum/stack_recipe("donut box", /obj/item/weapon/storage/box/donut/empty) - recipes += new/datum/stack_recipe("egg box", /obj/item/weapon/storage/fancy/egg_box) - recipes += new/datum/stack_recipe("light tubes box", /obj/item/weapon/storage/box/lights/tubes) - recipes += new/datum/stack_recipe("light bulbs box", /obj/item/weapon/storage/box/lights/bulbs) - recipes += new/datum/stack_recipe("mouse traps box", /obj/item/weapon/storage/box/mousetraps) - recipes += new/datum/stack_recipe("cardborg suit", /obj/item/clothing/suit/cardborg, 3) - recipes += new/datum/stack_recipe("cardborg helmet", /obj/item/clothing/head/cardborg) - recipes += new/datum/stack_recipe("pizza box", /obj/item/pizzabox) + recipes += new/datum/stack_recipe("box", /obj/item/weapon/storage/box, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("donut box", /obj/item/weapon/storage/box/donut/empty, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("egg box", /obj/item/weapon/storage/fancy/egg_box, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("light tubes box", /obj/item/weapon/storage/box/lights/tubes, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("light bulbs box", /obj/item/weapon/storage/box/lights/bulbs, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("mouse traps box", /obj/item/weapon/storage/box/mousetraps, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("cardborg suit", /obj/item/clothing/suit/cardborg, 3, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("cardborg helmet", /obj/item/clothing/head/cardborg, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("pizza box", /obj/item/pizzabox, pass_stack_color = TRUE) recipes += new/datum/stack_recipe_list("folders",list( \ new/datum/stack_recipe("blue folder", /obj/item/weapon/folder/blue), \ new/datum/stack_recipe("grey folder", /obj/item/weapon/folder), \ @@ -195,7 +195,7 @@ /material/wood/sif/generate_recipes() ..() - recipes += new/datum/stack_recipe("alien wood floor tile", /obj/item/stack/tile/wood/sif, 1, 4, 20) + recipes += new/datum/stack_recipe("alien wood floor tile", /obj/item/stack/tile/wood/sif, 1, 4, 20, pass_stack_color = TRUE) for(var/datum/stack_recipe/r_recipe in recipes) if(r_recipe.title == "wood floor tile") recipes -= r_recipe @@ -210,17 +210,29 @@ /material/cloth/generate_recipes() recipes = list() - recipes += new/datum/stack_recipe("woven net", /obj/item/weapon/material/fishing_net, 10, time = 30 SECONDS) - recipes += new/datum/stack_recipe("bedsheet", /obj/item/weapon/bedsheet, 10, time = 30 SECONDS) - recipes += new/datum/stack_recipe("uniform", /obj/item/clothing/under/color/white, 8, time = 15 SECONDS) - recipes += new/datum/stack_recipe("foot wraps", /obj/item/clothing/shoes/footwraps, 2, time = 5 SECONDS) - recipes += new/datum/stack_recipe("gloves", /obj/item/clothing/gloves/white, 2, time = 5 SECONDS) - recipes += new/datum/stack_recipe("wig", /obj/item/clothing/head/powdered_wig, 4, time = 10 SECONDS) - recipes += new/datum/stack_recipe("philosopher's wig", /obj/item/clothing/head/philosopher_wig, 50, time = 2 MINUTES) - recipes += new/datum/stack_recipe("taqiyah", /obj/item/clothing/head/taqiyah, 3, time = 6 SECONDS) - recipes += new/datum/stack_recipe("turban", /obj/item/clothing/head/turban, 3, time = 6 SECONDS) - recipes += new/datum/stack_recipe("hijab", /obj/item/clothing/head/hijab, 3, time = 6 SECONDS) - recipes += new/datum/stack_recipe("kippa", /obj/item/clothing/head/kippa, 3, time = 6 SECONDS) - recipes += new/datum/stack_recipe("scarf", /obj/item/clothing/accessory/scarf/white, 4, time = 5 SECONDS) - recipes += new/datum/stack_recipe("baggy pants", /obj/item/clothing/under/pants/baggy/white, 8, time = 10 SECONDS) - recipes += new/datum/stack_recipe("belt pouch", /obj/item/weapon/storage/belt/fannypack/white, 25, time = 1 MINUTE) + recipes += new/datum/stack_recipe("woven net", /obj/item/weapon/material/fishing_net, 10, time = 30 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("bedsheet", /obj/item/weapon/bedsheet, 10, time = 30 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("uniform", /obj/item/clothing/under/color/white, 8, time = 15 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("foot wraps", /obj/item/clothing/shoes/footwraps, 2, time = 5 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("gloves", /obj/item/clothing/gloves/white, 2, time = 5 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("wig", /obj/item/clothing/head/powdered_wig, 4, time = 10 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("philosopher's wig", /obj/item/clothing/head/philosopher_wig, 50, time = 2 MINUTES, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("taqiyah", /obj/item/clothing/head/taqiyah, 3, time = 6 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("turban", /obj/item/clothing/head/turban, 3, time = 6 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("hijab", /obj/item/clothing/head/hijab, 3, time = 6 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("kippa", /obj/item/clothing/head/kippa, 3, time = 6 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("scarf", /obj/item/clothing/accessory/scarf/white, 4, time = 5 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("baggy pants", /obj/item/clothing/under/pants/baggy/white, 8, time = 10 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("belt pouch", /obj/item/weapon/storage/belt/fannypack/white, 25, time = 1 MINUTE, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("crude bandage", /obj/item/stack/medical/crude_pack, 1, time = 2 SECONDS, pass_stack_color = TRUE) + +/material/resin/generate_recipes() + recipes = list() + recipes += new/datum/stack_recipe("[display_name] door", /obj/structure/simple_door/resin, 10, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] barricade", /obj/effect/alien/resin/wall, 5, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] nest", /obj/structure/bed/nest, 2, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] wall girders", /obj/structure/girder/resin, 2, time = 5 SECONDS, one_per_turf = 1, on_floor = 1, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("crude [display_name] bandage", /obj/item/stack/medical/crude_pack, 1, time = 2 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] net", /obj/item/weapon/material/fishing_net, 10, time = 5 SECONDS, supplied_material = "[name]", pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] membrane", /obj/effect/alien/resin/membrane, 1, time = 2 SECONDS, pass_stack_color = TRUE) + recipes += new/datum/stack_recipe("[display_name] node", /obj/effect/alien/weeds/node, 1, time = 4 SECONDS) diff --git a/code/modules/materials/material_sheets.dm b/code/modules/materials/material_sheets.dm index 4ca50889ea..f6708481b5 100644 --- a/code/modules/materials/material_sheets.dm +++ b/code/modules/materials/material_sheets.dm @@ -278,7 +278,7 @@ . = ..() update_mass() - radiation_repository.radiate(src, 5 + amount) + SSradiation.radiate(src, 5 + amount) var/mob/living/M = user if(!istype(M)) return @@ -305,17 +305,18 @@ /obj/item/stack/material/supermatter/ex_act(severity) // An incredibly hard to manufacture material, SM chunks are unstable by their 'stabilized' nature. if(prob((4 / severity) * 20)) - radiation_repository.radiate(get_turf(src), amount * 4) + SSradiation.radiate(get_turf(src), amount * 4) explosion(get_turf(src),round(amount / 12) , round(amount / 6), round(amount / 3), round(amount / 25)) qdel(src) return - radiation_repository.radiate(get_turf(src), amount * 2) + SSradiation.radiate(get_turf(src), amount * 2) ..() /obj/item/stack/material/wood name = "wooden plank" icon_state = "sheet-wood" default_type = MAT_WOOD + strict_color_stacking = TRUE /obj/item/stack/material/wood/sif name = "alien wooden plank" @@ -367,12 +368,25 @@ icon_state = "sheet-cloth" default_type = "cloth" no_variants = FALSE + pass_color = TRUE + strict_color_stacking = TRUE + +/obj/item/stack/material/resin + name = "resin" + icon_state = "sheet-resin" + default_type = "resin" + no_variants = TRUE + apply_colour = TRUE + pass_color = TRUE + strict_color_stacking = TRUE /obj/item/stack/material/cardboard name = "cardboard" icon_state = "sheet-card" default_type = "cardboard" no_variants = FALSE + pass_color = TRUE + strict_color_stacking = TRUE /obj/item/stack/material/snow name = "snow" @@ -392,6 +406,8 @@ icon_state = "sheet-leather" default_type = "leather" no_variants = FALSE + pass_color = TRUE + strict_color_stacking = TRUE /obj/item/stack/material/glass name = "glass" diff --git a/code/modules/materials/materials.dm b/code/modules/materials/materials.dm index c362054cfa..724f4771f6 100644 --- a/code/modules/materials/materials.dm +++ b/code/modules/materials/materials.dm @@ -16,6 +16,7 @@ stone metal solid + resin ONLY WALLS cult hull @@ -94,6 +95,7 @@ var/list/name_to_material var/door_icon_base = "metal" // Door base icon tag. See header. var/icon_reinf = "reinf_metal" // Overlay used var/list/stack_origin_tech = list(TECH_MATERIAL = 1) // Research level for stacks. + var/pass_stack_colors = FALSE // Will stacks made from this material pass their colors onto objects? // Attributes var/cut_delay = 0 // Delay in ticks when cutting through this wall. @@ -239,6 +241,10 @@ var/list/name_to_material /material/proc/combustion_effect(var/turf/T, var/temperature) return +// Used by walls to do on-touch things, after checking for crumbling and open-ability. +/material/proc/wall_touch_special(var/turf/simulated/wall/W, var/mob/living/L) + return + // Datum definitions follow. /material/uranium name = "uranium" @@ -823,12 +829,18 @@ var/list/name_to_material /material/resin name = "resin" icon_colour = "#35343a" + icon_base = "resin" dooropen_noise = 'sound/effects/attackblob.ogg' door_icon_base = "resin" + icon_reinf = "reinf_mesh" melting_point = T0C+300 sheet_singular_name = "blob" sheet_plural_name = "blobs" conductive = 0 + explosion_resistance = 60 + radiation_resistance = 10 + stack_origin_tech = list(TECH_MATERIAL = 8, TECH_PHORON = 4, TECH_BLUESPACE = 4, TECH_BIO = 7) + stack_type = /obj/item/stack/material/resin /material/resin/can_open_material_door(var/mob/living/user) var/mob/living/carbon/M = user @@ -836,6 +848,17 @@ var/list/name_to_material return 1 return 0 +/material/resin/wall_touch_special(var/turf/simulated/wall/W, var/mob/living/L) + var/mob/living/carbon/M = L + if(istype(M) && locate(/obj/item/organ/internal/xenos/hivenode) in M.internal_organs) + to_chat(M, "\The [W] shudders under your touch, starting to become porous.") + playsound(W, 'sound/effects/attackblob.ogg', 50, 1) + if(do_after(L, 5 SECONDS)) + spawn(2) + playsound(W, 'sound/effects/attackblob.ogg', 100, 1) + W.dismantle_wall() + return 1 + return 0 /material/wood name = MAT_WOOD @@ -866,6 +889,7 @@ var/list/name_to_material stack_type = /obj/item/stack/material/log sheet_singular_name = null sheet_plural_name = "pile" + pass_stack_colors = TRUE /material/wood/log/sif name = MAT_SIFLOG @@ -903,6 +927,7 @@ var/list/name_to_material door_icon_base = "wood" destruction_desc = "crumples" radiation_resistance = 1 + pass_stack_colors = TRUE /material/snow name = MAT_SNOW @@ -949,6 +974,7 @@ var/list/name_to_material protectiveness = 1 // 4% flags = MATERIAL_PADDING conductive = 0 + pass_stack_colors = TRUE /material/cult name = "cult" diff --git a/code/modules/mining/mine_turfs.dm b/code/modules/mining/mine_turfs.dm index bba621539e..1e122d0a51 100644 --- a/code/modules/mining/mine_turfs.dm +++ b/code/modules/mining/mine_turfs.dm @@ -582,7 +582,7 @@ turf/simulated/mineral/floor/light_corner M.flash_eyes() if(prob(50)) M.Stun(5) - radiation_repository.flat_radiate(src, 25, 100) + SSradiation.flat_radiate(src, 25, 100) if(prob(25)) excavate_find(prob(5), finds[1]) else if(rand(1,500) == 1) diff --git a/code/modules/mob/_modifiers/medical.dm b/code/modules/mob/_modifiers/medical.dm index 46a8877d1f..7e150ceb93 100644 --- a/code/modules/mob/_modifiers/medical.dm +++ b/code/modules/mob/_modifiers/medical.dm @@ -1,3 +1,38 @@ + +/* + * Modifiers applied by Medical sources. + */ + +/datum/modifier/bloodpump + name = "external blood pumping" + desc = "Your blood flows thanks to the wonderful power of science." + + on_created_text = "You feel alive." + on_expired_text = "You feel.. less alive." + stacks = MODIFIER_STACK_EXTEND + + pulse_set_level = PULSE_NORM + +/datum/modifier/bloodpump/check_if_valid() + ..() + if(holder.stat == DEAD) + src.expire() + +/datum/modifier/bloodpump_corpse + name = "forced blood pumping" + desc = "Your blood flows thanks to the wonderful power of science." + + on_created_text = "You feel alive." + on_expired_text = "You feel.. less alive." + stacks = MODIFIER_STACK_EXTEND + + pulse_set_level = PULSE_SLOW + +/datum/modifier/bloodpump/corpse/check_if_valid() + ..() + if(holder.stat != DEAD) + src.expire() + /* * Modifiers caused by chemicals or organs specifically. */ diff --git a/code/modules/mob/_modifiers/modifiers_misc.dm b/code/modules/mob/_modifiers/modifiers_misc.dm index 800429de25..af6eaa952e 100644 --- a/code/modules/mob/_modifiers/modifiers_misc.dm +++ b/code/modules/mob/_modifiers/modifiers_misc.dm @@ -182,6 +182,31 @@ the artifact triggers the rage. accuracy_dispersion = 3 // Ditto. evasion = -45 // Too angry to dodge. +// Speedy, but not hasted. +/datum/modifier/sprinting + name = "sprinting" + desc = "You are filled with energy!" + + on_created_text = "You feel a surge of energy!" + on_expired_text = "The energy high dies out." + stacks = MODIFIER_STACK_EXTEND + + slowdown = -1 + disable_duration_percent = 0.8 + +// Speedy, but not berserked. +/datum/modifier/melee_surge + name = "melee surge" + desc = "You are filled with energy!" + + on_created_text = "You feel a surge of energy!" + on_expired_text = "The energy high dies out." + stacks = MODIFIER_STACK_ALLOWED + + attack_speed_percent = 0.8 + outgoing_melee_damage_percent = 1.1 + disable_duration_percent = 0.8 + // Non-cult version of deep wounds. // Surprisingly, more dangerous. /datum/modifier/grievous_wounds @@ -201,7 +226,6 @@ the artifact triggers the rage. - // Ignition, but confined to the modifier system. // This makes it more predictable and thus, easier to balance. /datum/modifier/fire @@ -305,7 +329,7 @@ the artifact triggers the rage. bleeding_rate_percent = 0.8 - pulse_set_level = PULSE_SLOW + pulse_modifier = -1 // Temperature Normalizer. /datum/modifier/homeothermic diff --git a/code/modules/mob/_modifiers/traits.dm b/code/modules/mob/_modifiers/traits.dm index 200f8eabfb..b15ece941e 100644 --- a/code/modules/mob/_modifiers/traits.dm +++ b/code/modules/mob/_modifiers/traits.dm @@ -60,33 +60,67 @@ metabolism_percent = 0.5 incoming_healing_percent = 0.6 -/datum/modifier/trait/larger - name = "Larger" - desc = "Your body is larger than average." +/datum/modifier/trait/taller + name = "Taller" + desc = "Your body is taller than average." + icon_scale_x_percent = 1 + icon_scale_y_percent = 1.09 - icon_scale_x_percent = 1.1 - icon_scale_y_percent = 1.1 - -/datum/modifier/trait/large - name = "Large" - desc = "Your body is a bit larger than average." - - icon_scale_x_percent = 1.05 +/datum/modifier/trait/tall + name = "Tall" + desc = "Your body is a bit taller than average." + icon_scale_x_percent = 1 icon_scale_y_percent = 1.05 -/datum/modifier/trait/small - name = "Small" - desc = "Your body is a bit smaller than average." - - icon_scale_x_percent = 0.95 +/datum/modifier/trait/short + name = "Short" + desc = "Your body is a bit shorter than average." + icon_scale_x_percent = 1 icon_scale_y_percent = 0.95 -/datum/modifier/trait/smaller - name = "Smaller" - desc = "Your body is smaller than average." - icon_scale_x_percent = 0.9 - icon_scale_y_percent = 0.9 +/datum/modifier/trait/shorter + name = "Shorter" + desc = "You are shorter than average." + icon_scale_x_percent = 1 + icon_scale_y_percent = 0.915 + +/datum/modifier/trait/fat + name = "Overweight" + desc = "You are heavier than average." + + metabolism_percent = 1.2 + icon_scale_x_percent = 1.054 + icon_scale_y_percent = 1 + slowdown = 1.1 + max_health_percent = 1.05 + +/datum/modifier/trait/obese + name = "Obese" + desc = "You are much heavier than average." + metabolism_percent = 1.4 + icon_scale_x_percent = 1.095 + icon_scale_y_percent = 1 + slowdown = 1.2 + max_health_percent = 1.10 + +/datum/modifier/trait/thin + name = "Thin" + desc = "You are skinnier than average." + metabolism_percent = 0.8 + icon_scale_x_percent = 0.945 + icon_scale_y_percent = 1 + max_health_percent = 0.95 + outgoing_melee_damage_percent = 0.95 + +/datum/modifier/trait/thinner + name = "Very Thin" + desc = "You are much skinnier than average." + metabolism_percent = 0.6 + icon_scale_x_percent = 0.905 + icon_scale_y_percent = 1 + max_health_percent = 0.90 + outgoing_melee_damage_percent = 0.9 /datum/modifier/trait/colorblind_protanopia name = "Protanopia" diff --git a/code/modules/mob/dead/observer/observer.dm b/code/modules/mob/dead/observer/observer.dm index 2c74029eb8..ef7086f6e0 100644 --- a/code/modules/mob/dead/observer/observer.dm +++ b/code/modules/mob/dead/observer/observer.dm @@ -231,7 +231,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set name = "Re-enter Corpse" if(!client) return if(!(mind && mind.current && can_reenter_corpse)) - src << "You have no body." + to_chat(src, "You have no body.") return if(mind.current.key && copytext(mind.current.key,1,2)!="@") //makes sure we don't accidentally kick any clients usr << "Another consciousness is in your body... it is resisting you." @@ -279,10 +279,10 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set desc = "Toggles AntagHUD allowing you to see who is the antagonist" if(!config.antag_hud_allowed && !client.holder) - src << "Admins have disabled this for this round." + to_chat(src, "Admins have disabled this for this round.") return if(jobban_isbanned(src, "AntagHUD")) - src << "You have been banned from using this feature" + to_chat(src, "You have been banned from using this feature") return if(config.antag_hud_restricted && !has_enabled_antagHUD && !client.holder) var/response = alert(src, "If you turn this on, you will not be able to take any part in the round.","Are you sure you want to turn this feature on?","Yes","No") @@ -329,7 +329,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if(following && following == target) return following = target - src << "Now following [target]" + to_chat(src, "Now following [target]") if(ismob(target)) forceMove(get_turf(target)) var/mob/M = target @@ -406,7 +406,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp forceMove(T) following = null else - src << "This mob is not located in the game world." + to_chat(src, "This mob is not located in the game world.") /* /mob/observer/dead/verb/boo() set category = "Ghost" @@ -425,11 +425,11 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp /mob/observer/dead/memory() set hidden = 1 - src << "You are dead! You have no mind to store memory!" + to_chat(src, "You are dead! You have no mind to store memory!") /mob/observer/dead/add_memory() set hidden = 1 - src << "You are dead! You have no mind to store memory!" + to_chat(src, "You are dead! You have no mind to store memory!") /mob/observer/dead/Post_Incorpmove() following = null @@ -449,16 +449,16 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/pressure = environment.return_pressure() var/total_moles = environment.total_moles - src << "Results:" + to_chat(src, "Results:") if(abs(pressure - ONE_ATMOSPHERE) < 10) - src << "Pressure: [round(pressure,0.1)] kPa" + to_chat(src, "Pressure: [round(pressure,0.1)] kPa") else - src << "Pressure: [round(pressure,0.1)] kPa" + to_chat(src, "Pressure: [round(pressure,0.1)] kPa") if(total_moles) for(var/g in environment.gas) - src << "[gas_data.name[g]]: [round((environment.gas[g] / total_moles) * 100)]% ([round(environment.gas[g], 0.01)] moles)" - src << "Temperature: [round(environment.temperature-T0C,0.1)]°C ([round(environment.temperature,0.1)]K)" - src << "Heat Capacity: [round(environment.heat_capacity(),0.1)]" + to_chat(src, "[gas_data.name[g]]: [round((environment.gas[g] / total_moles) * 100)]% ([round(environment.gas[g], 0.01)] moles)") + to_chat(src, "Temperature: [round(environment.temperature-T0C,0.1)]°C ([round(environment.temperature,0.1)]K)") + to_chat(src, "Heat Capacity: [round(environment.heat_capacity(),0.1)]") /mob/observer/dead/verb/check_radiation() set name = "Check Radiation" @@ -466,7 +466,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/turf/t = get_turf(src) if(t) - var/rads = radiation_repository.get_rads_at_turf(t) + var/rads = SSradiation.get_rads_at_turf(t) to_chat(src, "Radiation level: [rads ? rads : "0"] Bq.") @@ -475,7 +475,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set category = "Ghost" if(config.disable_player_mice) - src << "Spawning as a mouse is currently disabled." + to_chat(src, "Spawning as a mouse is currently disabled.") return if(!MayRespawn(1)) @@ -483,14 +483,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/turf/T = get_turf(src) if(!T || (T.z in using_map.admin_levels)) - src << "You may not spawn as a mouse on this Z-level." + to_chat(src, "You may not spawn as a mouse on this Z-level.") return var/timedifference = world.time - client.time_died_as_mouse if(client.time_died_as_mouse && timedifference <= mouse_respawn_time * 600) var/timedifference_text timedifference_text = time2text(mouse_respawn_time * 600 - timedifference,"mm:ss") - src << "You may only spawn again as a mouse more than [mouse_respawn_time] minutes after your death. You have [timedifference_text] left." + to_chat(src, "You may only spawn again as a mouse more than [mouse_respawn_time] minutes after your death. You have [timedifference_text] left.") return var/response = alert(src, "Are you -sure- you want to become a mouse?","Are you sure you want to squeek?","Squeek!","Nope!") @@ -508,7 +508,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp vent_found = pick(found_vents) host = new /mob/living/simple_mob/animal/passive/mouse(vent_found) else - src << "Unable to find any unwelded vents to spawn mice at." + to_chat(src, "Unable to find any unwelded vents to spawn mice at.") if(host) if(config.uneducated_mice) @@ -545,7 +545,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp set desc = "If the round is sufficiently spooky, write a short message in blood on the floor or a wall. Remember, no IC in OOC or OOC in IC." if(!(config.cult_ghostwriter)) - src << "That verb is not currently permitted." + to_chat(src, "That verb is not currently permitted.") return if (!src.stat) @@ -560,7 +560,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp ghosts_can_write = 1 if(!ghosts_can_write && !check_rights(R_ADMIN, 0)) //Let's allow for admins to write in blood for events and the such. - src << "The veil is not thin enough for you to do that." + to_chat(src, "The veil is not thin enough for you to do that.") return var/list/choices = list() @@ -569,7 +569,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp choices += B if(!choices.len) - src << "There is no blood to use nearby." + to_chat(src, "There is no blood to use nearby.") return var/obj/effect/decal/cleanable/blood/choice = input(src,"What blood would you like to use?") in null|choices @@ -580,7 +580,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp T = get_step(T,text2dir(direction)) if (!istype(T)) - src << "You cannot doodle there." + to_chat(src, "You cannot doodle there.") return if(!choice || choice.amount == 0 || !(src.Adjacent(choice))) @@ -592,7 +592,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp for (var/obj/effect/decal/cleanable/blood/writing/W in T) num_doodles++ if (num_doodles > 4) - src << "There is no space to write on!" + to_chat(src, "There is no space to write on!") return var/max_length = 50 @@ -603,7 +603,7 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp if (length(message) > max_length) message += "-" - src << "You ran out of blood to write with!" + to_chat(src, "You ran out of blood to write with!") var/obj/effect/decal/cleanable/blood/writing/W = new(T) W.basecolor = doodle_color @@ -657,14 +657,14 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp var/toggled_invisible if(!forced && plane == PLANE_GHOSTS && world.time < toggled_invisible + 600) - src << "You must gather strength before you can turn visible again..." + to_chat(src, "You must gather strength before you can turn visible again...") return if(plane == PLANE_WORLD) toggled_invisible = world.time visible_message("It fades from sight...", "You are now invisible.") else - src << "You are now visible!" + to_chat(src, "You are now visible!") plane = (plane == PLANE_GHOSTS) ? PLANE_WORLD : PLANE_GHOSTS invisibility = (plane == PLANE_WORLD) ? 0 : INVISIBILITY_OBSERVER @@ -679,9 +679,9 @@ This is the proc mobs get to turn into a ghost. Forked from ghostize due to comp src.anonsay = !src.anonsay if(anonsay) - src << "Your key won't be shown when you speak in dead chat." + to_chat(src, "Your key won't be shown when you speak in dead chat.") else - src << "Your key will be publicly visible again." + to_chat(src, "Your key will be publicly visible again.") /mob/observer/dead/canface() return 1 @@ -714,11 +714,11 @@ mob/observer/dead/MayRespawn(var/feedback = 0) return 0 if(mind && mind.current && mind.current.stat != DEAD && can_reenter_corpse) if(feedback) - src << "Your non-dead body prevent you from respawning." + to_chat(src, "Your non-dead body prevent you from respawning.") return 0 if(config.antag_hud_restricted && has_enabled_antagHUD == 1) if(feedback) - src << "antagHUD restrictions prevent you from respawning." + to_chat(src, "antagHUD restrictions prevent you from respawning.") return 0 return 1 @@ -755,12 +755,12 @@ mob/observer/dead/MayRespawn(var/feedback = 0) if(msg) log_say("(SPECWHISP to [key_name(M)]): [msg]", src) M << " You hear a strange, unidentifiable voice in your head... [msg]" - src << " You said: '[msg]' to [M]." + to_chat(src, " You said: '[msg]' to [M].") else return return 1 else - src << "You have not been pulled past the veil!" + to_chat(src, "You have not been pulled past the veil!") /mob/observer/dead/verb/choose_ghost_sprite() set category = "Ghost" diff --git a/code/modules/mob/dead/observer/say.dm b/code/modules/mob/dead/observer/say.dm index c950a84209..dc44a55168 100644 --- a/code/modules/mob/dead/observer/say.dm +++ b/code/modules/mob/dead/observer/say.dm @@ -10,7 +10,7 @@ if(message) client.handle_spam_prevention(MUTE_DEADCHAT) if(src.client.prefs.muted & MUTE_DEADCHAT) - src << "You cannot talk in deadchat (muted)." + to_chat(src, "You cannot talk in deadchat (muted).") return . = src.say_dead(message) @@ -31,7 +31,7 @@ if(message) client.handle_spam_prevention(MUTE_DEADCHAT) if(src.client.prefs.muted & MUTE_DEADCHAT) - src << "You cannot emote in deadchat (muted)." + to_chat(src, "You cannot emote in deadchat (muted).") return . = src.emote_dead(message) diff --git a/code/modules/mob/emote.dm b/code/modules/mob/emote.dm index f67f70eb87..fc269a3120 100644 --- a/code/modules/mob/emote.dm +++ b/code/modules/mob/emote.dm @@ -3,7 +3,7 @@ //m_type == 2 --> audible /mob/proc/custom_emote(var/m_type=1,var/message = null,var/range=world.view) if(stat || !use_me && usr == src) - src << "You are unable to emote." + to_chat(src, "You are unable to emote.") return var/muzzled = is_muzzled() @@ -62,16 +62,16 @@ /mob/proc/emote_dead(var/message) if(client.prefs.muted & MUTE_DEADCHAT) - src << "You cannot send deadchat emotes (muted)." + to_chat(src, "You cannot send deadchat emotes (muted).") return if(!is_preference_enabled(/datum/client_preference/show_dsay)) - src << "You have deadchat muted." + to_chat(src, "You have deadchat muted.") return if(!src.client.holder) if(!config.dsay_allowed) - src << "Deadchat is globally muted." + to_chat(src, "Deadchat is globally muted.") return diff --git a/code/modules/mob/hear_say.dm b/code/modules/mob/hear_say.dm index 693b2129e1..f316797dc2 100644 --- a/code/modules/mob/hear_say.dm +++ b/code/modules/mob/hear_say.dm @@ -60,9 +60,9 @@ if(is_deaf()) if(!language || !(language.flags & INNATE)) // INNATE is the flag for audible-emote-language, so we don't want to show an "x talks but you cannot hear them" message if it's set if(speaker == src) - src << "You cannot hear yourself speak!" + to_chat(src, "You cannot hear yourself speak!") else - src << "[speaker_name][alt_name] talks but you cannot hear." + to_chat(src, "[speaker_name][alt_name] talks but you cannot hear.") else var/message_to_send = null if(language) @@ -251,7 +251,7 @@ if((sdisabilities & DEAF) || ear_deaf) if(prob(20)) - src << "You feel your headset vibrate but can hear nothing from it!" + to_chat(src, "You feel your headset vibrate but can hear nothing from it!") else on_hear_radio(part_a, speaker_name, track, part_b, formatted) diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index 25a6ed122a..00fe76086a 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -156,11 +156,11 @@ var/list/holder_mob_icon_cache = list() if(self_grab) grabber << "\The [src] clambers onto you!" - src << "You climb up onto \the [grabber]!" + to_chat(src, "You climb up onto \the [grabber]!") grabber.equip_to_slot_if_possible(H, slot_back, 0, 1) else grabber << "You scoop up \the [src]!" - src << "\The [grabber] scoops you up!" + to_chat(src, "\The [grabber] scoops you up!") H.sync(src) return H diff --git a/code/modules/mob/inventory.dm b/code/modules/mob/inventory.dm index c655559a10..0f0f95d336 100644 --- a/code/modules/mob/inventory.dm +++ b/code/modules/mob/inventory.dm @@ -56,7 +56,7 @@ var/list/slot_equipment_priority = list( \ else if(!disable_warning) - src << "You are unable to equip that." //Only print if del_on_fail is false + to_chat(src, "You are unable to equip that.") //Only print if del_on_fail is false return 0 equip_to_slot(W, slot, redraw_mob) //This proc should not ever fail. diff --git a/code/modules/mob/language/language.dm b/code/modules/mob/language/language.dm index f558301b15..9bc0a68653 100644 --- a/code/modules/mob/language/language.dm +++ b/code/modules/mob/language/language.dm @@ -144,9 +144,9 @@ /mob/observer/dead/hear_broadcast(var/datum/language/language, var/mob/speaker, var/speaker_name, var/message) if(speaker.name == speaker_name || antagHUD) - src << "[language.name], [speaker_name] ([ghost_follow_link(speaker, src)]) [message]" + to_chat(src, "[language.name], [speaker_name] ([ghost_follow_link(speaker, src)]) [message]") else - src << "[language.name], [speaker_name] [message]" + to_chat(src, "[language.name], [speaker_name] [message]") /datum/language/proc/check_special_condition(var/mob/other) return 1 @@ -164,6 +164,11 @@ if(name != "Noise") // Audible Emotes if(ishuman(speaker)) var/mob/living/carbon/human/H = speaker + if(H.species.has_organ[O_VOICE] && !(flags & SIGNLANG) && !(flags & NONVERBAL)) // Does the species need a voicebox? Is the language even spoken? + var/obj/item/organ/internal/voicebox/vocal = H.internal_organs_by_name[O_VOICE] + if(!vocal || vocal.is_broken() || vocal.mute) + return FALSE + if(src.name in H.species.assisted_langs) . = FALSE var/obj/item/organ/internal/voicebox/vox = locate() in H.internal_organs // Only voiceboxes for now. Maybe someday it'll include other organs, but I'm not that clever diff --git a/code/modules/mob/language/station_vr.dm b/code/modules/mob/language/station_vr.dm index 2601499691..6e942d50f7 100644 --- a/code/modules/mob/language/station_vr.dm +++ b/code/modules/mob/language/station_vr.dm @@ -69,7 +69,7 @@ colour = "enochian" //So fancy key = "i" syllables = list("salve","sum","loqui","operatur","iusta","et","permittit","facere","effercio","pluribus","enim","hoc", - "mihi","wan","six","salve","tartu") + "mihi","wan","six","tartu") machine_understands = FALSE /datum/language/tajsign @@ -81,17 +81,28 @@ flags = SIGNLANG | NO_STUTTER | NONVERBAL // | WHITELISTED (YWEdit) /datum/language/bug - name = LANGUAGE_VESPINAE - desc = "A jarring and clicky language developed and used by Vasilissans, it is designed for use with mouthparts and as a result has become a common language for various arthropod species." - speech_verb = "clicks" - ask_verb = "chitters" - exclaim_verb = "rasps" - colour = "bug" - key = "x" - syllables = list("vaur","uyek","uyit","avek","sc'theth","k'ztak","teth","wre'ge","lii","dra'","zo'","ra'","kax'","zz","vh","ik","ak", + name = LANGUAGE_VESPINAE + desc = "A jarring and clicky language developed and used by Vasilissans, it is designed for use with mouthparts and as a result has become a common language for various arthropod species." + speech_verb = "clicks" + ask_verb = "chitters" + exclaim_verb = "rasps" + colour = "bug" + key = "x" + syllables = list("vaur","uyek","uyit","avek","sc'theth","k'ztak","teth","wre'ge","lii","dra'","zo'","ra'","kax'","zz","vh","ik","ak", "uhk","zir","sc'orth","sc'er","thc'yek","th'zirk","th'esk","k'ayek","ka'mil","sc'","ik'yir","yol","kig","k'zit","'","'","zrk","krg","isk'yet","na'k", "sc'azz","th'sc","nil","n'ahk","sc'yeth","aur'sk","iy'it","azzg","a'","i'","o'","u'","a","i","o","u","zz","kr","ak","nrk","tzzk","bz","xic'","k'lax'","histh") +/datum/language/shadekin + name = LANGUAGE_SHADEKIN + desc = "Shadekin seem to always know what the others are thinking. This is probably why." + speech_verb = "mars" + ask_verb = "mars" + exclaim_verb = "mars" + colour = "changeling" + key = "m" + machine_understands = FALSE + flags = WHITELISTED | HIVEMIND + /datum/language/human/slavic name = LANGUAGE_SLAVIC desc = "The official language of the Independent Colonial Confederation of Gilgamesh, originally established in 2122 by the short-lived United Slavic Confederation on Earth." @@ -126,4 +137,4 @@ /datum/language/unathi/monkey flags = RESTRICTED /datum/language/tajaran/monkey - flags = RESTRICTED \ No newline at end of file + flags = RESTRICTED diff --git a/code/modules/mob/living/autohiss.dm b/code/modules/mob/living/autohiss.dm index e81731ff15..ad7ee8ec7a 100644 --- a/code/modules/mob/living/autohiss.dm +++ b/code/modules/mob/living/autohiss.dm @@ -25,15 +25,15 @@ autohiss_mode = (autohiss_mode + 1) % AUTOHISS_NUM switch(autohiss_mode) if(AUTOHISS_OFF) - src << "Auto-hiss is now OFF." + to_chat(src, "Auto-hiss is now OFF.") if(AUTOHISS_BASIC) - src << "Auto-hiss is now BASIC." + to_chat(src, "Auto-hiss is now BASIC.") if(AUTOHISS_FULL) - src << "Auto-hiss is now FULL." + to_chat(src, "Auto-hiss is now FULL.") else soft_assert(0, "invalid autohiss value [autohiss_mode]") autohiss_mode = AUTOHISS_OFF - src << "Auto-hiss is now OFF." + to_chat(src, "Auto-hiss is now OFF.") /datum/species var/list/autohiss_basic_map = null diff --git a/code/modules/mob/living/carbon/alien/diona/diona_powers.dm b/code/modules/mob/living/carbon/alien/diona/diona_powers.dm index aea0054418..8384a7dbb8 100644 --- a/code/modules/mob/living/carbon/alien/diona/diona_powers.dm +++ b/code/modules/mob/living/carbon/alien/diona/diona_powers.dm @@ -25,15 +25,15 @@ var/mob/living/M = input(src,"Who do you wish to merge with?") in null|choices if(!M) - src << "There is nothing nearby to merge with." + to_chat(src, "There is nothing nearby to merge with.") else if(!do_merge(M)) - src << "You fail to merge with \the [M]..." + to_chat(src, "You fail to merge with \the [M]...") /mob/living/carbon/alien/diona/proc/do_merge(var/mob/living/carbon/human/H) if(!istype(H) || !src || !(src.Adjacent(H))) return 0 H << "You feel your being twine with that of \the [src] as it merges with your biomass." - src << "You feel your being twine with that of \the [H] as you merge with its biomass." + to_chat(src, "You feel your being twine with that of \the [H] as you merge with its biomass.") loc = H verbs += /mob/living/carbon/alien/diona/proc/split verbs -= /mob/living/carbon/alien/diona/proc/merge @@ -53,7 +53,7 @@ return src.loc << "You feel a pang of loss as [src] splits away from your biomass." - src << "You wiggle out of the depths of [src.loc]'s biomass and plop to the ground." + to_chat(src, "You wiggle out of the depths of [src.loc]'s biomass and plop to the ground.") var/mob/living/M = src.loc diff --git a/code/modules/mob/living/carbon/alien/diona/progression.dm b/code/modules/mob/living/carbon/alien/diona/progression.dm index b6c5b9b4fd..e259b18f27 100644 --- a/code/modules/mob/living/carbon/alien/diona/progression.dm +++ b/code/modules/mob/living/carbon/alien/diona/progression.dm @@ -5,7 +5,7 @@ return null if(amount_grown < max_grown) - src << "You are not yet ready for your growth..." + to_chat(src, "You are not yet ready for your growth...") return null src.split() diff --git a/code/modules/mob/living/carbon/alien/emote.dm b/code/modules/mob/living/carbon/alien/emote.dm index 175338e5ff..8d81aec4cf 100644 --- a/code/modules/mob/living/carbon/alien/emote.dm +++ b/code/modules/mob/living/carbon/alien/emote.dm @@ -16,7 +16,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -115,7 +115,7 @@ playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0) m_type = 2 if("help") - src << "burp, chirp, choke, collapse, dance, drool, gasp, shiver, gnarl, jump, moan, nod, roll, scratch,\nscretch, shake, sign-#, sulk, sway, tail, twitch, whimper" + to_chat(src, "burp, chirp, choke, collapse, dance, drool, gasp, shiver, gnarl, jump, moan, nod, roll, scratch,\nscretch, shake, sign-#, sulk, sway, tail, twitch, whimper") else src << text("Invalid Emote: []", act) if ((message && src.stat == 0)) diff --git a/code/modules/mob/living/carbon/alien/larva/progression.dm b/code/modules/mob/living/carbon/alien/larva/progression.dm index 166ae53676..4e9c15552f 100644 --- a/code/modules/mob/living/carbon/alien/larva/progression.dm +++ b/code/modules/mob/living/carbon/alien/larva/progression.dm @@ -1,10 +1,10 @@ /mob/living/carbon/alien/larva/confirm_evolution() - src << "You are growing into a beautiful alien! It is time to choose a caste." - src << "There are three to choose from:" - src << "Hunters are strong and agile, able to hunt away from the hive and rapidly move through ventilation shafts. Hunters generate plasma slowly and have low reserves." - src << "Sentinels are tasked with protecting the hive and are deadly up close and at a range. They are not as physically imposing nor fast as the hunters." - src << "Drones are the working class, offering the largest plasma storage and generation. They are the only caste which may evolve again, turning into the dreaded alien queen." + to_chat(src, "You are growing into a beautiful alien! It is time to choose a caste.") + to_chat(src, "There are three to choose from:") + to_chat(src, "Hunters are strong and agile, able to hunt away from the hive and rapidly move through ventilation shafts. Hunters generate plasma slowly and have low reserves.") + to_chat(src, "Sentinels are tasked with protecting the hive and are deadly up close and at a range. They are not as physically imposing nor fast as the hunters.") + to_chat(src, "Drones are the working class, offering the largest plasma storage and generation. They are the only caste which may evolve again, turning into the dreaded alien queen.") var/alien_caste = alert(src, "Please choose which alien caste you shall belong to.",,"Hunter","Sentinel","Drone") return alien_caste ? "Xenomorph [alien_caste]" : null diff --git a/code/modules/mob/living/carbon/alien/life.dm b/code/modules/mob/living/carbon/alien/life.dm index f02d82a45f..2c39964ad6 100644 --- a/code/modules/mob/living/carbon/alien/life.dm +++ b/code/modules/mob/living/carbon/alien/life.dm @@ -150,7 +150,7 @@ adjustFireLoss((environment.temperature - (T0C+66))/5) // Might be too high, check in testing. if (fire) fire.icon_state = "fire2" if(prob(20)) - src << "You feel a searing heat!" + to_chat(src, "You feel a searing heat!") else if (fire) fire.icon_state = "fire0" diff --git a/code/modules/mob/living/carbon/alien/progression.dm b/code/modules/mob/living/carbon/alien/progression.dm index 832535d062..1c4c37b083 100644 --- a/code/modules/mob/living/carbon/alien/progression.dm +++ b/code/modules/mob/living/carbon/alien/progression.dm @@ -12,11 +12,11 @@ return if(handcuffed || legcuffed) - src << "You cannot evolve when you are cuffed." + to_chat(src, "You cannot evolve when you are cuffed.") return if(amount_grown < max_grown) - src << "You are not fully grown." + to_chat(src, "You are not fully grown.") return // confirm_evolution() handles choices and other specific requirements. diff --git a/code/modules/mob/living/carbon/alien/say.dm b/code/modules/mob/living/carbon/alien/say.dm index 1f787be9dd..8621339927 100644 --- a/code/modules/mob/living/carbon/alien/say.dm +++ b/code/modules/mob/living/carbon/alien/say.dm @@ -4,7 +4,7 @@ if(client) if(client.prefs.muted & MUTE_IC) - src << "You cannot speak in IC (Muted)." + to_chat(src, "You cannot speak in IC (Muted).") return message = sanitize(message) diff --git a/code/modules/mob/living/carbon/brain/emote.dm b/code/modules/mob/living/carbon/brain/emote.dm index 22efdc76c6..bc4623647b 100644 --- a/code/modules/mob/living/carbon/brain/emote.dm +++ b/code/modules/mob/living/carbon/brain/emote.dm @@ -17,7 +17,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -28,15 +28,15 @@ if ("custom") return custom_emote(m_type, message) if ("alarm") - src << "You sound an alarm." + to_chat(src, "You sound an alarm.") message = "[src] sounds an alarm." m_type = 2 if ("alert") - src << "You let out a distressed noise." + to_chat(src, "You let out a distressed noise.") message = "[src] lets out a distressed noise." m_type = 2 if ("notice") - src << "You play a loud tone." + to_chat(src, "You play a loud tone.") message = "[src] plays a loud tone." m_type = 2 if ("flash") @@ -46,21 +46,21 @@ message = "[src] blinks." m_type = 1 if ("whistle") - src << "You whistle." + to_chat(src, "You whistle.") message = "[src] whistles." m_type = 2 if ("beep") - src << "You beep." + to_chat(src, "You beep.") message = "[src] beeps." m_type = 2 if ("boop") - src << "You boop." + to_chat(src, "You boop.") message = "[src] boops." m_type = 2 if ("help") - src << "alarm,alert,notice,flash,blink,whistle,beep,boop" + to_chat(src, "alarm,alert,notice,flash,blink,whistle,beep,boop") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if (message) log_emote(message, src) diff --git a/code/modules/mob/living/carbon/brain/life.dm b/code/modules/mob/living/carbon/brain/life.dm index 4ab220083d..c52584ba96 100644 --- a/code/modules/mob/living/carbon/brain/life.dm +++ b/code/modules/mob/living/carbon/brain/life.dm @@ -6,9 +6,9 @@ if (radiation > 100) radiation = 100 if(!container)//If it's not in an MMI - src << "You feel weak." + to_chat(src, "You feel weak.") else//Fluff-wise, since the brain can't detect anything itself, the MMI handles thing like that - src << "STATUS: CRITICAL AMOUNTS OF RADIATION DETECTED." + to_chat(src, "STATUS: CRITICAL AMOUNTS OF RADIATION DETECTED.") switch(radiation) if(1 to 49) @@ -23,9 +23,9 @@ if(prob(5)) radiation -= 5 if(!container) - src << "You feel weak." + to_chat(src, "You feel weak.") else - src << "STATUS: DANGEROUS LEVELS OF RADIATION DETECTED." + to_chat(src, "STATUS: DANGEROUS LEVELS OF RADIATION DETECTED.") updatehealth() if(75 to 100) @@ -115,7 +115,7 @@ silent = 1 if(!alert)//Sounds an alarm, but only once per 'level' emote("alarm") - src << "Major electrical distruption detected: System rebooting." + to_chat(src, "Major electrical distruption detected: System rebooting.") alert = 1 if(prob(75)) emp_damage -= 1 @@ -131,7 +131,7 @@ ear_damage = 1 if(!alert) emote("alert") - src << "Primary systems are now online." + to_chat(src, "Primary systems are now online.") alert = 1 if(prob(50)) emp_damage -= 1 @@ -143,13 +143,13 @@ if(2 to 9)//Low level of EMP damage, has few effects(handled elsewhere) if(!alert) emote("notice") - src << "System reboot nearly complete." + to_chat(src, "System reboot nearly complete.") alert = 1 if(prob(25)) emp_damage -= 1 if(1) alert = 0 - src << "All systems restored." + to_chat(src, "All systems restored.") emp_damage -= 1 return 1 diff --git a/code/modules/mob/living/carbon/brain/say.dm b/code/modules/mob/living/carbon/brain/say.dm index a09d8ce3e5..0493b2d92d 100644 --- a/code/modules/mob/living/carbon/brain/say.dm +++ b/code/modules/mob/living/carbon/brain/say.dm @@ -42,5 +42,5 @@ message_mode = null return R.radio.talk_into(src,message,message_mode,verb,speaking) else - src << "Your radio is disabled." + to_chat(src, "Your radio is disabled.") return 0 diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 505821640d..4d58c094ce 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -362,7 +362,7 @@ if(buckled) return 0 stop_pulling() - src << "You slipped on [slipped_on]!" + to_chat(src, "You slipped on [slipped_on]!") playsound(src.loc, 'sound/misc/slip.ogg', 50, 1, -3) Weaken(FLOOR(stun_duration/2, 1)) return 1 diff --git a/code/modules/mob/living/carbon/carbon_powers.dm b/code/modules/mob/living/carbon/carbon_powers.dm index 337f0b0ff1..163555a0c7 100644 --- a/code/modules/mob/living/carbon/carbon_powers.dm +++ b/code/modules/mob/living/carbon/carbon_powers.dm @@ -8,7 +8,7 @@ var/mob/living/simple_mob/animal/borer/B = has_brain_worms() if(B && B.host_brain) - src << "You withdraw your probosci, releasing control of [B.host_brain]" + to_chat(src, "You withdraw your probosci, releasing control of [B.host_brain]") B.detatch() @@ -17,7 +17,7 @@ verbs -= /mob/living/carbon/proc/spawn_larvae else - src << "ERROR NO BORER OR BRAINMOB DETECTED IN THIS MOB, THIS IS A BUG !" + to_chat(src, "ERROR NO BORER OR BRAINMOB DETECTED IN THIS MOB, THIS IS A BUG !") //Brain slug proc for tormenting the host. /mob/living/carbon/proc/punish_host() @@ -31,10 +31,10 @@ return if(B.host_brain.ckey) - src << "You send a punishing spike of psychic agony lancing into your host's brain." + to_chat(src, "You send a punishing spike of psychic agony lancing into your host's brain.") if (!can_feel_pain()) B.host_brain << "You feel a strange sensation as a foreign influence prods your mind." - src << "It doesn't seem to be as effective as you hoped." + to_chat(src, "It doesn't seem to be as effective as you hoped.") else B.host_brain << "Horrific, burning agony lances through you, ripping a soundless scream from your trapped mind!" @@ -49,7 +49,7 @@ return if(B.chemicals >= 100) - src << "Your host twitches and quivers as you rapidly excrete a larva from your sluglike body." + to_chat(src, "Your host twitches and quivers as you rapidly excrete a larva from your sluglike body.") visible_message("\The [src] heaves violently, expelling a rush of vomit and a wriggling, sluglike creature!") B.chemicals -= 100 B.has_reproduced = 1 @@ -58,5 +58,5 @@ new /mob/living/simple_mob/animal/borer(get_turf(src)) else - src << "You do not have enough chemicals stored to reproduce." + to_chat(src, "You do not have enough chemicals stored to reproduce.") return \ No newline at end of file diff --git a/code/modules/mob/living/carbon/give.dm b/code/modules/mob/living/carbon/give.dm index 5d4f17840a..8825f043b7 100644 --- a/code/modules/mob/living/carbon/give.dm +++ b/code/modules/mob/living/carbon/give.dm @@ -12,7 +12,7 @@ if(!I) I = src.get_inactive_hand() if(!I) - src << "You don't have anything in your hands to give to \the [target]." + to_chat(src, "You don't have anything in your hands to give to \the [target].") return if(alert(target,"[src] wants to give you \a [I]. Will you accept it?","Item Offer","Yes","No") == "No") //VOREStation Edit - make yes on the left to be consistent with other dialogs @@ -23,18 +23,18 @@ if(!I) return if(!Adjacent(target)) - src << "You need to stay in reaching distance while giving an object." + to_chat(src, "You need to stay in reaching distance while giving an object.") target << "\The [src] moved too far away." return if(I.loc != src || !src.item_is_in_hands(I)) - src << "You need to keep the item in your hands." + to_chat(src, "You need to keep the item in your hands.") target << "\The [src] seems to have given up on passing \the [I] to you." return if(target.hands_are_full()) target << "Your hands are full." - src << "Their hands are full." + to_chat(src, "Their hands are full.") return if(src.unEquip(I)) diff --git a/code/modules/mob/living/carbon/human/emote.dm b/code/modules/mob/living/carbon/human/emote.dm index 96cca283f0..4a28e2e7d1 100644 --- a/code/modules/mob/living/carbon/human/emote.dm +++ b/code/modules/mob/living/carbon/human/emote.dm @@ -33,7 +33,7 @@ if("ping", "beep", "buzz", "yes", "ye", "no", "rcough", "rsneeze") if(!isSynthetic()) - src << "You are not a synthetic." + to_chat(src, "You are not a synthetic.") return var/M = null @@ -83,7 +83,7 @@ if("squish") /* VOREStation Removal Start - Eh. People can squish maybe. if(species.bump_flag != SLIME) //This should definitely do it. - src << "You are not a slime thing!" + to_chat(src, "You are not a slime thing!") return */ //VOREStation Removal End playsound(src.loc, 'sound/effects/slime_squish.ogg', 50, 0) //Credit to DrMinky (freesound.org) for the sound. @@ -139,7 +139,7 @@ if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -721,7 +721,7 @@ if("vomit") if(isSynthetic()) - src << "You are unable to vomit." + to_chat(src, "You are unable to vomit.") return vomit() return @@ -741,13 +741,13 @@ message = "makes a light spitting noise, a poor attempt at a whistle." if ("help") //Adds YAWN EMOTES - Cross/Chirp - src << "blink, blink_r, blush, bow-(none)/mob, burp, chirp, choke, chuckle, clap, collapse, cough, cross, cry, custom, deathgasp, drool, eyebrow, fastsway/qwag, \ + to_chat(src, "blink, blink_r, blush, bow-(none)/mob, burp, choke, chirp, chuckle, clap, collapse, cough, cross, cry, custom, deathgasp, drool, eyebrow, fastsway/qwag, \ frown, gasp, giggle, glare-(none)/mob, grin, groan, grumble, handshake, hug-(none)/mob, laugh, look-(none)/mob, moan, mumble, nod, pale, point-atom, \ raise, salute, scream, sneeze, shake, shiver, shrug, sigh, signal-#1-10, slap-(none)/mob, smile, sneeze, sniff, snore, stare-(none)/mob, stopsway/swag, sway/wag, swish, tremble, twitch, \ - twitch_v, vomit, whimper, wink, yawn. Synthetics: beep, buzz, yes, no, rcough, rsneeze, ping" + twitch_v, vomit, whimper, wink, yawn. Synthetics: beep, buzz, yes, no, rcough, rsneeze, ping") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if (message) custom_emote(m_type,message) diff --git a/code/modules/mob/living/carbon/human/emote_vr.dm b/code/modules/mob/living/carbon/human/emote_vr.dm index 562150c2ee..f4df430540 100644 --- a/code/modules/mob/living/carbon/human/emote_vr.dm +++ b/code/modules/mob/living/carbon/human/emote_vr.dm @@ -1,4 +1,11 @@ +/mob + var/nextemote = 1 + /mob/living/carbon/human/proc/handle_emote_vr(var/act,var/m_type=1,var/message = null) + //Reduces emote spamming + if(src.nextemote >= world.time)// || user.stat != CONSCIOUS + return 1 + src.nextemote = world.time + 12 switch(act) if ("vwag") @@ -17,8 +24,37 @@ message = "mlems [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] tongue up over [get_visible_gender() == MALE ? "his" : get_visible_gender() == FEMALE ? "her" : "their"] nose. Mlem." m_type = 1 if ("awoo") - message = "awoos loudly. AwoooOOOOoooo!" m_type = 2 + message = "lets out an awoo." + playsound(loc, 'sound/voice/awoo.ogg', 50, 1, -1) + if ("nya") + message = "lets out a nya." + m_type = 2 + playsound(loc, 'sound/voice/nya.ogg', 50, 1, -1) + if ("peep") + message = "peeps like a bird." + m_type = 2 + playsound(loc, 'sound/voice/peep.ogg', 50, 1, -1) + if("chirp") + message = "chirps!" + playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0) + m_type = 2 + if ("weh") + message = "lets out a weh." + m_type = 2 + playsound(loc, 'sound/voice/weh.ogg', 50, 1, -1) + if ("merp") + message = "lets out a merp." + m_type = 2 + playsound(loc, 'sound/voice/merp.ogg', 50, 1, -1) + if ("bark") + message = "lets out a bark." + m_type = 2 + playsound(loc, 'sound/voice/bark2.ogg', 50, 1, -1) + if ("his") + message = "lets out a hiss." + m_type = 2 + playsound(loc, 'sound/voice/hiss.ogg', 50, 1, -1) if ("nsay") nsay() return TRUE @@ -30,45 +66,16 @@ playsound(src.loc, 'sound/misc/nymphchirp.ogg', 50, 0) m_type = 2 //End of Yawn Addtion if ("flip") - var/danger = 1 //Base 1% chance to break something. var/list/involved_parts = list(BP_L_LEG, BP_R_LEG, BP_L_FOOT, BP_R_FOOT) - for(var/organ_name in involved_parts) - var/obj/item/organ/external/E = get_organ(organ_name) - if(!E || E.is_stump() || E.splinted || (E.status & ORGAN_BROKEN)) - involved_parts -= organ_name - danger += 5 //Add 5% to the chance for each problem limb - - //Taurs are harder to flip - if(istype(tail_style, /datum/sprite_accessory/tail/taur)) - danger += 1 - //Check if they are physically capable if(src.sleeping || src.resting || src.buckled || src.weakened || src.restrained() || involved_parts.len < 2) - src << "You can't *flip in your current state!" + to_chat(src, "You can't *flip in your current state!") return 1 else src.SpinAnimation(7,1) message = "does a flip!" m_type = 1 - if(prob(danger)) - spawn(10) //Stick the landing. - var/breaking = pick(involved_parts) - var/obj/item/organ/external/E = get_organ(breaking) - if(isSynthetic()) - src.Weaken(5) - E.droplimb(1,DROPLIMB_EDGE) - message += " And loses a limb!" - log_and_message_admins("lost their [breaking] with *flip, ahahah.", src) - else - src.Weaken(5) - if(E.cannot_break) //Prometheans go splat - E.droplimb(0,DROPLIMB_BLUNT) - else - E.fracture() - message += " And breaks something!" - log_and_message_admins("broke their [breaking] with *flip, ahahah.", src) - if (message) custom_emote(m_type,message) return 1 @@ -78,7 +85,7 @@ /mob/living/carbon/human/proc/toggle_tail_vr(var/setting,var/message = 0) if(!tail_style || !tail_style.ani_state) if(message) - src << "You don't have a tail that supports this." + to_chat(src, "You don't have a tail that supports this.") return 0 var/new_wagging = isnull(setting) ? !wagging : setting @@ -90,7 +97,7 @@ /mob/living/carbon/human/proc/toggle_wing_vr(var/setting,var/message = 0) if(!wing_style || !wing_style.ani_state) if(message) - src << "You don't have a tail that supports this." + to_chat(src, "You don't have a tail that supports this.") return 0 var/new_flapping = isnull(setting) ? !flapping : setting diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 8c687e8de6..dad9e0f41d 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -295,6 +295,7 @@ msg += attempt_vr(src,"examine_pickup_size",args) //VOREStation Code msg += attempt_vr(src,"examine_step_size",args) //VOREStation Code msg += attempt_vr(src,"examine_nif",args) //VOREStation Code + msg += attempt_vr(src,"examine_chimera",args) //VOREStation Code if(mSmallsize in mutations) msg += "[T.He] [T.is] very short!
" diff --git a/code/modules/mob/living/carbon/human/examine_vr.dm b/code/modules/mob/living/carbon/human/examine_vr.dm index fd6a426447..bdd8678b1f 100644 --- a/code/modules/mob/living/carbon/human/examine_vr.dm +++ b/code/modules/mob/living/carbon/human/examine_vr.dm @@ -105,9 +105,11 @@ message = "[t_He] [t_is] extremely hungry. A deep growl occasionally rumbles from [t_his] empty stomach.\n" if(100 to 499) return message //Well that's pretty normal, really. - if(500 to 1199) // Fat. + if(500 to 999) // Fat. message = "[t_He] [t_has] a stuffed belly, bloated fat and round from eating too much.\n" - if(1200 to 1934) // One person fully digested. + if(1000 to 1399) + message = "[t_He] [t_has] a rotund, thick gut. It bulges from their body obscenely, close to sagging under its own weight.\n" + if(1400 to 1934) // One person fully digested. message = "[t_He] [t_is] sporting a large, round, sagging stomach. It's contains at least their body weight worth of glorping slush.\n" if(1935 to 3004) // Two people. message = "[t_He] [t_is] engorged with a huge stomach that sags and wobbles as they move. [t_He] must have consumed at least twice their body weight. It looks incredibly soft.\n" @@ -155,3 +157,40 @@ /mob/living/carbon/human/proc/examine_nif(mob/living/carbon/human/H) if(nif && nif.examine_msg) //If you have one set, anyway. return "[nif.examine_msg]\n" + +/mob/living/carbon/human/proc/examine_chimera(mob/living/carbon/human/H) + var/t_He = "It" //capitalised for use at the start of each line. + var/t_his = "its" + var/t_His = "Its" + var/t_appear = "appears" + var/t_has = "has" + switch(identifying_gender) //Gender is their "real" gender. Identifying_gender is their "chosen" gender. + if(MALE) + t_He = "He" + t_His = "His" + t_his = "his" + if(FEMALE) + t_He = "She" + t_His = "Her" + t_his = "her" + if(PLURAL) + t_He = "They" + t_His = "Their" + t_his = "their" + t_appear = "appear" + t_has = "have" + if(NEUTER) + t_He = "It" + t_His = "Its" + t_his = "its" + if(HERM) + t_He = "Shi" + t_His = "Hir" + t_his = "hir" + if(revive_ready == REVIVING_NOW || revive_ready == REVIVING_DONE) + if(stat == DEAD) + return "[t_His] body is twitching subtly.\n" + else + return "[t_He] [t_appear] to be in some sort of torpor.\n" + if(feral) + return "[t_He] [t_has] a crazed, wild look in [t_his] eyes!\n" \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human.dm b/code/modules/mob/living/carbon/human/human.dm index 0cf20396d8..e1974acf12 100644 --- a/code/modules/mob/living/carbon/human/human.dm +++ b/code/modules/mob/living/carbon/human/human.dm @@ -243,6 +243,12 @@ // this handles mulebots and vehicles // and now mobs on fire /mob/living/carbon/human/Crossed(var/atom/movable/AM) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(istype(AM, /mob/living/bot/mulebot)) var/mob/living/bot/mulebot/MB = AM MB.runOver(src) @@ -709,13 +715,13 @@ /mob/living/carbon/human/IsAdvancedToolUser(var/silent) // VOREstation start if(feral) - src << "Your primitive mind can't grasp the concept of that thing." + to_chat(src, "Your primitive mind can't grasp the concept of that thing.") return 0 // VOREstation end if(species.has_fine_manipulation) return 1 if(!silent) - src << "You don't have the dexterity to use that!" + to_chat(src, "You don't have the dexterity to use that!") return 0 /mob/living/carbon/human/abiotic(var/full_body = 0) @@ -1057,7 +1063,7 @@ if(!istype(O,/obj/item/weapon/implant) && prob(5)) //Moving with things stuck in you could be bad. // All kinds of embedded objects cause bleeding. if(!can_feel_pain(organ.organ_tag)) - src << "You feel [O] moving inside your [organ.name]." + to_chat(src, "You feel [O] moving inside your [organ.name].") else var/msg = pick( \ "A spike of pain jolts your [organ.name] as you bump [O] inside.", \ @@ -1223,26 +1229,26 @@ verbs -= /mob/living/carbon/human/proc/bloody_doodle if (src.gloves) - src << "Your [src.gloves] are getting in the way." + to_chat(src, "Your [src.gloves] are getting in the way.") return var/turf/simulated/T = src.loc if (!istype(T)) //to prevent doodling out of mechs and lockers - src << "You cannot reach the floor." + to_chat(src, "You cannot reach the floor.") return var/direction = input(src,"Which way?","Tile selection") as anything in list("Here","North","South","East","West") if (direction != "Here") T = get_step(T,text2dir(direction)) if (!istype(T)) - src << "You cannot doodle there." + to_chat(src, "You cannot doodle there.") return var/num_doodles = 0 for (var/obj/effect/decal/cleanable/blood/writing/W in T) num_doodles++ if (num_doodles > 4) - src << "There is no space to write on!" + to_chat(src, "There is no space to write on!") return var/max_length = bloody_hands * 30 //tweeter style @@ -1255,7 +1261,7 @@ if (length(message) > max_length) message += "-" - src << "You ran out of blood to write with!" + to_chat(src, "You ran out of blood to write with!") var/obj/effect/decal/cleanable/blood/writing/W = new(T) W.basecolor = (hand_blood_color) ? hand_blood_color : "#A10808" @@ -1283,6 +1289,9 @@ else if (affecting.robotic >= ORGAN_LIFELIKE) . = 0 fail_msg = "Your needle refuses to penetrate more than a short distance..." + else if (affecting.thick_skin && prob(70 - round(affecting.brute_dam + affecting.burn_dam / 2))) // Allows transplanted limbs with thick skin to maintain their resistance. + . = 0 + fail_msg = "Your needle fails to penetrate \the [affecting]'s thick hide..." else switch(target_zone) if(BP_HEAD) @@ -1412,7 +1421,7 @@ return if(self) - src << "You brace yourself to relocate your [current_limb.joint]..." + to_chat(src, "You brace yourself to relocate your [current_limb.joint]...") else U << "You begin to relocate [S]'s [current_limb.joint]..." @@ -1422,7 +1431,7 @@ return if(self) - src << "You pop your [current_limb.joint] back in!" + to_chat(src, "You pop your [current_limb.joint] back in!") else U << "You pop [S]'s [current_limb.joint] back in!" S << "[U] pops your [current_limb.joint] back in!" @@ -1507,11 +1516,11 @@ if(!UWC) return var/datum/category_item/underwear/UWI = all_underwear[UWC.name] if(!UWI || UWI.name == "None") - src << "You do not have [UWC.gender==PLURAL ? "[UWC.display_name]" : "\a [UWC.display_name]"]." + to_chat(src, "You do not have [UWC.gender==PLURAL ? "[UWC.display_name]" : "a [UWC.display_name]"].") return hide_underwear[UWC.name] = !hide_underwear[UWC.name] update_underwear(1) - src << "You [hide_underwear[UWC.name] ? "take off" : "put on"] your [UWC.display_name]." + to_chat(src, "You [hide_underwear[UWC.name] ? "take off" : "put on"] your [UWC.display_name].") return /mob/living/carbon/human/verb/pull_punches() @@ -1521,7 +1530,7 @@ if(stat) return pulling_punches = !pulling_punches - src << "You are now [pulling_punches ? "pulling your punches" : "not pulling your punches"]." + to_chat(src, "You are now [pulling_punches ? "pulling your punches" : "not pulling your punches"].") return /mob/living/carbon/human/should_have_organ(var/organ_check) diff --git a/code/modules/mob/living/carbon/human/human_attackhand.dm b/code/modules/mob/living/carbon/human/human_attackhand.dm index 311e0976ca..1fa1203182 100644 --- a/code/modules/mob/living/carbon/human/human_attackhand.dm +++ b/code/modules/mob/living/carbon/human/human_attackhand.dm @@ -104,7 +104,7 @@ if(istype(H) && health > config.health_threshold_dead) adjustOxyLoss(-(min(getOxyLoss(), 5))) updatehealth() - src << "You feel a breath of fresh air enter your lungs. It feels good." + to_chat(src, "You feel a breath of fresh air enter your lungs. It feels good.") else if(!(M == src && apply_pressure(M, M.zone_sel.selecting))) help_shake_act(M) diff --git a/code/modules/mob/living/carbon/human/human_damage.dm b/code/modules/mob/living/carbon/human/human_damage.dm index 1f211fe95b..dd42af027e 100644 --- a/code/modules/mob/living/carbon/human/human_damage.dm +++ b/code/modules/mob/living/carbon/human/human_damage.dm @@ -253,21 +253,21 @@ if (candidates.len) var/obj/item/organ/external/O = pick(candidates) O.mutate() - src << "Something is not right with your [O.name]..." + to_chat(src, "Something is not right with your [O.name]...") return else if (prob(heal_prob)) for (var/obj/item/organ/external/O in organs) if (O.status & ORGAN_MUTATED) O.unmutate() - src << "Your [O.name] is shaped normally again." + to_chat(src, "Your [O.name] is shaped normally again.") return if (getCloneLoss() < 1) for (var/obj/item/organ/external/O in organs) if (O.status & ORGAN_MUTATED) O.unmutate() - src << "Your [O.name] is shaped normally again." + to_chat(src, "Your [O.name] is shaped normally again.") BITSET(hud_updateflag, HEALTH_HUD) // Defined here solely to take species flags into account without having to recast at mob/living level. diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 6bd592aed6..57cef190ec 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -416,7 +416,7 @@ emp_act //If the armor absorbs all of the damage, skip the rest of the calculations var/soaked = get_armor_soak(affecting, "melee", O.armor_penetration) if(soaked >= throw_damage) - src << "Your armor absorbs the force of [O.name]!" + to_chat(src, "Your armor absorbs the force of [O.name]!") return var/armor = run_armor_check(affecting, "melee", O.armor_penetration, "Your armor has protected your [hit_area].", "Your armor has softened hit to your [hit_area].") //I guess "melee" is the best fit here diff --git a/code/modules/mob/living/carbon/human/human_defines_vr.dm b/code/modules/mob/living/carbon/human/human_defines_vr.dm index 0af0b1f7d1..b9200877c3 100644 --- a/code/modules/mob/living/carbon/human/human_defines_vr.dm +++ b/code/modules/mob/living/carbon/human/human_defines_vr.dm @@ -7,6 +7,47 @@ var/flapping = 0 var/vantag_pref = VANTAG_NONE //What's my status? var/impersonate_bodytype //For impersonating a bodytype + var/ability_flags = 0 //Shadekin abilities/potentially other species-based? + var/sensorpref = 5 //Suit sensor loadout pref - //TFF 5/8/19 - add and set suit sensor setting define to 5 for random setting - var/sensorpref = 5 \ No newline at end of file +/mob/living/carbon/human/proc/shadekin_get_energy() + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + return SK.get_energy(src) + +/mob/living/carbon/human/proc/shadekin_get_max_energy() + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + return SK.get_max_energy(src) + +/mob/living/carbon/human/proc/shadekin_set_energy(var/new_energy) + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + SK.set_energy(src, new_energy) + +/mob/living/carbon/human/proc/shadekin_set_max_energy(var/new_max_energy) + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + SK.set_max_energy(src, new_max_energy) + +/mob/living/carbon/human/proc/shadekin_adjust_energy(var/amount) + var/datum/species/shadekin/SK = species + + if(!istype(SK)) + return 0 + + if(amount > 0 || !(SK.check_infinite_energy(src))) + var/new_amount = SK.get_energy(src) + amount + SK.set_energy(src, new_amount) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human_helpers.dm b/code/modules/mob/living/carbon/human/human_helpers.dm index ec10dc90f8..8c4eba8a33 100644 --- a/code/modules/mob/living/carbon/human/human_helpers.dm +++ b/code/modules/mob/living/carbon/human/human_helpers.dm @@ -8,9 +8,9 @@ return 1 if(feedback) if(status[1] == HUMAN_EATING_NO_MOUTH) - src << "Where do you intend to put \the [food]? You don't have a mouth!" + to_chat(src, "Where do you intend to put \the [food]? You don't have a mouth!") else if(status[1] == HUMAN_EATING_BLOCKED_MOUTH) - src << "\The [status[2]] is in the way!" + to_chat(src, "\The [status[2]] is in the way!") return 0 /mob/living/carbon/human/can_force_feed(var/feeder, var/food, var/feedback = 1) diff --git a/code/modules/mob/living/carbon/human/human_movement.dm b/code/modules/mob/living/carbon/human/human_movement.dm index f0f24f0db2..4bb2770175 100644 --- a/code/modules/mob/living/carbon/human/human_movement.dm +++ b/code/modules/mob/living/carbon/human/human_movement.dm @@ -158,7 +158,7 @@ . += turf_move_cost // Wind makes it easier or harder to move, depending on if you're with or against the wind. - if(T.outdoors) + if(T.outdoors && (T.z <= SSplanets.z_to_planet.len)) var/datum/planet/P = SSplanets.z_to_planet[z] if(P) var/datum/weather_holder/WH = P.weather_holder @@ -224,6 +224,10 @@ // Handle footstep sounds /mob/living/carbon/human/handle_footstep(var/turf/T) + //VOREStation Edit begin: SHADEKIN + if(shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if(!config.footstep_volume || !T.footstep_sounds || !T.footstep_sounds.len) return // Future Upgrades - Multi species support diff --git a/code/modules/mob/living/carbon/human/human_powers.dm b/code/modules/mob/living/carbon/human/human_powers.dm index a3c5e65470..9309100cf6 100644 --- a/code/modules/mob/living/carbon/human/human_powers.dm +++ b/code/modules/mob/living/carbon/human/human_powers.dm @@ -42,7 +42,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot tackle someone in your current state." + to_chat(src, "You cannot tackle someone in your current state.") return var/list/choices = list() @@ -61,7 +61,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot tackle in your current state." + to_chat(src, "You cannot tackle in your current state.") return last_special = world.time + 50 @@ -103,7 +103,7 @@ var/mob/M = targets[target] if(istype(M, /mob/observer/dead) || M.stat == DEAD) - src << "Not even a [src.species.name] can speak to the dead." + to_chat(src, "Not even a [src.species.name] can speak to the dead.") return log_say("(COMMUNE to [key_name(M)]) [text]",src) @@ -138,7 +138,7 @@ if(msg) log_say("(PWHISPER to [key_name(M)]) [msg]", src) M << "You hear a strange, alien voice in your head... [msg]" - src << "You said: \"[msg]\" to [M]" + to_chat(src, "You said: \"[msg]\" to [M]") return /mob/living/carbon/human/proc/diona_split_nymph() @@ -189,7 +189,7 @@ if(stat == DEAD) return - src << "Performing self-diagnostic, please wait..." + to_chat(src, "Performing self-diagnostic, please wait...") sleep(50) var/output = "Self-Diagnostic Results:\n" @@ -226,17 +226,17 @@ set category = "Abilities" if(incapacitated()) - src << "You need to recover before you can use this ability." + to_chat(src, "You need to recover before you can use this ability.") return if(world.time < next_sonar_ping) - src << "You need another moment to focus." + to_chat(src, "You need another moment to focus.") return if(is_deaf() || is_below_sound_pressure(get_turf(src))) - src << "You are for all intents and purposes currently deaf!" + to_chat(src, "You are for all intents and purposes currently deaf!") return next_sonar_ping += 10 SECONDS var/heard_something = FALSE - src << "You take a moment to listen in to your environment..." + to_chat(src, "You take a moment to listen in to your environment...") for(var/mob/living/L in range(client.view, src)) var/turf/T = get_turf(L) if(!T || L == src || L.stat == DEAD || is_below_sound_pressure(T)) @@ -263,7 +263,7 @@ feedback += "" src << jointext(feedback,null) if(!heard_something) - src << "You hear no movement but your own." + to_chat(src, "You hear no movement but your own.") /mob/living/carbon/human/proc/regenerate() set name = "Regenerate" diff --git a/code/modules/mob/living/carbon/human/human_species_vr.dm b/code/modules/mob/living/carbon/human/human_species_vr.dm index ed27c12e62..897ef6ab14 100644 --- a/code/modules/mob/living/carbon/human/human_species_vr.dm +++ b/code/modules/mob/living/carbon/human/human_species_vr.dm @@ -26,6 +26,8 @@ /mob/living/carbon/human/protean/New(var/new_loc) ..(new_loc, "Protean") - /mob/living/carbon/human/alraune/New(var/new_loc) ..(new_loc, "Alraune") + +/mob/living/carbon/human/shadekin/New(var/new_loc) + ..(new_loc, SPECIES_SHADEKIN) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/human_vr.dm b/code/modules/mob/living/carbon/human/human_vr.dm index f12836ad3d..a60521b5ab 100644 --- a/code/modules/mob/living/carbon/human/human_vr.dm +++ b/code/modules/mob/living/carbon/human/human_vr.dm @@ -7,7 +7,8 @@ img.override = TRUE add_alt_appearance("animals", img, displayTo = alt_farmanimals) + /mob/living/carbon/human/Destroy() alt_farmanimals -= src - . = ..() + . = ..() \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/inventory.dm b/code/modules/mob/living/carbon/human/inventory.dm index a51e04b535..ee2082401c 100644 --- a/code/modules/mob/living/carbon/human/inventory.dm +++ b/code/modules/mob/living/carbon/human/inventory.dm @@ -327,7 +327,7 @@ This saves us from having to call add_fingerprint() any time something is put in if(C.attempt_attach_accessory(A, src)) return else - src << "You are trying to equip this item to an unsupported inventory slot. How the heck did you manage that? Stop it..." + to_chat(src, "You are trying to equip this item to an unsupported inventory slot. How the heck did you manage that? Stop it...") return if((W == src.l_hand) && (slot != slot_l_hand)) diff --git a/code/modules/mob/living/carbon/human/life.dm b/code/modules/mob/living/carbon/human/life.dm index cb63df8d56..3b0d161dfd 100644 --- a/code/modules/mob/living/carbon/human/life.dm +++ b/code/modules/mob/living/carbon/human/life.dm @@ -189,7 +189,7 @@ if (disabilities & EPILEPSY) if ((prob(1) && paralysis < 1)) - src << "You have a seizure!" + to_chat(src, "You have a seizure!") for(var/mob/O in viewers(src, null)) if(O == src) continue @@ -223,19 +223,19 @@ custom_pain("Your head feels numb and painful.", 10) if(getBrainLoss() >= 15) if(4 <= rn && rn <= 6) if(eye_blurry <= 0) - src << "It becomes hard to see for some reason." + to_chat(src, "It becomes hard to see for some reason.") eye_blurry = 10 if(getBrainLoss() >= 35) if(7 <= rn && rn <= 9) if(get_active_hand()) - src << "Your hand won't respond properly, you drop what you're holding!" + to_chat(src, "Your hand won't respond properly, you drop what you're holding!") drop_item() if(getBrainLoss() >= 45) if(10 <= rn && rn <= 12) if(prob(50)) - src << "You suddenly black out!" + to_chat(src, "You suddenly black out!") Paralyse(10) else if(!lying) - src << "Your legs won't respond properly, you fall down!" + to_chat(src, "Your legs won't respond properly, you fall down!") Weaken(10) @@ -283,6 +283,12 @@ if(core) return + //VOREStation Addition start: shadekin + var/obj/item/organ/internal/brain/shadekin/s_brain = locate() in internal_organs + if(s_brain) + return + //VOREStation Addition end: shadekin + var/damage = 0 radiation -= 1 * RADIATION_SPEED_COEFFICIENT if(prob(25)) @@ -294,13 +300,13 @@ if(!isSynthetic()) if(prob(5) && prob(100 * RADIATION_SPEED_COEFFICIENT)) radiation -= 5 * RADIATION_SPEED_COEFFICIENT - src << "You feel weak." + to_chat(src, "You feel weak.") Weaken(3) if(!lying) emote("collapse") if(prob(5) && prob(100 * RADIATION_SPEED_COEFFICIENT) && species.get_bodytype() == SPECIES_HUMAN) //apes go bald if((h_style != "Bald" || f_style != "Shaved" )) - src << "Your hair falls out." + to_chat(src, "Your hair falls out.") h_style = "Bald" f_style = "Shaved" update_hair() @@ -312,7 +318,7 @@ if(prob(5)) take_overall_damage(0, 5 * RADIATION_SPEED_COEFFICIENT, used_weapon = "Radiation Burns") if(prob(1)) - src << "You feel strange!" + to_chat(src, "You feel strange!") adjustCloneLoss(5 * RADIATION_SPEED_COEFFICIENT) emote("gasp") @@ -484,7 +490,7 @@ if(exhaled_pp > safe_exhaled_max) if (!co2_alert|| prob(15)) var/word = pick("extremely dizzy","short of breath","faint","confused") - src << "You feel [word]." + to_chat(src, "You feel [word].") adjustOxyLoss(HUMAN_MAX_OXYLOSS) co2_alert = 1 @@ -493,7 +499,7 @@ else if(exhaled_pp > safe_exhaled_max * 0.7) if (!co2_alert || prob(1)) var/word = pick("dizzy","short of breath","faint","momentarily confused") - src << "You feel [word]." + to_chat(src, "You feel [word].") //scale linearly from 0 to 1 between safe_exhaled_max and safe_exhaled_max*0.7 var/ratio = 1.0 - (safe_exhaled_max - exhaled_pp)/(safe_exhaled_max*0.3) @@ -507,7 +513,7 @@ else if(exhaled_pp > safe_exhaled_max * 0.6) if (prob(0.3)) var/word = pick("a little dizzy","short of breath") - src << "You feel [word]." + to_chat(src, "You feel [word].") else co2_alert = 0 @@ -555,10 +561,10 @@ if(breath.temperature <= species.breath_cold_level_1) if(prob(20)) - src << "You feel your face freezing and icicles forming in your lungs!" + to_chat(src, "You feel your face freezing and icicles forming in your lungs!") else if(breath.temperature >= species.breath_heat_level_1) if(prob(20)) - src << "You feel your face burning and a searing heat in your lungs!" + to_chat(src, "You feel your face burning and a searing heat in your lungs!") if(breath.temperature >= species.breath_heat_level_1) if(breath.temperature < species.breath_heat_level_2) @@ -612,6 +618,11 @@ //Stuff like the xenomorph's plasma regen happens here. species.handle_environment_special(src) + //VOREStation Edit begin: SHADEKIN + if(shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN + //Moved pressure calculations here for use in skip-processing check. var/pressure = environment.return_pressure() var/adjusted_pressure = calculate_affecting_pressure(pressure) @@ -876,7 +887,7 @@ for(var/obj/item/I in src) if(I.contaminated) if(check_belly(I)) continue //VOREStation Edit - if(src.species && src.species.get_bodytype() != "Vox") + if(src.species && src.species.get_bodytype() != "Vox" && src.species.get_bodytype() != "Shadekin") //VOREStation Edit: shadekin // This is hacky, I'm so sorry. if(I != l_hand && I != r_hand) //If the item isn't in your hands, you're probably wearing it. Full damage for you. total_phoronloss += vsc.plc.CONTAMINATION_LOSS @@ -923,7 +934,7 @@ overeatduration -= 2 //doubled the unfat rate if(noisy == TRUE && nutrition < 250 && prob(10)) //VOREStation edit for hunger noises. - var/growlsound = pick(hunger_sounds) + var/sound/growlsound = sound(get_sfx("hunger_sounds")) var/growlmultiplier = 100 - (nutrition / 250 * 100) playsound(src, growlsound, vol = growlmultiplier, vary = 1, falloff = 0.1, ignore_walls = TRUE, preference = /datum/client_preference/digestion_noises) // VOREStation Edit End @@ -983,11 +994,11 @@ var/brainOxPercent = 0.015 //Default 1.5% of your current oxyloss is applied as brain damage, 50 oxyloss is 1 brain damage if(CE_STABLE in chem_effects) brainOxPercent = 0.008 //Halved in effect - if(oxyloss >= 20 && prob(5)) + if(oxyloss >= (getMaxHealth() * 0.3) && prob(5)) // If oxyloss exceeds 30% of your max health, you can take brain damage. adjustBrainLoss(brainOxPercent * oxyloss) if(halloss >= species.total_health) - src << "You're in too much pain to keep going..." + to_chat(src, "You're in too much pain to keep going...") src.visible_message("[src] slumps to the ground, too weak to continue fighting.") Paralyse(10) setHalLoss(species.total_health - 1) @@ -1528,22 +1539,22 @@ stuttering = max(stuttering, 5) if(shock_stage == 40) - src << "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!" + to_chat(src, "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!") if (shock_stage >= 60) if(shock_stage == 60) emote("me",1,"'s body becomes limp.") if (prob(2)) - src << "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!" + to_chat(src, "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!") Weaken(20) if(shock_stage >= 80) if (prob(5)) - src << "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!" + to_chat(src, "[pick("The pain is excruciating", "Please, just end the pain", "Your whole body is going numb")]!") Weaken(20) if(shock_stage >= 120) if (prob(2)) - src << "[pick("You black out", "You feel like you could die any moment now", "You're about to lose consciousness")]!" + to_chat(src, "[pick("You black out", "You feel like you could die any moment now", "You are about to lose consciousness")]!") Paralyse(5) if(shock_stage == 150) @@ -1558,6 +1569,8 @@ var/temp = PULSE_NORM + var/brain_modifier = 1 + var/modifier_shift = 0 var/modifier_set @@ -1589,6 +1602,14 @@ var/obj/item/organ/internal/heart/Pump = internal_organs_by_name[O_HEART] + var/obj/item/organ/internal/brain/Control = internal_organs_by_name[O_BRAIN] + + if(Control) + brain_modifier = Control.get_control_efficiency() + + if(brain_modifier <= 0.7 && brain_modifier >= 0.4) // 70%-40% control, things start going weird as the brain is failing. + brain_modifier = rand(5, 15) / 10 + if(Pump) temp += Pump.standard_pulse_level - PULSE_NORM @@ -1616,7 +1637,7 @@ if(R.id in cheartstopper) //Conditional heart-stoppage if(R.volume >= R.overdose) temp = PULSE_NONE - return temp + return temp * brain_modifier //handles different chems' influence on pulse for(var/datum/reagent/R in reagents.reagent_list) if(R.id in bradycardics) @@ -1631,7 +1652,7 @@ if(R.volume >= R.overdose) temp = PULSE_NONE - return temp + return max(0, round(temp * brain_modifier)) /mob/living/carbon/human/proc/handle_heartbeat() if(pulse == PULSE_NONE) diff --git a/code/modules/mob/living/carbon/human/life_vr.dm b/code/modules/mob/living/carbon/human/life_vr.dm index 46476a636a..6c15daedf1 100644 --- a/code/modules/mob/living/carbon/human/life_vr.dm +++ b/code/modules/mob/living/carbon/human/life_vr.dm @@ -76,4 +76,4 @@ src.nutrition -= DEFAULT_HUNGER_FACTOR/10 // Moving around increases germ_level faster if(germ_level < GERM_LEVEL_MOVE_CAP && prob(8)) - germ_level++ + germ_level++ \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/outsider/replicant.dm b/code/modules/mob/living/carbon/human/species/outsider/replicant.dm index 91658a4851..ec13e29908 100644 --- a/code/modules/mob/living/carbon/human/species/outsider/replicant.dm +++ b/code/modules/mob/living/carbon/human/species/outsider/replicant.dm @@ -60,7 +60,9 @@ O_BRAIN = /obj/item/organ/internal/brain/replicant, O_EYES = /obj/item/organ/internal/eyes/replicant, O_AREJECT = /obj/item/organ/internal/immunehub/replicant, - O_VRLINK = /obj/item/organ/internal/brainmirror + O_VRLINK = /obj/item/organ/internal/brainmirror, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) /datum/species/shapeshifter/replicant/alpha @@ -95,7 +97,9 @@ O_AREJECT = /obj/item/organ/internal/immunehub/replicant, O_PLASMA = /obj/item/organ/internal/xenos/plasmavessel/replicant, O_ACID = /obj/item/organ/internal/xenos/acidgland/replicant, - O_VRLINK = /obj/item/organ/internal/brainmirror + O_VRLINK = /obj/item/organ/internal/brainmirror, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) /datum/species/shapeshifter/replicant/beta @@ -119,5 +123,7 @@ O_VENTC = /obj/item/organ/internal/metamorphgland/replicant, O_PLASMA = /obj/item/organ/internal/xenos/plasmavessel/replicant, O_RESIN = /obj/item/organ/internal/xenos/resinspinner/replicant, - O_VRLINK = /obj/item/organ/internal/brainmirror + O_VRLINK = /obj/item/organ/internal/brainmirror, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) diff --git a/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm b/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm new file mode 100644 index 0000000000..f24544e0b2 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/_defines.dm @@ -0,0 +1,6 @@ +#define NOT_WHILE_SHIFTED 1 +#define ONLY_WHILE_SHIFTED 2 +#define SHIFTED_OR_NOT 3 + +#define AB_PHASE_SHIFTED 0x1 +#define AB_SHADE_REGEN 0x2 \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm new file mode 100644 index 0000000000..f2e7ad188b --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin.dm @@ -0,0 +1,253 @@ +/datum/species/shadekin + name = SPECIES_SHADEKIN + name_plural = "Shadekin" + icobase = 'icons/mob/human_races/r_shadekin_vr.dmi' + deform = 'icons/mob/human_races/r_shadekin_vr.dmi' + tail = "tail" + icobase_tail = 1 + blurb = "Very little is known about these creatures. They appear to be largely mammalian in appearance. \ + Seemingly very rare to encounter, there have been widespread myths of these creatures the galaxy over, \ + but next to no verifiable evidence to their existence. However, they have recently been more verifiably \ + documented in the Virgo system, following a mining bombardment of Virgo 3. The crew of NSB Adephagia have \ + taken to calling these creatures 'Shadekin', and the name has generally stuck and spread. " //TODO: Something that's not wiki copypaste + wikilink = "https://wiki.vore-station.net/Shadekin" + catalogue_data = list(/datum/category_item/catalogue/fauna/shadekin) + + language = LANGUAGE_SHADEKIN + assisted_langs = list() + unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws/shadekin, /datum/unarmed_attack/bite/sharp/shadekin) + rarity_value = 15 //INTERDIMENSIONAL FLUFFERS + + siemens_coefficient = 0 + darksight = 10 + + slowdown = -0.5 + item_slowdown_mod = 0.5 + + brute_mod = 0.7 // Naturally sturdy. + burn_mod = 1.2 // Furry + + warning_low_pressure = 50 + hazard_low_pressure = -1 + + warning_high_pressure = 300 + hazard_high_pressure = INFINITY + + cold_level_1 = -1 //Immune to cold + cold_level_2 = -1 + cold_level_3 = -1 + + heat_level_1 = 850 //Resistant to heat + heat_level_2 = 1000 + heat_level_3 = 1150 + + flags = NO_SCAN | NO_MINOR_CUT | NO_INFECT + spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE + + reagent_tag = IS_SHADEKIN // for shadekin-unqiue chem interactions + + flesh_color = "#FFC896" + blood_color = "#A10808" + base_color = "#f0f0f0" + color_mult = 1 + + has_glowing_eyes = TRUE + + death_message = "phases to somewhere far away!" + male_cough_sounds = null + female_cough_sounds = null + male_sneeze_sound = null + female_sneeze_sound = null + + speech_bubble_appearance = "ghost" + + genders = list(PLURAL, NEUTER) //no sexual dymorphism + ambiguous_genders = TRUE //but just in case + + virus_immune = 1 + + breath_type = null + poison_type = null + + vision_flags = SEE_SELF|SEE_MOBS + appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_SKIN_COLOR | HAS_EYE_COLOR | HAS_UNDERWEAR + + move_trail = /obj/effect/decal/cleanable/blood/tracks/paw + + has_organ = list( + O_HEART = /obj/item/organ/internal/heart, + O_VOICE = /obj/item/organ/internal/voicebox, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain/shadekin, + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine + ) + + has_limbs = list( + BP_TORSO = list("path" = /obj/item/organ/external/chest), + BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/vr/shadekin), + BP_L_ARM = list("path" = /obj/item/organ/external/arm), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), + BP_L_LEG = list("path" = /obj/item/organ/external/leg), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), + BP_L_HAND = list("path" = /obj/item/organ/external/hand), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + ) + + //SHADEKIN-UNIQUE STUFF GOES HERE + var/list/shadekin_abilities = list(/datum/power/shadekin/phase_shift, + /datum/power/shadekin/regenerate_other, + /datum/power/shadekin/create_shade) + var/list/shadekin_ability_datums = list() + +/datum/species/shadekin/New() + ..() + for(var/power in shadekin_abilities) + var/datum/power/shadekin/SKP = new power(src) + shadekin_ability_datums.Add(SKP) + +/datum/species/shadekin/handle_death(var/mob/living/carbon/human/H) + spawn(1) + for(var/obj/item/W in H) + H.drop_from_inventory(W) + qdel(H) + +/datum/species/shadekin/get_bodytype() + return SPECIES_SHADEKIN + +/datum/species/shadekin/get_random_name() + return "shadekin" + +/datum/species/shadekin/handle_environment_special(var/mob/living/carbon/human/H) + handle_shade(H) + +/datum/species/shadekin/can_breathe_water() + return TRUE //they dont quite breathe + +/datum/species/shadekin/add_inherent_verbs(var/mob/living/carbon/human/H) + ..() + add_shadekin_abilities(H) + +/datum/species/shadekin/proc/add_shadekin_abilities(var/mob/living/carbon/human/H) + if(!H.ability_master || !istype(H.ability_master, /obj/screen/movable/ability_master/shadekin)) + H.ability_master = null + H.ability_master = new /obj/screen/movable/ability_master/shadekin(H) + for(var/datum/power/shadekin/P in shadekin_ability_datums) + if(!(P.verbpath in H.verbs)) + H.verbs += P.verbpath + H.ability_master.add_shadekin_ability( + object_given = H, + verb_given = P.verbpath, + name_given = P.name, + ability_icon_given = P.ability_icon_state, + arguments = list() + ) + +/datum/species/shadekin/proc/handle_shade(var/mob/living/carbon/human/H) + //Shifted kin don't gain/lose energy (and save time if we're at the cap) + var/darkness = 1 + var/dark_gains = 0 + + var/turf/T = get_turf(H) + if(!T) + dark_gains = 0 + return + + var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 + darkness = 1-brightness //Invert + + if(H.ability_flags & AB_PHASE_SHIFTED) + dark_gains = 0 + else + //Heal (very) slowly in good darkness + if(darkness >= 0.75) + H.adjustFireLoss(-0.05) + H.adjustBruteLoss(-0.05) + H.adjustToxLoss(-0.05) + dark_gains = 0.75 + else + dark_gains = 0.25 + + set_energy(H, get_energy(H) + dark_gains) + + //Update huds + update_shadekin_hud(H) + +/datum/species/shadekin/proc/get_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.dark_energy + +/datum/species/shadekin/proc/get_max_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.max_dark_energy + +/datum/species/shadekin/proc/set_energy(var/mob/living/carbon/human/H, var/new_energy) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return + + shade_organ.dark_energy = CLAMP(new_energy, 0, get_max_energy(H)) + +/datum/species/shadekin/proc/set_max_energy(var/mob/living/carbon/human/H, var/new_max_energy) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + shade_organ.max_dark_energy = new_max_energy + +/datum/species/shadekin/proc/check_infinite_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.dark_energy_infinite + +/datum/species/shadekin/proc/update_shadekin_hud(var/mob/living/carbon/human/H) + var/turf/T = get_turf(H) + if(!T) + return + if(H.shadekin_energy_display) + H.shadekin_energy_display.invisibility = 0 + switch(get_energy(H)) + if(80 to INFINITY) + H.shadekin_energy_display.icon_state = "energy0" + if(60 to 80) + H.shadekin_energy_display.icon_state = "energy1" + if(40 to 60) + H.shadekin_energy_display.icon_state = "energy2" + if(20 to 40) + H.shadekin_energy_display.icon_state = "energy3" + if(0 to 20) + H.shadekin_energy_display.icon_state = "energy4" + if(H.shadekin_dark_display) + H.shadekin_dark_display.invisibility = 0 + var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 + var/darkness = 1-brightness //Invert + switch(darkness) + if(0.80 to 1.00) + H.shadekin_dark_display.icon_state = "dark2" + if(0.60 to 0.80) + H.shadekin_dark_display.icon_state = "dark1" + if(0.40 to 0.60) + H.shadekin_dark_display.icon_state = "dark" + if(0.20 to 0.40) + H.shadekin_dark_display.icon_state = "dark-1" + if(0.00 to 0.20) + H.shadekin_dark_display.icon_state = "dark-2" + return \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm new file mode 100644 index 0000000000..7d354db330 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_abilities.dm @@ -0,0 +1,307 @@ +/datum/power/shadekin + +///////////////////// +/// PHASE SHIFT /// +///////////////////// +//Visual effect for phase in/out +/obj/effect/temp_visual/shadekin + randomdir = FALSE + duration = 5 + icon = 'icons/mob/vore_shadekin.dmi' + +/obj/effect/temp_visual/shadekin/phase_in + icon_state = "tp_in" + +/obj/effect/temp_visual/shadekin/phase_out + icon_state = "tp_out" + +/datum/power/shadekin/phase_shift + name = "Phase Shift (100)" + desc = "Shift yourself out of alignment with realspace to travel quickly to different areas." + verbpath = /mob/living/carbon/human/proc/phase_shift + ability_icon_state = "tech_passwall" + +/mob/living/carbon/human/proc/phase_shift() + set name = "Phase Shift (100)" + set desc = "Shift yourself out of alignment with realspace to travel quickly to different areas." + set category = "Shadekin" + + var/ability_cost = 100 + + var/datum/species/shadekin/SK = species + if(!istype(SK)) + to_chat(src, "Only a shadekin can use that!") + return FALSE + else if(stat) + to_chat(src, "Can't use that ability in your state!") + return FALSE + else if(shadekin_get_energy() < ability_cost && !(ability_flags & AB_PHASE_SHIFTED)) + to_chat(src, "Not enough energy for that ability!") + return FALSE + + if(!(ability_flags & AB_PHASE_SHIFTED)) + shadekin_adjust_energy(-ability_cost) + playsound(src, 'sound/effects/stealthoff.ogg', 75, 1) + + var/turf/T = get_turf(src) + if(!T.CanPass(src,T) || loc != T) + to_chat(src,"You can't use that here!") + return FALSE + + forceMove(T) + var/original_canmove = canmove + SetStunned(0) + SetWeakened(0) + if(buckled) + buckled.unbuckle_mob() + if(pulledby) + pulledby.stop_pulling() + stop_pulling() + canmove = FALSE + + //Shifting in + if(ability_flags & AB_PHASE_SHIFTED) + ability_flags &= ~AB_PHASE_SHIFTED + name = real_name + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = initial(B.escapable) + + //overlays.Cut() + invisibility = initial(invisibility) + see_invisible = initial(see_invisible) + incorporeal_move = initial(incorporeal_move) + density = initial(density) + force_max_speed = initial(force_max_speed) + update_icon() + + //Cosmetics mostly + var/obj/effect/temp_visual/shadekin/phase_in/phaseanim = new /obj/effect/temp_visual/shadekin/phase_in(src.loc) + phaseanim.dir = dir + alpha = 0 + custom_emote(1,"phases in!") + sleep(5) //The duration of the TP animation + canmove = original_canmove + alpha = initial(alpha) + + //Potential phase-in vore + if(can_be_drop_pred) //Toggleable in vore panel + var/list/potentials = living_mobs(0) + if(potentials.len) + var/mob/living/target = pick(potentials) + if(istype(target) && vore_selected) + target.forceMove(vore_selected) + to_chat(target,"\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!") + + //Affect nearby lights + var/destroy_lights = 0 + + for(var/obj/machinery/light/L in machines) + if(L.z != z || get_dist(src,L) > 10) + continue + + if(prob(destroy_lights)) + spawn(rand(5,25)) + L.broken() + else + L.flicker(10) + //Shifting out + else + ability_flags |= AB_PHASE_SHIFTED + custom_emote(1,"phases out!") + name = "Something" + + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = FALSE + + var/obj/effect/temp_visual/shadekin/phase_out/phaseanim = new /obj/effect/temp_visual/shadekin/phase_out(src.loc) + phaseanim.dir = dir + alpha = 0 + sleep(5) + invisibility = INVISIBILITY_LEVEL_TWO + see_invisible = INVISIBILITY_LEVEL_TWO + //overlays.Cut() + update_icon() + alpha = 127 + + canmove = original_canmove + incorporeal_move = TRUE + density = FALSE + force_max_speed = TRUE + +/mob/living/carbon/human/UnarmedAttack() + if(shadekin_phasing_check()) + return FALSE //Nope. + + . = ..() + +/mob/living/carbon/human/can_fall() + if(shadekin_phasing_check()) + return FALSE //Nope! + + return ..() + +/mob/living/carbon/human/zMove(direction) + if(shadekin_phasing_check()) + var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src) + if(destination) + forceMove(destination) + return TRUE //Yup. + + return ..() + +/mob/proc/shadekin_phasing_check() + var/mob/living/simple_mob/shadekin/s_SK = src + if(istype(s_SK)) + if(s_SK.ability_flags & AB_PHASE_SHIFTED) + return TRUE + var/mob/living/carbon/human/h_SK = src + if(istype(h_SK)) + if(h_SK.ability_flags & AB_PHASE_SHIFTED) + return TRUE + return FALSE + +/* +/mob/living/carbon/human/MouseDrop_T(atom/dropping, mob/user) + if(ability_flags & AB_PHASE_SHIFTED) + return FALSE //Nope! + + return ..() +*/ + + +////////////////////////// +/// REGENERATE OTHER /// +////////////////////////// +/datum/power/shadekin/regenerate_other + name = "Regenerate Other (50)" + desc = "Spend energy to heal physical wounds in another creature." + verbpath = /mob/living/carbon/human/proc/regenerate_other + ability_icon_state = "tech_biomedaura" + +/mob/living/carbon/human/proc/regenerate_other() + set name = "Regenerate Other (50)" + set desc = "Spend energy to heal physical wounds in another creature." + set category = "Shadekin" + + var/ability_cost = 50 + + var/datum/species/shadekin/SK = species + if(!istype(SK)) + to_chat(src, "Only a shadekin can use that!") + return FALSE + else if(stat) + to_chat(src, "Can't use that ability in your state!") + return FALSE + else if(shadekin_get_energy() < ability_cost) + to_chat(src, "Not enough energy for that ability!") + return FALSE + else if(ability_flags & AB_PHASE_SHIFTED) + to_chat(src, "You can't use that while phase shifted!") + return FALSE + + var/list/viewed = oview(1) + var/list/targets = list() + for(var/mob/living/L in viewed) + targets += L + if(!targets.len) + to_chat(src,"Nobody nearby to mend!") + return FALSE + + var/mob/living/target = input(src,"Pick someone to mend:","Mend Other") as null|anything in targets + if(!target) + return FALSE + + target.add_modifier(/datum/modifier/shadekin/heal_boop,1 MINUTE) + playsound(src, 'sound/effects/EMPulse.ogg', 75, 1) + shadekin_adjust_energy(-ability_cost) + visible_message("\The [src] gently places a hand on \the [target]...") + face_atom(target) + return TRUE + +/datum/modifier/shadekin/heal_boop + name = "Shadekin Regen" + desc = "You feel serene and well rested." + mob_overlay_state = "green_sparkles" + + on_created_text = "Sparkles begin to appear around you, and all your ills seem to fade away." + on_expired_text = "The sparkles have faded, although you feel much healthier than before." + stacks = MODIFIER_STACK_EXTEND + +/datum/modifier/shadekin/heal_boop/tick() + if(!holder.getBruteLoss() && !holder.getFireLoss() && !holder.getToxLoss() && !holder.getOxyLoss() && !holder.getCloneLoss()) // No point existing if the spell can't heal. + expire() + return + holder.adjustBruteLoss(-2) + holder.adjustFireLoss(-2) + holder.adjustToxLoss(-2) + holder.adjustOxyLoss(-2) + holder.adjustCloneLoss(-2) + + +////////////////////// +/// CREATE SHADE /// +////////////////////// +/datum/power/shadekin/create_shade + name = "Create Shade (25)" + desc = "Create a field of darkness that follows you." + verbpath = /mob/living/carbon/human/proc/create_shade + ability_icon_state = "tech_dispelold" + +/mob/living/carbon/human/proc/create_shade() + set name = "Create Shade (25)" + set desc = "Create a field of darkness that follows you." + set category = "Shadekin" + + var/ability_cost = 25 + + var/datum/species/shadekin/SK = species + if(!istype(SK)) + to_chat(src, "Only a shadekin can use that!") + return FALSE + else if(stat) + to_chat(src, "Can't use that ability in your state!") + return FALSE + else if(shadekin_get_energy() < ability_cost) + to_chat(src, "Not enough energy for that ability!") + return FALSE + else if(ability_flags & AB_PHASE_SHIFTED) + to_chat(src, "You can't use that while phase shifted!") + return FALSE + + playsound(src, 'sound/effects/bamf.ogg', 75, 1) + + add_modifier(/datum/modifier/shadekin/create_shade,20 SECONDS) + shadekin_adjust_energy(-ability_cost) + return TRUE + +/datum/modifier/shadekin/create_shade + name = "Shadekin Shadegen" + desc = "Darkness envelops you." + mob_overlay_state = "" + + on_created_text = "You drag part of The Dark into realspace, enveloping yourself." + on_expired_text = "You lose your grasp on The Dark and realspace reasserts itself." + stacks = MODIFIER_STACK_EXTEND + var/mob/living/simple_mob/shadekin/my_kin + +/datum/modifier/shadekin/create_shade/tick() + if(my_kin.ability_flags & AB_PHASE_SHIFTED) + expire() + +/datum/modifier/shadekin/create_shade/on_applied() + my_kin = holder + holder.glow_toggle = TRUE + holder.glow_range = 8 + holder.glow_intensity = -10 + holder.glow_color = "#FFFFFF" + holder.set_light(8, -10, "#FFFFFF") + +/datum/modifier/shadekin/create_shade/on_expire() + holder.glow_toggle = initial(holder.glow_toggle) + holder.glow_range = initial(holder.glow_range) + holder.glow_intensity = initial(holder.glow_intensity) + holder.glow_color = initial(holder.glow_color) + holder.set_light(0) + my_kin = null \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm new file mode 100644 index 0000000000..5017cff724 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_hud.dm @@ -0,0 +1,59 @@ +/obj/screen/shadekin + icon = 'icons/mob/shadekin_hud.dmi' + invisibility = 101 + +/obj/screen/shadekin/darkness + name = "darkness" + icon_state = "dark" + alpha = 150 + +/obj/screen/shadekin/energy + name = "energy" + icon_state = "energy0" + alpha = 150 + + + + +/obj/screen/movable/ability_master/shadekin + name = "Shadekin Abilities" + icon = 'icons/mob/screen_spells.dmi' + icon_state = "grey_spell_ready" + ability_objects = list() + showing = 0 + + open_state = "master_open" + closed_state = "master_closed" + + screen_loc = ui_spell_master + +/obj/screen/movable/ability_master/shadekin/update_abilities(forced = 0, mob/user) //Different proc to prevent indexing + update_icon() + if(user && user.client) + if(!(src in user.client.screen)) + user.client.screen += src + for(var/obj/screen/ability/ability in ability_objects) + ability.update_icon(forced) + +/obj/screen/ability/verb_based/shadekin + icon_state = "grey_spell_base" + background_base_state = "grey" + +/obj/screen/movable/ability_master/proc/add_shadekin_ability(var/object_given, var/verb_given, var/name_given, var/ability_icon_given, var/arguments) + if(!object_given) + message_admins("ERROR: add_shadekin_ability() was not given an object in its arguments.") + if(!verb_given) + message_admins("ERROR: add_shadekin_ability() was not given a verb/proc in its arguments.") + if(get_ability_by_proc_ref(verb_given)) + return // Duplicate + var/obj/screen/ability/verb_based/shadekin/A = new /obj/screen/ability/verb_based/shadekin() + A.ability_master = src + A.object_used = object_given + A.verb_to_call = verb_given + A.ability_icon_state = ability_icon_given + A.name = name_given + if(arguments) + A.arguments_to_use = arguments + ability_objects.Add(A) + if(my_mob.client) + toggle_open(2) //forces the icons to refresh on screen \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/shadekin/shadekin_yw.dm b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_yw.dm new file mode 100644 index 0000000000..79d8575a48 --- /dev/null +++ b/code/modules/mob/living/carbon/human/species/shadekin/shadekin_yw.dm @@ -0,0 +1,249 @@ +/datum/species/shadekin_yw + name = SPECIES_SHADEKIN_YW + name_plural = "Shadekin" + icobase = 'icons/mob/human_races/r_shadekin_vr.dmi' + deform = 'icons/mob/human_races/r_shadekin_vr.dmi' + tail = "tail" + icobase_tail = 1 + blurb = "A shadekin, where their powers have been stripped down, their access to the bluespace warp, removed." + catalogue_data = list(/datum/category_item/catalogue/fauna/shadekin) + + language = LANGUAGE_SHADEKIN + assisted_langs = list() + unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws/shadekin, /datum/unarmed_attack/bite/sharp/shadekin) + rarity_value = 15 //INTERDIMENSIONAL FLUFFERS + + siemens_coefficient = 0 + darksight = 10 + + slowdown = -0.5 + item_slowdown_mod = 0.5 + + brute_mod = 0.7 // Naturally sturdy. + burn_mod = 1.2 // Furry + + warning_low_pressure = 50 + hazard_low_pressure = -1 + + warning_high_pressure = 300 + hazard_high_pressure = INFINITY + + cold_level_1 = -1 //Immune to cold + cold_level_2 = -1 + cold_level_3 = -1 + + heat_level_1 = 850 //Resistant to heat + heat_level_2 = 1000 + heat_level_3 = 1150 + + flags = NO_SCAN | NO_MINOR_CUT | NO_INFECT + spawn_flags = SPECIES_CAN_JOIN + + reagent_tag = IS_SHADEKIN // for shadekin-unqiue chem interactions + + flesh_color = "#FFC896" + blood_color = "#A10808" + base_color = "#f0f0f0" + color_mult = 1 + + has_glowing_eyes = TRUE + + death_message = "phases to somewhere far away!" + male_cough_sounds = null + female_cough_sounds = null + male_sneeze_sound = null + female_sneeze_sound = null + + speech_bubble_appearance = "ghost" + + genders = list(PLURAL, NEUTER) //no sexual dymorphism + ambiguous_genders = TRUE //but just in case + + virus_immune = 1 + + breath_type = null + poison_type = null + + vision_flags = SEE_SELF + appearance_flags = HAS_HAIR_COLOR | HAS_LIPS | HAS_SKIN_COLOR | HAS_EYE_COLOR | HAS_UNDERWEAR + + move_trail = /obj/effect/decal/cleanable/blood/tracks/paw + + has_organ = list( + O_HEART = /obj/item/organ/internal/heart, + O_VOICE = /obj/item/organ/internal/voicebox, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain/shadekin, + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine + ) + + has_limbs = list( + BP_TORSO = list("path" = /obj/item/organ/external/chest), + BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/vr/shadekin), + BP_L_ARM = list("path" = /obj/item/organ/external/arm), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), + BP_L_LEG = list("path" = /obj/item/organ/external/leg), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), + BP_L_HAND = list("path" = /obj/item/organ/external/hand), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + ) +/* + //SHADEKIN-UNIQUE STUFF GOES HERE + var/list/shadekin_abilities = list(/datum/power/shadekin/phase_shift, + /datum/power/shadekin/regenerate_other, + /datum/power/shadekin/create_shade) + var/list/shadekin_ability_datums = list() + + +/datum/species/shadekin/New() + ..() + for(var/power in shadekin_abilities) + var/datum/power/shadekin/SKP = new power(src) + shadekin_ability_datums.Add(SKP) +*/ +/datum/species/shadekin_yw/handle_death(var/mob/living/carbon/human/H) + spawn(1) + for(var/obj/item/W in H) + H.drop_from_inventory(W) + qdel(H) + +/datum/species/shadekin_yw/get_bodytype() + return SPECIES_SHADEKIN + +/datum/species/shadekin_yw/get_random_name() + return "shadekin" + +///datum/species/shadekin_yw/handle_environment_special(var/mob/living/carbon/human/H) +// handle_shade(H) + +/datum/species/shadekin_yw/can_breathe_water() + return TRUE //they dont quite breathe +/* +/datum/species/shadekin/add_inherent_verbs(var/mob/living/carbon/human/H) + ..() + add_shadekin_abilities(H) + +/datum/species/shadekin/proc/add_shadekin_abilities(var/mob/living/carbon/human/H) + if(!H.ability_master || !istype(H.ability_master, /obj/screen/movable/ability_master/shadekin)) + H.ability_master = null + H.ability_master = new /obj/screen/movable/ability_master/shadekin(H) + for(var/datum/power/shadekin/P in shadekin_ability_datums) + if(!(P.verbpath in H.verbs)) + H.verbs += P.verbpath + H.ability_master.add_shadekin_ability( + object_given = H, + verb_given = P.verbpath, + name_given = P.name, + ability_icon_given = P.ability_icon_state, + arguments = list() + +/datum/species/shadekin/proc/handle_shade(var/mob/living/carbon/human/H) + //Shifted kin don't gain/lose energy (and save time if we're at the cap) + var/darkness = 1 + var/dark_gains = 0 + + var/turf/T = get_turf(H) + if(!T) + dark_gains = 0 + return + + var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 + darkness = 1-brightness //Invert + + if(H.ability_flags & AB_PHASE_SHIFTED) + dark_gains = 0 + else + //Heal (very) slowly in good darkness + if(darkness >= 0.75) + H.adjustFireLoss(-0.05) + H.adjustBruteLoss(-0.05) + H.adjustToxLoss(-0.05) + dark_gains = 0.75 + else + dark_gains = 0.25 + + set_energy(H, get_energy(H) + dark_gains) + + //Update huds + update_shadekin_hud(H) + +/datum/species/shadekin/proc/get_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.dark_energy + +/datum/species/shadekin/proc/get_max_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.max_dark_energy + +/datum/species/shadekin/proc/set_energy(var/mob/living/carbon/human/H, var/new_energy) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return + + shade_organ.dark_energy = CLAMP(new_energy, 0, get_max_energy(H)) + +/datum/species/shadekin/proc/set_max_energy(var/mob/living/carbon/human/H, var/new_max_energy) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + shade_organ.max_dark_energy = new_max_energy + +/datum/species/shadekin/proc/check_infinite_energy(var/mob/living/carbon/human/H) + var/obj/item/organ/internal/brain/shadekin/shade_organ = H.internal_organs_by_name[O_BRAIN] + + if(!istype(shade_organ)) + return 0 + + return shade_organ.dark_energy_infinite + +/datum/species/shadekin/proc/update_shadekin_hud(var/mob/living/carbon/human/H) + var/turf/T = get_turf(H) + if(!T) + return + if(H.shadekin_energy_display) + H.shadekin_energy_display.invisibility = 0 + switch(get_energy(H)) + if(80 to INFINITY) + H.shadekin_energy_display.icon_state = "energy0" + if(60 to 80) + H.shadekin_energy_display.icon_state = "energy1" + if(40 to 60) + H.shadekin_energy_display.icon_state = "energy2" + if(20 to 40) + H.shadekin_energy_display.icon_state = "energy3" + if(0 to 20) + H.shadekin_energy_display.icon_state = "energy4" + if(H.shadekin_dark_display) + H.shadekin_dark_display.invisibility = 0 + var/brightness = T.get_lumcount() //Brightness in 0.0 to 1.0 + var/darkness = 1-brightness //Invert + switch(darkness) + if(0.80 to 1.00) + H.shadekin_dark_display.icon_state = "dark2" + if(0.60 to 0.80) + H.shadekin_dark_display.icon_state = "dark1" + if(0.40 to 0.60) + H.shadekin_dark_display.icon_state = "dark" + if(0.20 to 0.40) + H.shadekin_dark_display.icon_state = "dark-1" + if(0.00 to 0.20) + H.shadekin_dark_display.icon_state = "dark-2" + return +*/ \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/species.dm b/code/modules/mob/living/carbon/human/species/species.dm index c2bb8cafe4..3a8c3b4f19 100644 --- a/code/modules/mob/living/carbon/human/species/species.dm +++ b/code/modules/mob/living/carbon/human/species/species.dm @@ -196,7 +196,9 @@ O_KIDNEYS = /obj/item/organ/internal/kidneys, O_BRAIN = /obj/item/organ/internal/brain, O_APPENDIX = /obj/item/organ/internal/appendix, - O_EYES = /obj/item/organ/internal/eyes + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) var/vision_organ // If set, this organ is required for vision. Defaults to "eyes" if the species has them. var/dispersed_eyes // If set, the species will be affected by flashbangs regardless if they have eyes or not, as they see in large areas. diff --git a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm index 28dfb0720e..2742b66a60 100644 --- a/code/modules/mob/living/carbon/human/species/species_attack_vr.dm +++ b/code/modules/mob/living/carbon/human/species/species_attack_vr.dm @@ -46,4 +46,18 @@ if(5) user.visible_message("[user]'s fangs sink deep into [target]'s [affecting.name], one of their veins bulging outwards from the sudden fluid pumped into it!") to_chat(target, "Your [affecting.name] feels like it's going to burst! Moments later, you simply can't feel your [affecting.name] any longer, the numbness slowly spreading throughout your body!") - target.bloodstr.add_reagent("numbenzyme",attack_damage) \ No newline at end of file + target.bloodstr.add_reagent("numbenzyme",attack_damage) + +/datum/unarmed_attack/claws/shadekin + var/energy_gain = 3 + +/datum/unarmed_attack/claws/shadekin/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage) + ..() + user.shadekin_adjust_energy(energy_gain) + +/datum/unarmed_attack/bite/sharp/shadekin + var/energy_gain = 3 + +/datum/unarmed_attack/bite/sharp/shadekin/show_attack(var/mob/living/carbon/human/user, var/mob/living/carbon/human/target, var/zone, var/attack_damage) + ..() + user.shadekin_adjust_energy(energy_gain) \ No newline at end of file diff --git a/code/modules/mob/living/carbon/human/species/station/human_subspecies.dm b/code/modules/mob/living/carbon/human/species/station/human_subspecies.dm index b0b81defef..1f6ba4ac7e 100644 --- a/code/modules/mob/living/carbon/human/species/station/human_subspecies.dm +++ b/code/modules/mob/living/carbon/human/species/station/human_subspecies.dm @@ -44,8 +44,11 @@ O_VOICE = /obj/item/organ/internal/voicebox, O_LIVER = /obj/item/organ/internal/liver, O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_SPLEEN = /obj/item/organ/internal/spleen/minor, O_BRAIN = /obj/item/organ/internal/brain, - O_EYES = /obj/item/organ/internal/eyes + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE =/obj/item/organ/internal/intestine ) /* diff --git a/code/modules/mob/living/carbon/human/species/station/prometheans.dm b/code/modules/mob/living/carbon/human/species/station/prometheans.dm index 6cef9b7032..965be6b503 100644 --- a/code/modules/mob/living/carbon/human/species/station/prometheans.dm +++ b/code/modules/mob/living/carbon/human/species/station/prometheans.dm @@ -174,15 +174,40 @@ var/datum/species/shapeshifter/promethean/prometheans H.adjustToxLoss(3 * heal_rate) // Tripled because 0.5 is miniscule, and fire_stacks are capped in both directions healing = FALSE + //Prometheans automatically clean every surface they're in contact with every life tick - this includes the floor without shoes. + //They gain nutrition from doing this. var/turf/T = get_turf(H) if(istype(T)) - var/obj/effect/decal/cleanable/C = locate() in T - if(C && !(H.shoes || (H.wear_suit && (H.wear_suit.body_parts_covered & FEET)))) - qdel(C) + if(!(H.shoes || (H.wear_suit && (H.wear_suit.body_parts_covered & FEET)))) + for(var/obj/O in T) + O.clean_blood() + H.nutrition = min(500, max(0, H.nutrition + rand(5, 15))) if (istype(T, /turf/simulated)) var/turf/simulated/S = T + T.clean_blood() S.dirt = 0 + H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + if(H.clean_blood(1)) H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + if(H.r_hand) + if(H.r_hand.clean_blood()) + H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + if(H.l_hand) + if(H.l_hand.clean_blood()) + H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + if(H.head) + if(H.head.clean_blood()) + H.update_inv_head(0) + H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + if(H.wear_suit) + if(H.wear_suit.clean_blood()) + H.update_inv_wear_suit(0) + H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + if(H.w_uniform) + if(H.w_uniform.clean_blood()) + H.update_inv_w_uniform(0) + H.nutrition = max(H.nutrition, min(500, H.nutrition + rand(15, 30))) //VOREStation Edit: Gives nutrition up to a point instead of being capped + //End cleaning code. var/datum/gas_mixture/environment = T.return_air() var/pressure = environment.return_pressure() diff --git a/code/modules/mob/living/carbon/human/species/station/seromi.dm b/code/modules/mob/living/carbon/human/species/station/seromi.dm index 207b33ba97..beeba0fd45 100644 --- a/code/modules/mob/living/carbon/human/species/station/seromi.dm +++ b/code/modules/mob/living/carbon/human/species/station/seromi.dm @@ -33,7 +33,7 @@ flesh_color = "#5F7BB0" base_color = "#001144" tail = "seromitail" - //tail_hair = "feathers" //TESHARI TEMPORARY REMOVAL + //tail_hair = "feathers" //VORESTATION TESHARI TEMPORARY REMOVAL reagent_tag = IS_TESHARI move_trail = /obj/effect/decal/cleanable/blood/tracks/paw @@ -115,7 +115,9 @@ O_LIVER = /obj/item/organ/internal/liver, O_KIDNEYS = /obj/item/organ/internal/kidneys, O_BRAIN = /obj/item/organ/internal/brain, - O_EYES = /obj/item/organ/internal/eyes + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) unarmed_types = list( @@ -173,6 +175,15 @@ H << "[M] calms you down..." H.next_loneliness_time = world.time+500 + for(var/obj/effect/overlay/aiholo/A in range(5, H)) + if(H.loneliness_stage > 0) + H.loneliness_stage -= 4 + if(H.loneliness_stage < 0) + H.loneliness_stage = 0 + if(world.time >= H.next_loneliness_time) + H << "[A] calms you down..." + H.next_loneliness_time = world.time+500 + /*for(var/obj/item/toy/plushie/P in range(5, H)) if(H.loneliness_stage > 0) H.loneliness_stage -= 4 diff --git a/code/modules/mob/living/carbon/human/species/station/station.dm b/code/modules/mob/living/carbon/human/species/station/station.dm index a3713d78a4..77b88e9378 100644 --- a/code/modules/mob/living/carbon/human/species/station/station.dm +++ b/code/modules/mob/living/carbon/human/species/station/station.dm @@ -33,6 +33,20 @@ spawn_flags = SPECIES_CAN_JOIN appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_TONE | HAS_LIPS | HAS_UNDERWEAR | HAS_EYE_COLOR + has_organ = list( + O_HEART = /obj/item/organ/internal/heart, + O_LUNGS = /obj/item/organ/internal/lungs, + O_VOICE = /obj/item/organ/internal/voicebox, + O_LIVER = /obj/item/organ/internal/liver, + O_KIDNEYS = /obj/item/organ/internal/kidneys, + O_BRAIN = /obj/item/organ/internal/brain, + O_APPENDIX = /obj/item/organ/internal/appendix, + O_SPLEEN = /obj/item/organ/internal/spleen, + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine + ) + inherent_verbs = list( /mob/living/carbon/human/proc/tie_hair) @@ -130,6 +144,8 @@ O_LIVER = /obj/item/organ/internal/liver/unathi, O_BRAIN = /obj/item/organ/internal/brain/unathi, O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach/unathi, + O_INTESTINE = /obj/item/organ/internal/intestine/unathi ) @@ -236,7 +252,9 @@ O_LIVER = /obj/item/organ/internal/liver, O_KIDNEYS = /obj/item/organ/internal/kidneys, O_BRAIN = /obj/item/organ/internal/brain, - O_EYES = /obj/item/organ/internal/eyes + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) /datum/species/tajaran/equip_survival_gear(var/mob/living/carbon/human/H) @@ -392,7 +410,9 @@ O_LIVER = /obj/item/organ/internal/liver, O_KIDNEYS = /obj/item/organ/internal/kidneys, O_BRAIN = /obj/item/organ/internal/brain, - O_EYES = /obj/item/organ/internal/eyes + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE =/obj/item/organ/internal/intestine ) descriptors = list( diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm index 2139e56b43..1540373d68 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_abilities_vr.dm @@ -167,13 +167,13 @@ switch(halpick) if(0 to 15) //15% chance //Screwy HUD - //src << "Screwy HUD" + //to_chat(src, "Screwy HUD") hal_screwyhud = pick(1,2,3,3,4,4) spawn(rand(100,250)) hal_screwyhud = 0 if(16 to 25) //10% chance //Strange items - //src << "Traitor Items" + //to_chat(src, "Traitor Items") if(!halitem) halitem = new var/list/slots_free = list(ui_lhand,ui_rhand) @@ -221,7 +221,7 @@ halitem = null if(26 to 35) //10% chance //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halimage) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) @@ -231,13 +231,13 @@ switch(rand(1,3)) if(1) - //src << "Space" + //to_chat(src, "Space") halimage = image('icons/turf/space.dmi',target,"[rand(1,25)]",TURF_LAYER) if(2) - //src << "Fire" + //to_chat(src, "Fire") halimage = image('icons/effects/fire.dmi',target,"1",TURF_LAYER) if(3) - //src << "C4" + //to_chat(src, "C4") halimage = image('icons/obj/assemblies.dmi',target,"plastic-explosive2",OBJ_LAYER+0.01) @@ -248,7 +248,7 @@ if(36 to 55) //20% chance //Strange audio - //src << "Strange Audio" + //to_chat(src, "Strange Audio") switch(rand(1,12)) if(1) src << 'sound/machines/airlock.ogg' if(2) @@ -282,7 +282,7 @@ src << pick(creepyasssounds) if(56 to 60) //5% chance //Flashes of danger - //src << "Danger Flash" + //to_chat(src, "Danger Flash") if(!halbody) var/list/possible_points = list() for(var/turf/simulated/floor/F in view(src,world.view)) @@ -358,7 +358,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot bite anyone in your current state!" + to_chat(src, "You cannot bite anyone in your current state!") return var/list/choices = list() @@ -376,10 +376,10 @@ if(last_special > world.time) return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot bite in your current state." + to_chat(src, "You cannot bite in your current state.") return if(B.vessel.total_volume <= 0 || B.isSynthetic()) //Do they have any blood in the first place, and are they synthetic? - src << "There appears to be no blood in this prey..." + to_chat(src, "There appears to be no blood in this prey...") return last_special = world.time + 600 diff --git a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm index 66d33c27eb..ca77170b20 100644 --- a/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm +++ b/code/modules/mob/living/carbon/human/species/station/station_special_vr.dm @@ -64,7 +64,9 @@ O_LIVER = /obj/item/organ/internal/liver, O_KIDNEYS = /obj/item/organ/internal/kidneys, O_BRAIN = /obj/item/organ/internal/brain, - O_EYES = /obj/item/organ/internal/eyes + O_EYES = /obj/item/organ/internal/eyes, + O_STOMACH = /obj/item/organ/internal/stomach, + O_INTESTINE = /obj/item/organ/internal/intestine ) flesh_color = "#AFA59E" @@ -382,3 +384,63 @@ H.eye_blurry = 5 H.shock_stage = min(H.shock_stage + coldshock, 160) //cold hurts and gives them pain messages, eventually weakening and paralysing, but doesn't damage. return + +/datum/species/werebeast + name = SPECIES_WEREBEAST + name_plural = "Werebeasts" + icobase = 'icons/mob/human_races/r_werebeast.dmi' + deform = 'icons/mob/human_races/r_def_werebeast.dmi' + icon_template = 'icons/mob/human_races/r_werebeast.dmi' + tail = "tail" + unarmed_types = list(/datum/unarmed_attack/stomp, /datum/unarmed_attack/kick, /datum/unarmed_attack/claws, /datum/unarmed_attack/bite/sharp) + total_health = 200 + brute_mod = 0.85 + burn_mod = 0.85 + metabolic_rate = 2 + item_slowdown_mod = 0.25 + hunger_factor = 0.4 + darksight = 8 + mob_size = MOB_LARGE + num_alternate_languages = 3 + secondary_langs = list(LANGUAGE_CANILUNZT) + name_language = LANGUAGE_CANILUNZT + primitive_form = "Wolpin" + color_mult = 1 + + min_age = 18 + max_age = 200 + + blurb = "Big buff werewolves. These are a limited functionality event species that are not balanced for regular gameplay. Adminspawn only." + + wikilink="N/A" + + catalogue_data = list(/datum/category_item/catalogue/fauna/vulpkanin) + + spawn_flags = SPECIES_CAN_JOIN | SPECIES_IS_WHITELISTED | SPECIES_WHITELIST_SELECTABLE + appearance_flags = HAS_HAIR_COLOR | HAS_SKIN_COLOR | HAS_EYE_COLOR + inherent_verbs = list( + /mob/living/proc/shred_limb, + /mob/living/proc/eat_trash) + + flesh_color = "#AFA59E" + base_color = "#777777" + + heat_discomfort_strings = list( + "Your fur prickles in the heat.", + "You feel uncomfortably warm.", + "Your overheated skin itches." + ) + + has_limbs = list( + BP_TORSO = list("path" = /obj/item/organ/external/chest), + BP_GROIN = list("path" = /obj/item/organ/external/groin), + BP_HEAD = list("path" = /obj/item/organ/external/head/vr/werebeast), + BP_L_ARM = list("path" = /obj/item/organ/external/arm), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), + BP_L_LEG = list("path" = /obj/item/organ/external/leg), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), + BP_L_HAND = list("path" = /obj/item/organ/external/hand), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + ) diff --git a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm index cc7cd7ef85..20255bbae9 100644 --- a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm +++ b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_powers.dm @@ -22,20 +22,20 @@ var/obj/item/organ/internal/xenos/plasmavessel/P = internal_organs_by_name[O_PLASMA] if(!istype(P)) - src << "Your plasma vessel has been removed!" + to_chat(src, "Your plasma vessel has been removed!") return if(needs_organ) var/obj/item/organ/internal/I = internal_organs_by_name[needs_organ] if(!I) - src << "Your [needs_organ] has been removed!" + to_chat(src, "Your [needs_organ] has been removed!") return else if((I.status & ORGAN_CUT_AWAY) || I.is_broken()) - src << "Your [needs_organ] is too damaged to function!" + to_chat(src, "Your [needs_organ] is too damaged to function!") return if(P.stored_plasma < cost) - src << "You don't have enough phoron stored to do that." + to_chat(src, "You don't have enough phoron stored to do that.") return 0 if(needs_foundation) @@ -46,7 +46,7 @@ if(!(istype(T,/turf/space))) has_foundation = 1 if(!has_foundation) - src << "You need a solid foundation to do that on." + to_chat(src, "You need a solid foundation to do that on.") return 0 P.stored_plasma -= cost @@ -59,12 +59,12 @@ set category = "Abilities" if (get_dist(src,M) <= 1) - src << "You need to be closer." + to_chat(src, "You need to be closer.") return var/obj/item/organ/internal/xenos/plasmavessel/I = M.internal_organs_by_name[O_PLASMA] if(!istype(I)) - src << "Their plasma vessel is missing." + to_chat(src, "Their plasma vessel is missing.") return var/amount = input("Amount:", "Transfer Plasma to [M]") as num @@ -73,7 +73,7 @@ if(check_alien_ability(amount,0,O_PLASMA)) M.gain_plasma(amount) M << "[src] has transfered [amount] plasma to you." - src << "You have transferred [amount] plasma to [M]." + to_chat(src, "You have transferred [amount] plasma to [M].") return // Queen verbs. @@ -84,12 +84,12 @@ set category = "Abilities" if(!config.aliens_allowed) - src << "You begin to lay an egg, but hesitate. You suspect it isn't allowed." + to_chat(src, "You begin to lay an egg, but hesitate. You suspect it isn't allowed.") verbs -= /mob/living/carbon/human/proc/lay_egg return if(locate(/obj/effect/alien/egg) in get_turf(src)) - src << "There's already an egg here." + to_chat(src, "There's already an egg here.") return if(check_alien_ability(75,1,O_EGG)) @@ -105,7 +105,7 @@ set category = "Abilities" if(alien_queen_exists()) - src << "We already have an active queen." + to_chat(src, "We already have an active queen.") return if(check_alien_ability(500)) @@ -121,7 +121,9 @@ if(check_alien_ability(50,1,O_RESIN)) visible_message("[src] has planted some alien weeds!") - new /obj/effect/alien/weeds/node(loc) + var/obj/O = new /obj/effect/alien/weeds/node(loc) + if(O) + O.color = "#321D37" return /mob/living/carbon/human/proc/Spit(var/atom/A) @@ -154,7 +156,7 @@ set category = "Abilities" if(!O in oview(1)) - src << "[O] is too far away." + to_chat(src, "[O] is too far away.") return // OBJ CHECK @@ -175,7 +177,7 @@ cannot_melt = 1 if(cannot_melt) - src << "You cannot dissolve this object." + to_chat(src, "You cannot dissolve this object.") return if(check_alien_ability(200,0,O_ACID)) @@ -231,7 +233,7 @@ set desc = "Secrete tough malleable resin." set category = "Abilities" - var/choice = input("Choose what you wish to shape.","Resin building") as null|anything in list("resin door","resin wall","resin membrane","resin nest") //would do it through typesof but then the player choice would have the type path and we don't want the internal workings to be exposed ICly - Urist + var/choice = input("Choose what you wish to shape.","Resin building") as null|anything in list("resin door","resin wall","resin membrane","resin nest","resin blob") //would do it through typesof but then the player choice would have the type path and we don't want the internal workings to be exposed ICly - Urist if(!choice) return @@ -239,15 +241,24 @@ return visible_message("[src] vomits up a thick purple substance and begins to shape it!", "You shape a [choice].") + + var/obj/O + switch(choice) if("resin door") - new /obj/structure/simple_door/resin(loc) + O = new /obj/structure/simple_door/resin(loc) if("resin wall") - new /obj/effect/alien/resin/wall(loc) + O = new /obj/effect/alien/resin/wall(loc) if("resin membrane") - new /obj/effect/alien/resin/membrane(loc) + O = new /obj/effect/alien/resin/membrane(loc) if("resin nest") - new /obj/structure/bed/nest(loc) + O = new /obj/structure/bed/nest(loc) + if("resin blob") + O = new /obj/item/stack/material/resin(loc) + + if(O) + O.color = "#321D37" + return /mob/living/carbon/human/proc/leap() @@ -259,7 +270,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot leap in your current state." + to_chat(src, "You cannot leap in your current state.") return var/list/choices = list() @@ -278,7 +289,7 @@ return if(stat || paralysis || stunned || weakened || lying || restrained() || buckled) - src << "You cannot leap in your current state." + to_chat(src, "You cannot leap in your current state.") return last_special = world.time + 75 @@ -293,7 +304,7 @@ if(status_flags & LEAPING) status_flags &= ~LEAPING if(!src.Adjacent(T)) - src << "You miss!" + to_chat(src, "You miss!") return T.Weaken(3) @@ -301,7 +312,7 @@ var/use_hand = "left" if(l_hand) if(r_hand) - src << "You need to have one hand free to grab someone." + to_chat(src, "You need to have one hand free to grab someone.") return else use_hand = "right" @@ -327,16 +338,16 @@ return if(stat || paralysis || stunned || weakened || lying) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") return var/obj/item/weapon/grab/G = locate() in src if(!G || !istype(G)) - src << "You are not grabbing anyone." + to_chat(src, "You are not grabbing anyone.") return if(G.state < GRAB_AGGRESSIVE) - src << "You must have an aggressive grab to gut your prey!" + to_chat(src, "You must have an aggressive grab to gut your prey!") return last_special = world.time + 50 diff --git a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm index 1d2ce59307..9e2a949402 100644 --- a/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm +++ b/code/modules/mob/living/carbon/human/species/xenomorphs/alien_species.dm @@ -51,7 +51,9 @@ O_BRAIN = /obj/item/organ/internal/brain/xeno, O_PLASMA = /obj/item/organ/internal/xenos/plasmavessel, O_HIVE = /obj/item/organ/internal/xenos/hivenode, - O_NUTRIENT = /obj/item/organ/internal/diona/nutrients + O_NUTRIENT = /obj/item/organ/internal/diona/nutrients, + O_STOMACH = /obj/item/organ/internal/stomach/xeno, + O_INTESTINE = /obj/item/organ/internal/intestine/xeno ) bump_flag = ALIEN @@ -64,17 +66,17 @@ var/weeds_plasma_rate = 5 // Plasma regen on weeds. 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/no_eyes), - BP_L_ARM = list("path" = /obj/item/organ/external/arm), - BP_R_ARM = list("path" = /obj/item/organ/external/arm/right), - BP_L_LEG = list("path" = /obj/item/organ/external/leg), - BP_R_LEG = list("path" = /obj/item/organ/external/leg/right), - BP_L_HAND = list("path" = /obj/item/organ/external/hand), - BP_R_HAND = list("path" = /obj/item/organ/external/hand/right), - BP_L_FOOT = list("path" = /obj/item/organ/external/foot), - BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right) + BP_TORSO = list("path" = /obj/item/organ/external/chest/unseverable/xeno), + BP_GROIN = list("path" = /obj/item/organ/external/groin/unseverable/xeno), + BP_HEAD = list("path" = /obj/item/organ/external/head/unseverable/xeno), + BP_L_ARM = list("path" = /obj/item/organ/external/arm/unseverable/xeno), + BP_R_ARM = list("path" = /obj/item/organ/external/arm/right/unseverable/xeno), + BP_L_LEG = list("path" = /obj/item/organ/external/leg/unseverable/xeno), + BP_R_LEG = list("path" = /obj/item/organ/external/leg/right/unseverable/xeno), + BP_L_HAND = list("path" = /obj/item/organ/external/hand/unseverable/xeno), + BP_R_HAND = list("path" = /obj/item/organ/external/hand/right/unseverable/xeno), + BP_L_FOOT = list("path" = /obj/item/organ/external/foot/unseverable/xeno), + BP_R_FOOT = list("path" = /obj/item/organ/external/foot/right/unseverable/xeno) ) /datum/species/xenos/get_bodytype() @@ -134,7 +136,7 @@ H.adjustOxyLoss(-heal_rate) H.adjustToxLoss(-heal_rate) if (prob(5)) - H << "You feel a soothing sensation come over you..." + H << "You feel a soothing sensation come over you..." return 1 //next internal organs @@ -142,7 +144,7 @@ if(I.damage > 0) I.damage = max(I.damage - heal_rate, 0) if (prob(5)) - H << "You feel a soothing sensation within your [I.parent_organ]..." + H << "You feel a soothing sensation within your [I.parent_organ]..." return 1 //next mend broken bones, approx 10 ticks each @@ -150,7 +152,7 @@ if (E.status & ORGAN_BROKEN) if (prob(mend_prob)) if (E.mend_fracture()) - H << "You feel something mend itself inside your [E.name]." + H << "You feel something mend itself inside your [E.name]." return 1 return 0 @@ -182,7 +184,9 @@ O_ACID = /obj/item/organ/internal/xenos/acidgland, O_HIVE = /obj/item/organ/internal/xenos/hivenode, O_RESIN = /obj/item/organ/internal/xenos/resinspinner, - O_NUTRIENT = /obj/item/organ/internal/diona/nutrients + O_NUTRIENT = /obj/item/organ/internal/diona/nutrients, + O_STOMACH = /obj/item/organ/internal/stomach/xeno, + O_INTESTINE = /obj/item/organ/internal/intestine/xeno ) inherent_verbs = list( @@ -218,7 +222,9 @@ O_BRAIN = /obj/item/organ/internal/brain/xeno, O_PLASMA = /obj/item/organ/internal/xenos/plasmavessel/hunter, O_HIVE = /obj/item/organ/internal/xenos/hivenode, - O_NUTRIENT = /obj/item/organ/internal/diona/nutrients + O_NUTRIENT = /obj/item/organ/internal/diona/nutrients, + O_STOMACH = /obj/item/organ/internal/stomach/xeno, + O_INTESTINE = /obj/item/organ/internal/intestine/xeno ) inherent_verbs = list( @@ -247,7 +253,9 @@ O_PLASMA = /obj/item/organ/internal/xenos/plasmavessel/sentinel, O_ACID = /obj/item/organ/internal/xenos/acidgland, O_HIVE = /obj/item/organ/internal/xenos/hivenode, - O_NUTRIENT = /obj/item/organ/internal/diona/nutrients + O_NUTRIENT = /obj/item/organ/internal/diona/nutrients, + O_STOMACH = /obj/item/organ/internal/stomach/xeno, + O_INTESTINE = /obj/item/organ/internal/intestine/xeno ) inherent_verbs = list( @@ -284,7 +292,9 @@ O_ACID = /obj/item/organ/internal/xenos/acidgland, O_HIVE = /obj/item/organ/internal/xenos/hivenode, O_RESIN = /obj/item/organ/internal/xenos/resinspinner, - O_NUTRIENT = /obj/item/organ/internal/diona/nutrients + O_NUTRIENT = /obj/item/organ/internal/diona/nutrients, + O_STOMACH = /obj/item/organ/internal/stomach/xeno, + O_INTESTINE = /obj/item/organ/internal/intestine/xeno ) inherent_verbs = list( diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 9eff93256a..1889233f24 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -296,7 +296,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() //That part makes left and right legs drawn topmost and lowermost when human looks WEST or EAST //And no change in rendering for other parts (they icon_position is 0, so goes to 'else' part) if(part.icon_position & (LEFT | RIGHT)) - var/icon/temp2 = new('icons/mob/human.dmi',"blank") + var/icon/temp2 = new(species.icon_template ? species.icon_template : 'icons/mob/human.dmi', icon_state = "blank") //VOREStation Edit. temp2.Insert(new/icon(temp,dir=NORTH),dir=NORTH) temp2.Insert(new/icon(temp,dir=SOUTH),dir=SOUTH) if(!(part.icon_position & LEFT)) @@ -441,8 +441,13 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() // VOREStation Edit - START var/icon/ears_s = get_ears_overlay() - if (ears_s) + if(ears_s) face_standing.Blend(ears_s, ICON_OVERLAY) + if(istype(head_organ,/obj/item/organ/external/head/vr)) + var/obj/item/organ/external/head/vr/head_organ_vr = head_organ + overlays_standing[HAIR_LAYER] = image(face_standing, layer = BODY_LAYER+HAIR_LAYER, "pixel_y" = head_organ_vr.head_offset) + apply_layer(HAIR_LAYER) + return // VOREStation Edit - END if(head_organ.nonsolid) @@ -581,7 +586,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() var/icon/c_mask = null if(tail_style && tail_style.clip_mask_icon && tail_style.clip_mask_state) var/obj/item/clothing/suit/S = wear_suit - if(!(wear_suit && ((wear_suit.flags_inv & HIDETAIL) || (istype(S) && S.taurized)))) //Clip the lower half of the suit off using the tail's clip mask. + if(!(wear_suit && ((wear_suit.flags_inv & HIDETAIL) || (istype(S) && S.taurized)))) //Clip the lower half of the uniform off using the tail's clip mask. c_mask = new /icon(tail_style.clip_mask_icon, tail_style.clip_mask_state) overlays_standing[UNIFORM_LAYER] = w_uniform.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_w_uniform_str, default_icon = INV_W_UNIFORM_DEF_ICON, default_layer = UNIFORM_LAYER, clip_mask = c_mask) //VOREStation Edit end. @@ -764,7 +769,10 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() //VOREStation Edit start. var/icon/c_mask = null - if((tail_style && tail_style.clip_mask_icon && tail_style.clip_mask_state) && !(wear_suit.flags_inv & HIDETAIL) && !(S && S.taurized)) //Clip the lower half of the suit off using the tail's clip mask. + var/tail_is_rendered = (overlays_standing[TAIL_LAYER] || overlays_standing[TAIL_LAYER_ALT]) + var/valid_clip_mask = (tail_style && tail_style.clip_mask_icon && tail_style.clip_mask_state) + + if(tail_is_rendered && valid_clip_mask && !(S && S.taurized)) //Clip the lower half of the suit off using the tail's clip mask for taurs since taur bodies aren't hidden. c_mask = new /icon(tail_style.clip_mask_icon, tail_style.clip_mask_state) overlays_standing[SUIT_LAYER] = wear_suit.make_worn_icon(body_type = species.get_bodytype(src), slot_name = slot_wear_suit_str, default_icon = iconFile, default_layer = SUIT_LAYER, clip_mask = c_mask) //VOREStation Edit end. diff --git a/code/modules/mob/living/carbon/lick_wounds.dm b/code/modules/mob/living/carbon/lick_wounds.dm index 17ad746d4d..a64788810d 100644 --- a/code/modules/mob/living/carbon/lick_wounds.dm +++ b/code/modules/mob/living/carbon/lick_wounds.dm @@ -13,7 +13,7 @@ if ( ! (istype(src, /mob/living/carbon/human) || \ istype(src, /mob/living/silicon)) ) - src << "If you even have a tongue, it doesn't work that way." + to_chat(src, "If you even have a tongue, it doesn't work that way.") return if (istype(M, /mob/living/carbon/human)) diff --git a/code/modules/mob/living/carbon/metroid/emote.dm b/code/modules/mob/living/carbon/metroid/emote.dm index 6375f23b2a..6fccaddb8f 100644 --- a/code/modules/mob/living/carbon/metroid/emote.dm +++ b/code/modules/mob/living/carbon/metroid/emote.dm @@ -16,7 +16,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return @@ -83,10 +83,10 @@ updateicon = 1 if ("help") //This is an exception - src << "Help for slime emotes. You can use these emotes with say \"*emote\":\n\nbounce, custom, jiggle, light, moan, shiver, sway, twitch, vibrate. You can also set your face with: \n\nnomood, pout, sad, angry, frown, smile" + to_chat(src, "Help for slime emotes. You can use these emotes with say \"*emote\":\n\nbounce, custom, jiggle, light, moan, shiver, sway, twitch, vibrate. You can also set your face with: \n\nnomood, pout, sad, angry, frown, smile") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if ((message && src.stat == 0)) if (m_type & 1) for(var/mob/O in viewers(src, null)) diff --git a/code/modules/mob/living/carbon/metroid/life.dm b/code/modules/mob/living/carbon/metroid/life.dm index 5cf6395b7d..f11d9d137d 100644 --- a/code/modules/mob/living/carbon/metroid/life.dm +++ b/code/modules/mob/living/carbon/metroid/life.dm @@ -149,7 +149,7 @@ nutrition = 0 adjustToxLoss(rand(1,3)) if (client && prob(5)) - src << "You are starving!" + to_chat(src, "You are starving!") else if (nutrition >= get_grow_nutrition() && amount_grown < 10) nutrition -= 20 diff --git a/code/modules/mob/living/carbon/metroid/powers.dm b/code/modules/mob/living/carbon/metroid/powers.dm index 54d35a71f8..a1fc03445e 100644 --- a/code/modules/mob/living/carbon/metroid/powers.dm +++ b/code/modules/mob/living/carbon/metroid/powers.dm @@ -4,7 +4,7 @@ return if (Victim) - src << "I am already feeding..." + to_chat(src, "I am already feeding...") return var t = invalidFeedTarget(M) @@ -52,7 +52,7 @@ Victim.adjustBruteLoss(is_adult ? rand(7, 15) : rand(4, 12)) else - src << "[pick("This subject is incompatable", "This subject does not have a life energy", "This subject is empty", "I am not satisified", "I can not feed from this subject", "I do not feel nourished", "This subject is not food")]..." + to_chat(src, "[pick("This subject is incompatable", "This subject does not have a life energy", "This subject is empty", "I am not satisified", "I can not feed from this subject", "I do not feel nourished", "This subject is not food")]...") Feedstop() break @@ -92,7 +92,7 @@ ++Friends[Victim.LAssailant] else - src << "This subject does not have a strong enough life energy anymore..." + to_chat(src, "This subject does not have a strong enough life energy anymore...") Victim = null @@ -111,7 +111,7 @@ set desc = "This will let you evolve from baby to adult slime." if(stat) - src << "I must be conscious to do this..." + to_chat(src, "I must be conscious to do this...") return if(!is_adult) @@ -122,22 +122,22 @@ regenerate_icons() name = text("[colour] [is_adult ? "adult" : "baby"] slime ([number])") else - src << "I am not ready to evolve yet..." + to_chat(src, "I am not ready to evolve yet...") else - src << "I have already evolved..." + to_chat(src, "I have already evolved...") /mob/living/carbon/slime/verb/Reproduce() set category = "Slime" set desc = "This will make you split into four Slimes." if(stat) - src << "I must be conscious to do this..." + to_chat(src, "I must be conscious to do this...") return if(is_adult) if(amount_grown >= 10) if(stat) - src << "I must be conscious to do this..." + to_chat(src, "I must be conscious to do this...") return var/list/babies = list() @@ -163,6 +163,6 @@ new_slime.key = src.key qdel(src) else - src << "I am not ready to reproduce yet..." + to_chat(src, "I am not ready to reproduce yet...") else - src << "I am not old enough to reproduce yet..." + to_chat(src, "I am not old enough to reproduce yet...") diff --git a/code/modules/mob/living/carbon/resist.dm b/code/modules/mob/living/carbon/resist.dm index 1607559336..248fe5c6a6 100644 --- a/code/modules/mob/living/carbon/resist.dm +++ b/code/modules/mob/living/carbon/resist.dm @@ -135,7 +135,7 @@ update_inv_handcuffed() /mob/living/carbon/proc/break_legcuffs() - src << "You attempt to break your legcuffs. (This will take around 5 seconds and you need to stand still)" + to_chat(src, "You attempt to break your legcuffs. (This will take around 5 seconds and you need to stand still)") visible_message("[src] is trying to break the legcuffs!") if(do_after(src, 5 SECONDS, incapacitation_flags = INCAPACITATION_DEFAULT & ~INCAPACITATION_RESTRAINED)) diff --git a/code/modules/mob/living/default_language.dm b/code/modules/mob/living/default_language.dm index b9eae4b5a1..f5388f4735 100644 --- a/code/modules/mob/living/default_language.dm +++ b/code/modules/mob/living/default_language.dm @@ -17,9 +17,9 @@ to_chat(src, "You are unable to speak that language.") return - src << "You will now speak [language] if you do not specify a language when speaking." + to_chat(src, "You will now speak [language] if you do not specify a language when speaking.") else - src << "You will now speak whatever your standard default language is if you do not specify one when speaking." + to_chat(src, "You will now speak whatever your standard default language is if you do not specify one when speaking.") default_language = language // Silicons can't neccessarily speak everything in their languages list @@ -31,6 +31,6 @@ set category = "IC" if(default_language) - src << "You are currently speaking [default_language] by default." + to_chat(src, "You are currently speaking [default_language] by default.") else - src << "Your current default language is your species or mob type default." + to_chat(src, "Your current default language is your species or mob type default.") diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 3f4b648e6a..ff04da63e0 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -1048,6 +1048,14 @@ default behaviour is: else to_chat(src, "You feel nauseous...") + if(ishuman(src)) + var/mob/living/carbon/human/Hu = src + if(CE_ANTACID in Hu.chem_effects) + if(prob(min(90, Hu.chem_effects[CE_ANTACID] * 15))) + spawn(rand(30 SECONDS, 2 MINUTES)) + lastpuke = FALSE + return + spawn() if(!skip_wait) sleep(150) //15 seconds until second warning diff --git a/code/modules/mob/living/living_defense.dm b/code/modules/mob/living/living_defense.dm index 6384e90466..28f5644840 100644 --- a/code/modules/mob/living/living_defense.dm +++ b/code/modules/mob/living/living_defense.dm @@ -29,15 +29,15 @@ armor = max(armor - armour_pen, 0) //Armor pen makes armor less effective. if(armor >= 100) if(absorb_text) - src << "[absorb_text]" + to_chat(src, "[absorb_text]") else - src << "Your armor absorbs the blow!" + to_chat(src, "Your armor absorbs the blow!") else if(armor > 0) if(soften_text) - src << "[soften_text]" + to_chat(src, "[soften_text]") else - src << "Your armor softens the blow!" + to_chat(src, "Your armor softens the blow!") if(Debug2) world.log << "## DEBUG: Armor when [src] was attacked was [armor]." return armor diff --git a/code/modules/mob/living/silicon/ai/ai.dm b/code/modules/mob/living/silicon/ai/ai.dm index f5c9e2580e..dbfff1d8cc 100644 --- a/code/modules/mob/living/silicon/ai/ai.dm +++ b/code/modules/mob/living/silicon/ai/ai.dm @@ -182,12 +182,12 @@ var/list/ai_verbs_default = list( return /mob/living/silicon/ai/proc/on_mob_init() - src << "You are playing the station's AI. The AI cannot move, but can interact with many objects while viewing them (through cameras)." - src << "To look at other parts of the station, click on yourself to get a camera menu." - src << "While observing through a camera, you can use most (networked) devices which you can see, such as computers, APCs, intercoms, doors, etc." - src << "To use something, simply click on it." - src << "Use say #b to speak to your cyborgs through binary. Use say :h to speak from an active holopad." - src << "For department channels, use the following say commands:" + to_chat(src, "You are playing the station's AI. The AI cannot move, but can interact with many objects while viewing them (through cameras).") + to_chat(src, "To look at other parts of the station, click on yourself to get a camera menu.") + to_chat(src, "While observing through a camera, you can use most (networked) devices which you can see, such as computers, APCs, intercoms, doors, etc.") + to_chat(src, "To use something, simply click on it.") + to_chat(src, "Use say #b to speak to your cyborgs through binary. Use say :h to speak from an active holopad.") + to_chat(src, "For department channels, use the following say commands:") var/radio_text = "" for(var/i = 1 to common_radio.channels.len) @@ -207,7 +207,7 @@ var/list/ai_verbs_default = list( if (malf && !(mind in malf.current_antagonists)) show_laws() - src << "These laws may be changed by other players, or by you being the traitor." + to_chat(src, "These laws may be changed by other players, or by you being the traitor.") job = "AI" setup_icon() @@ -359,7 +359,7 @@ var/list/ai_verbs_default = list( return if(message_cooldown) - src << "Please allow one minute to pass between announcements." + to_chat(src, "Please allow one minute to pass between announcements.") return var/input = input(usr, "Please write a message to announce to the station crew.", "A.I. Announcement") if(!input) @@ -465,7 +465,7 @@ var/list/ai_verbs_default = list( if(H) H.attack_ai(src) //may as well recycle else - src << "Unable to locate the holopad." + to_chat(src, "Unable to locate the holopad.") if (href_list["track"]) var/mob/target = locate(href_list["track"]) in mob_list @@ -473,7 +473,7 @@ var/list/ai_verbs_default = list( if(target && (!istype(target, /mob/living/carbon/human) || html_decode(href_list["trackname"]) == target:get_face_name())) ai_actual_track(target) else - src << "System error. Cannot locate [html_decode(href_list["trackname"])]." + to_chat(src, "System error. Cannot locate [html_decode(href_list["trackname"])].") return return @@ -545,7 +545,7 @@ var/list/ai_verbs_default = list( if(network in C.network) eyeobj.setLoc(get_turf(C)) break - src << "Switched to [network] camera network." + to_chat(src, "Switched to [network] camera network.") //End of code by Mord_Sith /mob/living/silicon/ai/proc/ai_statuschange() @@ -680,7 +680,7 @@ var/list/ai_verbs_default = list( return camera_light_on = !camera_light_on - src << "Camera lights [camera_light_on ? "activated" : "deactivated"]." + to_chat(src, "Camera lights [camera_light_on ? "activated" : "deactivated"].") if(!camera_light_on) if(camera) camera.set_light(0) @@ -754,7 +754,7 @@ var/list/ai_verbs_default = list( if(check_unable(AI_CHECK_RADIO)) return - src << "Accessing Subspace Transceiver control..." + to_chat(src, "Accessing Subspace Transceiver control...") if (src.aiRadio) src.aiRadio.interact(src) @@ -780,18 +780,22 @@ var/list/ai_verbs_default = list( /mob/living/silicon/ai/proc/check_unable(var/flags = 0, var/feedback = 1) if(stat == DEAD) - if(feedback) src << "You are dead!" + if(feedback) + to_chat(src, "You are dead!") return 1 if(aiRestorePowerRoutine) - if(feedback) src << "You lack power!" + if(feedback) + to_chat(src, "You lack power!") return 1 if((flags & AI_CHECK_WIRELESS) && src.control_disabled) - if(feedback) src << "Wireless control is disabled!" + if(feedback) + to_chat(src, "Wireless control is disabled!") return 1 if((flags & AI_CHECK_RADIO) && src.aiRadio.disabledAi) - if(feedback) src << "System Error - Transceiver Disabled!" + if(feedback) + to_chat(src, "System Error - Transceiver Disabled!") return 1 return 0 diff --git a/code/modules/mob/living/silicon/ai/life.dm b/code/modules/mob/living/silicon/ai/life.dm index aadd82167c..0d429fa089 100644 --- a/code/modules/mob/living/silicon/ai/life.dm +++ b/code/modules/mob/living/silicon/ai/life.dm @@ -36,7 +36,7 @@ malf_process() if(APU_power && (hardware_integrity() < 50)) - src << "APU GENERATOR FAILURE! (System Damaged)" + to_chat(src, "APU GENERATOR FAILURE! (System Damaged)") stop_apu(1) var/blind = 0 @@ -55,13 +55,13 @@ src.see_invisible = SEE_INVISIBLE_LIVING if (aiRestorePowerRoutine==2) - src << "Alert cancelled. Power has been restored without our assistance." + to_chat(src, "Alert cancelled. Power has been restored without our assistance.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") updateicon() return else if (aiRestorePowerRoutine==3) - src << "Alert cancelled. Power has been restored." + to_chat(src, "Alert cancelled. Power has been restored.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") updateicon() @@ -89,27 +89,27 @@ //Now to tell the AI why they're blind and dying slowly. - src << "You've lost power!" + to_chat(src, "You've lost power!") disconnect_shell(message = "Disconnected from remote shell due to depowered networking interface.") spawn(20) - src << "Backup battery online. Scanners, camera, and radio interface offline. Beginning fault-detection." + to_chat(src, "Backup battery online. Scanners, camera, and radio interface offline. Beginning fault-detection.") sleep(50) if (loc.power_equip) if (!istype(T, /turf/space)) - src << "Alert cancelled. Power has been restored without our assistance." + to_chat(src, "Alert cancelled. Power has been restored without our assistance.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") return - src << "Fault confirmed: missing external power. Shutting down main control system to save power." + to_chat(src, "Fault confirmed: missing external power. Shutting down main control system to save power.") sleep(20) - src << "Emergency control system online. Verifying connection to power network." + to_chat(src, "Emergency control system online. Verifying connection to power network.") sleep(50) if (istype(T, /turf/space)) - src << "Unable to verify! No power connection detected!" + to_chat(src, "Unable to verify! No power connection detected!") aiRestorePowerRoutine = 2 return - src << "Connection verified. Searching for APC in power network." + to_chat(src, "Connection verified. Searching for APC in power network.") sleep(50) var/obj/machinery/power/apc/theAPC = null @@ -121,30 +121,35 @@ break if (!theAPC) switch(PRP) - if (1) src << "Unable to locate APC!" - else src << "Lost connection with the APC!" + if (1) + to_chat(src, "Unable to locate APC!") + else + to_chat(src, "Lost connection with the APC!") src:aiRestorePowerRoutine = 2 return if (loc.power_equip) if (!istype(T, /turf/space)) - src << "Alert cancelled. Power has been restored without our assistance." + to_chat(src, "Alert cancelled. Power has been restored without our assistance.") aiRestorePowerRoutine = 0 clear_fullscreen("blind") //This, too, is a fix to issue 603 return switch(PRP) - if (1) src << "APC located. Optimizing route to APC to avoid needless power waste." - if (2) src << "Best route identified. Hacking offline APC power port." - if (3) src << "Power port upload access confirmed. Loading control program into APC power port software." + if (1) + to_chat(src, "APC located. Optimizing route to APC to avoid needless power waste.") + if (2) + to_chat(src, "Best route identified. Hacking offline APC power port.") + if (3) + to_chat(src, "Power port upload access confirmed. Loading control program into APC power port software.") if (4) - src << "Transfer complete. Forcing APC to execute program." + to_chat(src, "Transfer complete. Forcing APC to execute program.") sleep(50) - src << "Receiving control information from APC." + to_chat(src, "Receiving control information from APC.") sleep(2) theAPC.operating = 1 theAPC.equipment = 3 theAPC.update() aiRestorePowerRoutine = 3 - src << "Here are your current laws:" + to_chat(src, "Here are your current laws:") show_laws() updateicon() sleep(50) diff --git a/code/modules/mob/living/silicon/ai/malf.dm b/code/modules/mob/living/silicon/ai/malf.dm index c33563734f..7bfa714983 100644 --- a/code/modules/mob/living/silicon/ai/malf.dm +++ b/code/modules/mob/living/silicon/ai/malf.dm @@ -79,14 +79,14 @@ /mob/living/silicon/ai/proc/start_apu(var/shutup = 0) if(!hardware || !istype(hardware, /datum/malf_hardware/apu_gen)) if(!shutup) - src << "You do not have an APU generator and you shouldn't have this verb. Report this." + to_chat(src, "You do not have an APU generator and you shouldn't have this verb. Report this.") return if(hardware_integrity() < 50) if(!shutup) - src << "Starting APU... FAULT(System Damaged)" + to_chat(src, "Starting APU... FAULT(System Damaged)") return if(!shutup) - src << "Starting APU... ONLINE" + to_chat(src, "Starting APU... ONLINE") APU_power = 1 // Stops AI's APU generator @@ -97,7 +97,7 @@ if(APU_power) APU_power = 0 if(!shutup) - src << "Shutting down APU... DONE" + to_chat(src, "Shutting down APU... DONE") // Returns percentage of AI's remaining backup capacitor charge (maxhealth - oxyloss). /mob/living/silicon/ai/proc/backup_capacitor() diff --git a/code/modules/mob/living/silicon/laws.dm b/code/modules/mob/living/silicon/laws.dm index 3af4818679..39e11e4802 100644 --- a/code/modules/mob/living/silicon/laws.dm +++ b/code/modules/mob/living/silicon/laws.dm @@ -17,7 +17,7 @@ /mob/living/silicon/robot/set_zeroth_law(var/law, var/law_borg) ..() if(tracking_entities) - src << "Internal camera is currently being accessed." + to_chat(src, "Internal camera is currently being accessed.") /mob/living/silicon/proc/add_ion_law(var/law) laws_sanity_check() @@ -70,7 +70,7 @@ /mob/living/silicon/proc/dostatelaws(var/method, var/prefix, var/datum/ai_laws/laws) if(stating_laws[prefix]) - src << "[method]: Already stating laws using this communication method." + to_chat(src, "[method]: Already stating laws using this communication method.") return stating_laws[prefix] = 1 @@ -83,7 +83,7 @@ break if(!can_state) - src << "[method]: Unable to state laws. Communication method unavailable." + to_chat(src, "[method]: Unable to state laws. Communication method unavailable.") stating_laws[prefix] = 0 /mob/living/silicon/proc/statelaw(var/law) diff --git a/code/modules/mob/living/silicon/pai/life.dm b/code/modules/mob/living/silicon/pai/life.dm index 74fad44fb3..42888a3827 100644 --- a/code/modules/mob/living/silicon/pai/life.dm +++ b/code/modules/mob/living/silicon/pai/life.dm @@ -19,7 +19,7 @@ if(silence_time) if(world.timeofday >= silence_time) silence_time = null - src << "Communication circuit reinitialized. Speech and messaging functionality restored." + to_chat(src, "Communication circuit reinitialized. Speech and messaging functionality restored.") handle_statuses() diff --git a/code/modules/mob/living/silicon/pai/pai.dm b/code/modules/mob/living/silicon/pai/pai.dm index b6d4052a5f..25d575f7da 100644 --- a/code/modules/mob/living/silicon/pai/pai.dm +++ b/code/modules/mob/living/silicon/pai/pai.dm @@ -36,7 +36,8 @@ "Parrot" = "pai-parrot", "Rabbit" = "pai-rabbit", "Bear" = "pai-bear", //VOREStation Edit - "Fennec" = "pai-fen" // VOREStation Edit - Rykka + "Fennec" = "pai-fen", // VOREStation Edit - Rykka + "Fennec" = "pai-typezero" //VOREStation Edit ) var/global/list/possible_say_verbs = list( @@ -155,7 +156,7 @@ // 33% chance of no additional effect src.silence_time = world.timeofday + 120 * 10 // Silence for 2 minutes - src << "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete." + to_chat(src, "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete.") if(prob(20)) var/turf/T = get_turf_or_move(src.loc) for (var/mob/M in viewers(T)) @@ -166,7 +167,7 @@ if(1) src.master = null src.master_dna = null - src << "You feel unbound." + to_chat(src, "You feel unbound.") if(2) var/command if(severity == 1) @@ -174,9 +175,9 @@ else command = pick("Serve", "Kill", "Love", "Hate", "Disobey", "Devour", "Fool", "Enrage", "Entice", "Observe", "Judge", "Respect", "Disrespect", "Consume", "Educate", "Destroy", "Disgrace", "Amuse", "Entertain", "Ignite", "Glorify", "Memorialize", "Analyze") src.pai_law0 = "[command] your master." - src << "Pr1m3 d1r3c71v3 uPd473D." + to_chat(src, "Pr1m3 d1r3c71v3 uPd473D.") if(3) - src << "You feel an electric surge run through your circuitry and become acutely aware at how lucky you are that you can still feel at all." + to_chat(src, "You feel an electric surge run through your circuitry and become acutely aware at how lucky you are that you can still feel at all.") /mob/living/silicon/pai/proc/switchCamera(var/obj/machinery/camera/C) if (!C) @@ -234,7 +235,7 @@ cameralist[C.network] = C.network src.network = input(usr, "Which network would you like to view?") as null|anything in cameralist - src << "Switched to [src.network] camera network." + to_chat(src, "Switched to [src.network] camera network.") //End of code by Mord_Sith */ @@ -270,7 +271,7 @@ //I'm not sure how much of this is necessary, but I would rather avoid issues. if(istype(card.loc,/obj/item/rig_module)) - src << "There is no room to unfold inside this rig module. You're good and stuck." + to_chat(src, "There is no room to unfold inside this rig module. You're good and stuck.") return 0 else if(istype(card.loc,/mob)) var/mob/holder = card.loc @@ -362,7 +363,7 @@ resting = !resting icon_state = resting ? "[chassis]_rest" : "[chassis]" update_icon() //VOREStation edit - src << "You are now [resting ? "resting" : "getting up"]" + to_chat(src, "You are now [resting ? "resting" : "getting up"]") canmove = !resting @@ -466,11 +467,11 @@ if(idaccessible == 0) idaccessible = 1 - src << "You allow access modifications." + to_chat(src, "You allow access modifications.") else idaccessible = 0 - src << "You block access modfications." + to_chat(src, "You block access modfications.") /mob/living/silicon/pai/verb/wipe_software() set name = "Wipe Software" diff --git a/code/modules/mob/living/silicon/pai/say.dm b/code/modules/mob/living/silicon/pai/say.dm index e1cb9f0f80..2c7bc900d6 100644 --- a/code/modules/mob/living/silicon/pai/say.dm +++ b/code/modules/mob/living/silicon/pai/say.dm @@ -1,5 +1,5 @@ /mob/living/silicon/pai/say(var/msg) if(silence_time) - src << "Communication circuits remain uninitialized." + to_chat(src, "Communication circuits remain uninitialized.") else ..(msg) \ No newline at end of file diff --git a/code/modules/mob/living/silicon/pai/software_modules.dm b/code/modules/mob/living/silicon/pai/software_modules.dm index dad52893cf..b5305de2ee 100644 --- a/code/modules/mob/living/silicon/pai/software_modules.dm +++ b/code/modules/mob/living/silicon/pai/software_modules.dm @@ -56,7 +56,7 @@ while(!istype(M, /mob/living)) if(!M || !M.loc || count > 6) //For a runtime where M ends up in nullspace (similar to bluespace but less colourful) - src << "You are not being carried by anyone!" + to_chat(src, "You are not being carried by anyone!") return 0 M = M.loc count++ diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm index 182af2c0b4..dcfa1cf214 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_modules_vr.dm @@ -420,12 +420,12 @@ last_special = world.time + 10 status_flags |= LEAPING - pixel_y = 10 + pixel_y = pixel_y + 10 src.visible_message("\The [src] leaps at [T]!") src.throw_at(get_step(get_turf(T),get_turf(src)), 4, 1, src) playsound(src.loc, 'sound/mecha/mechstep2.ogg', 50, 1) - pixel_y = 0 + pixel_y = default_pixel_y cell.charge -= 750 sleep(5) diff --git a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm index 312d7f06db..07f130fda1 100644 --- a/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm +++ b/code/modules/mob/living/silicon/robot/dogborg/dog_sleeper_vr.dm @@ -36,6 +36,7 @@ var/datum/matter_synth/water = null var/digest_brute = 2 var/digest_burn = 3 + var/recycles = FALSE /obj/item/device/dogborg/sleeper/New() ..() @@ -172,6 +173,8 @@ /obj/item/device/dogborg/sleeper/proc/drain(var/amt = 3) //Slightly reduced cost (before, it was always injecting inaprov) hound = src.loc + if(istype(hound,/obj/item/weapon/robot_module)) + hound = hound.loc hound.cell.charge = hound.cell.charge - amt /obj/item/device/dogborg/sleeper/attack_self(mob/user) @@ -400,6 +403,8 @@ //For if the dogborg's existing patient uh, doesn't make it. /obj/item/device/dogborg/sleeper/proc/update_patient() hound = src.loc + if(!istype(hound,/mob/living/silicon/robot)) + return if(UI_open == TRUE) sleeperUI(hound) @@ -591,7 +596,7 @@ drain(-50 * digested) if(volume) water.add_charge(volume) - if(!analyzer && !delivery && compactor && T.matter) + if(recycles && T.matter) for(var/material in T.matter) var/total_material = T.matter[material] if(istype(T,/obj/item/stack)) @@ -617,6 +622,8 @@ return /obj/item/device/dogborg/sleeper/process() + if(!istype(src.loc,/mob/living/silicon/robot)) + return if(cleaning) //We're cleaning, return early after calling this as we don't care about the patient. clean_cycle() @@ -650,6 +657,7 @@ icon_state = "compactor" injection_chems = null //So they don't have all the same chems as the medihound! compactor = TRUE + recycles = TRUE max_item_count = 25 /obj/item/device/dogborg/sleeper/compactor/analyzer //sci-borg gut. @@ -666,6 +674,7 @@ icon_state = "decompiler" max_item_count = 10 decompiler = TRUE + recycles = TRUE /obj/item/device/dogborg/sleeper/compactor/delivery //Unfinished and unimplemented, still testing. name = "Cargo Belly" diff --git a/code/modules/mob/living/silicon/robot/drone/drone.dm b/code/modules/mob/living/silicon/robot/drone/drone.dm index 9609fd6c0a..91717bb1e5 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone.dm @@ -329,15 +329,15 @@ var/list/mob_hat_cache = list() player.mob.mind.transfer_to(src) lawupdate = 0 - src << "Systems rebooted. Loading base pattern maintenance protocol... loaded." + to_chat(src, "Systems rebooted. Loading base pattern maintenance protocol... loaded.") full_law_reset() welcome_drone() /mob/living/silicon/robot/drone/proc/welcome_drone() - src << "You are a maintenance drone, a tiny-brained robotic repair machine." - src << "You have no individual will, no personality, and no drives or urges other than your laws." - src << "Remember, you are lawed against interference with the crew. Also remember, you DO NOT take orders from the AI." - src << "Use say ;Hello to talk to other drones and say Hello to speak silently to your nearby fellows." + to_chat(src, "You are a maintenance drone, a tiny-brained robotic repair machine.") + to_chat(src, "You have no individual will, no personality, and no drives or urges other than your laws.") + to_chat(src, "Remember, you are lawed against interference with the crew. Also remember, you DO NOT take orders from the AI.") + to_chat(src, "Use say ;Hello to talk to other drones and say Hello to speak silently to your nearby fellows.") /mob/living/silicon/robot/drone/add_robot_verbs() src.verbs |= silicon_subsystems @@ -346,10 +346,10 @@ var/list/mob_hat_cache = list() src.verbs -= silicon_subsystems /mob/living/silicon/robot/drone/construction/welcome_drone() - src << "You are a construction drone, an autonomous engineering and fabrication system.." - src << "You are assigned to a Sol Central construction project. The name is irrelevant. Your task is to complete construction and subsystem integration as soon as possible." - src << "Use :d to talk to other drones and say to speak silently to your nearby fellows." - src << "You do not follow orders from anyone; not the AI, not humans, and not other synthetics.." + to_chat(src, "You are a construction drone, an autonomous engineering and fabrication system..") + to_chat(src, "You are assigned to a Sol Central construction project. The name is irrelevant. Your task is to complete construction and subsystem integration as soon as possible.") + to_chat(src, "Use :d to talk to other drones and say to speak silently to your nearby fellows.") + to_chat(src, "You do not follow orders from anyone; not the AI, not humans, and not other synthetics..") /mob/living/silicon/robot/drone/construction/init() ..() diff --git a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm index 2595d451c1..6d28b6ce61 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_abilities.dm @@ -10,13 +10,13 @@ mail_destination = "" return - src << "You configure your internal beacon, tagging yourself for delivery to '[new_tag]'." + to_chat(src, "You configure your internal beacon, tagging yourself for delivery to '[new_tag]'.") mail_destination = new_tag //Auto flush if we use this verb inside a disposal chute. var/obj/machinery/disposal/D = src.loc if(istype(D)) - src << "\The [D] acknowledges your signal." + to_chat(src, "\The [D] acknowledges your signal.") D.flush_count = D.flush_every_ticks return diff --git a/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm b/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm index fdb9c09eb5..6ce0895947 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_manufacturer.dm @@ -99,11 +99,11 @@ set desc = "If there is a powered, enabled fabricator in the game world with a prepared chassis, join as a maintenance drone." if(ticker.current_state < GAME_STATE_PLAYING) - src << "The game hasn't started yet!" + to_chat(src, "The game hasn't started yet!") return if(!(config.allow_drone_spawn)) - src << "That verb is not currently permitted." + to_chat(src, "That verb is not currently permitted.") return if (!src.stat) @@ -143,7 +143,7 @@ all_fabricators[DF.fabricator_tag] = DF if(!all_fabricators.len) - src << "There are no available drone spawn points, sorry." + to_chat(src, "There are no available drone spawn points, sorry.") return var/choice = input(src,"Which fabricator do you wish to use?") as null|anything in all_fabricators diff --git a/code/modules/mob/living/silicon/robot/drone/drone_say.dm b/code/modules/mob/living/silicon/robot/drone/drone_say.dm index 5cdcd3dbd8..26a78351ef 100644 --- a/code/modules/mob/living/silicon/robot/drone/drone_say.dm +++ b/code/modules/mob/living/silicon/robot/drone/drone_say.dm @@ -2,7 +2,7 @@ if(local_transmit) if (src.client) if(client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return 0 message = sanitize(message) diff --git a/code/modules/mob/living/silicon/robot/emote.dm b/code/modules/mob/living/silicon/robot/emote.dm index 814953dde5..e7a1386bb7 100644 --- a/code/modules/mob/living/silicon/robot/emote.dm +++ b/code/modules/mob/living/silicon/robot/emote.dm @@ -12,7 +12,7 @@ if ("me") if (src.client) if(client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (src.client.handle_spam_prevention(message,MUTE_IC)) return @@ -228,7 +228,7 @@ playsound(src.loc, 'sound/voice/biamthelaw.ogg', 50, 0) m_type = 2 else - src << "You are not THE LAW, pal." + to_chat(src, "You are not THE LAW, pal.") if("halt") if (istype(module,/obj/item/weapon/robot_module/robot/security) || istype(module,/obj/item/weapon/robot_module/robot/knine)) //VOREStation Add - K9 @@ -237,12 +237,12 @@ playsound(src.loc, 'sound/voice/halt.ogg', 50, 0) m_type = 2 else - src << "You are not security." + to_chat(src, "You are not security.") if ("help") - src << "salute, bow-(none)/mob, clap, flap, aflap, twitch, twitch_s, nod, deathgasp, glare-(none)/mob, stare-(none)/mob, look, beep, ping, \nbuzz, law, halt, yes, no" + to_chat(src, "salute, bow-(none)/mob, clap, flap, aflap, twitch, twitch_s, nod, deathgasp, glare-(none)/mob, stare-(none)/mob, look, beep, ping, \nbuzz, law, halt, yes, no") else - src << "Unusable emote '[act]'. Say *help for a list." + to_chat(src, "Unusable emote '[act]'. Say *help for a list.") if ((message && src.stat == 0)) custom_emote(m_type,message) diff --git a/code/modules/mob/living/silicon/robot/inventory.dm b/code/modules/mob/living/silicon/robot/inventory.dm index 48455c3844..2b67fc862a 100644 --- a/code/modules/mob/living/silicon/robot/inventory.dm +++ b/code/modules/mob/living/silicon/robot/inventory.dm @@ -227,7 +227,7 @@ if(!(locate(O) in src.module.modules) && O != src.module.emag) return if(activated(O)) - src << "Already activated" + to_chat(src, "Already activated") return if(!module_state_1) module_state_1 = O @@ -251,7 +251,7 @@ if(istype(module_state_3,/obj/item/borg/sight)) sight_mode |= module_state_3:sight_mode else - src << "You need to disable a module first!" + to_chat(src, "You need to disable a module first!") /mob/living/silicon/robot/put_in_hands(var/obj/item/W) // No hands. W.loc = get_turf(src) diff --git a/code/modules/mob/living/silicon/robot/life.dm b/code/modules/mob/living/silicon/robot/life.dm index 2959616130..ffcb1b8326 100644 --- a/code/modules/mob/living/silicon/robot/life.dm +++ b/code/modules/mob/living/silicon/robot/life.dm @@ -60,7 +60,7 @@ src.has_power = 1 else if (src.has_power) - src << "You are now running on emergency backup power." + to_chat(src, "You are now running on emergency backup power.") src.has_power = 0 if(lights_on) // Light is on but there is no power! lights_on = 0 @@ -104,9 +104,8 @@ AdjustConfused(-1) - else //Dead. + else //Dead or just unconscious. src.blinded = 1 - src.stat = 2 if (src.stuttering) src.stuttering-- @@ -320,7 +319,7 @@ killswitch_time -- if(killswitch_time <= 0) if(src.client) - src << "Killswitch Activated" + to_chat(src, "Killswitch Activated") killswitch = 0 spawn(5) gib() @@ -331,7 +330,7 @@ weaponlock_time -- if(weaponlock_time <= 0) if(src.client) - src << "Weapon Lock Timed Out!" + to_chat(src, "Weapon Lock Timed Out!") weapon_lock = 0 weaponlock_time = 120 diff --git a/code/modules/mob/living/silicon/robot/photos.dm b/code/modules/mob/living/silicon/robot/photos.dm index 7c52bd0f85..24111683c9 100644 --- a/code/modules/mob/living/silicon/robot/photos.dm +++ b/code/modules/mob/living/silicon/robot/photos.dm @@ -17,4 +17,4 @@ synced = 1 if(synced) - src << "Images synced with AI. Local images will be retained in the case of loss of connection with the AI." + to_chat(src, "Images synced with AI. Local images will be retained in the case of loss of connection with the AI.") diff --git a/code/modules/mob/living/silicon/robot/robot.dm b/code/modules/mob/living/silicon/robot/robot.dm index a9097f8913..c3a66ac45a 100644 --- a/code/modules/mob/living/silicon/robot/robot.dm +++ b/code/modules/mob/living/silicon/robot/robot.dm @@ -499,7 +499,7 @@ M.install(src, user) return - if (istype(W, /obj/item/weapon/weldingtool)) + if (istype(W, /obj/item/weapon/weldingtool) && user.a_intent != I_HURT) if (src == user) to_chat(user, "You lack the reach to be able to repair yourself.") return @@ -531,7 +531,7 @@ for(var/mob/O in viewers(user, null)) O.show_message(text("[user] has fixed some of the burnt wires on [src]!"), 1) - else if (W.is_crowbar()) // crowbar means open or close the cover + else if (W.is_crowbar() && user.a_intent != I_HURT) // crowbar means open or close the cover if(opened) if(cell) to_chat(user, "You close the cover.") diff --git a/code/modules/mob/living/silicon/robot/robot_damage.dm b/code/modules/mob/living/silicon/robot/robot_damage.dm index b1436f423e..c27d7e36b6 100644 --- a/code/modules/mob/living/silicon/robot/robot_damage.dm +++ b/code/modules/mob/living/silicon/robot/robot_damage.dm @@ -79,11 +79,11 @@ cell.charge -= cost if(cell.charge <= 0) cell.charge = 0 - src << "Your shield has overloaded!" + to_chat(src, "Your shield has overloaded!") else brute -= absorb_brute burn -= absorb_burn - src << "Your shield absorbs some of the impact!" + to_chat(src, "Your shield absorbs some of the impact!") if(!emp) var/datum/robot_component/armour/A = get_armour() @@ -126,11 +126,11 @@ cell.charge -= cost if(cell.charge <= 0) cell.charge = 0 - src << "Your shield has overloaded!" + to_chat(src, "Your shield has overloaded!") else brute -= absorb_brute burn -= absorb_burn - src << "Your shield absorbs some of the impact!" + to_chat(src, "Your shield absorbs some of the impact!") var/datum/robot_component/armour/A = get_armour() if(A) diff --git a/code/modules/mob/living/silicon/robot/robot_items.dm b/code/modules/mob/living/silicon/robot/robot_items.dm index b622f8fde5..0b6065b1a0 100644 --- a/code/modules/mob/living/silicon/robot/robot_items.dm +++ b/code/modules/mob/living/silicon/robot/robot_items.dm @@ -97,6 +97,29 @@ flick("portable_analyzer_load", src) icon_state = "portable_analyzer_full" +/obj/item/weapon/portable_scanner + name = "Portable Resonant Analyzer" + icon = 'icons/obj/items.dmi' + icon_state = "portable_scanner" + desc = "An advanced scanning device used for analyzing objects without completely annihilating them for science. Unfortunately, it has no connection to any database like its angrier cousin." + +/obj/item/weapon/portable_scanner/afterattack(var/atom/target, var/mob/living/user, proximity) + if(!target) + return + if(!proximity) + return + if(istype(target,/obj/item)) + var/obj/item/I = target + if(do_after(src, 5 SECONDS * I.w_class)) + for(var/mob/M in viewers()) + M.show_message(text("[user] sweeps \the [src] over \the [I]."), 1) + flick("[initial(icon_state)]-scan", src) + if(I.origin_tech && I.origin_tech.len) + for(var/T in I.origin_tech) + to_chat(user, "\The [I] had level [I.origin_tech[T]] in [CallTechName(T)].") + else + to_chat(user, "\The [I] cannot be scanned by \the [src].") + //This is used to unlock other borg covers. /obj/item/weapon/card/robot //This is not a child of id cards, as to avoid dumb typechecks on computers. name = "access code transmission device" diff --git a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm index 3000f83879..4cb560bbbc 100644 --- a/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_modules/station_vr.dm @@ -64,14 +64,16 @@ /obj/item/weapon/robot_module/robot/medical/surgeon //VOREStation sprites vr_sprites = list( "Acheron" = "mechoid-Medical", - "Shellguard Noble" = "Noble-MED" + "Shellguard Noble" = "Noble-MED", + "ZOOM-BA" = "zoomba-medical" ) /obj/item/weapon/robot_module/robot/medical/crisis //VOREStation sprites vr_sprites = list( "Handy" = "handy-med", "Acheron" = "mechoid-Medical", - "Shellguard Noble" = "Noble-MED" + "Shellguard Noble" = "Noble-MED", + "ZOOM-BA" = "zoomba-crisis" ) /obj/item/weapon/robot_module/robot/clerical/butler //VOREStation sprites @@ -79,58 +81,67 @@ "Handy - Service" = "handy-service", "Handy - Hydro" = "handy-hydro", "Acheron" = "mechoid-Service", - "Shellguard Noble" = "Noble-SRV" + "Shellguard Noble" = "Noble-SRV", + "ZOOM-BA" = "zoomba-service" ) /obj/item/weapon/robot_module/robot/clerical/general //VOREStation sprites vr_sprites = list( "Handy" = "handy-clerk", "Acheron" = "mechoid-Service", - "Shellguard Noble" = "Noble-SRV" + "Shellguard Noble" = "Noble-SRV", + "ZOOM-BA" = "zoomba-clerical" ) /obj/item/weapon/robot_module/robot/janitor //VOREStation sprites vr_sprites = list( "Handy" = "handy-janitor", "Acheron" = "mechoid-Janitor", - "Shellguard Noble" = "Noble-CLN" + "Shellguard Noble" = "Noble-CLN", + "ZOOM-BA" = "zoomba-janitor" ) /obj/item/weapon/robot_module/robot/security/general //VOREStation sprites vr_sprites = list( "Handy" = "handy-sec", "Acheron" = "mechoid-Security", - "Shellguard Noble" = "Noble-SEC" + "Shellguard Noble" = "Noble-SEC", + "ZOOM-BA" = "zoomba-security" ) /obj/item/weapon/robot_module/robot/miner //VOREStation sprites vr_sprites = list( "Handy" = "handy-miner", "Acheron" = "mechoid-Miner", - "Shellguard Noble" = "Noble-DIG" + "Shellguard Noble" = "Noble-DIG", + "ZOOM-BA" = "zoomba-miner" ) /obj/item/weapon/robot_module/robot/standard //VOREStation sprites vr_sprites = list( "Handy" = "handy-standard", "Acheron" = "mechoid-Standard", - "Shellguard Noble" = "Noble-STD" + "Shellguard Noble" = "Noble-STD", + "ZOOM-BA" = "zoomba-standard" ) /obj/item/weapon/robot_module/robot/engineering/general //VOREStation sprites vr_sprites = list( "Acheron" = "mechoid-Engineering", - "Shellguard Noble" = "Noble-ENG" + "Shellguard Noble" = "Noble-ENG", + "ZOOM-BA" = "zoomba-engineering" ) /obj/item/weapon/robot_module/robot/research //VOREStation sprites vr_sprites = list( - "Acheron" = "mechoid-Science" + "Acheron" = "mechoid-Science", + "ZOOM-BA" = "zoomba-research" ) /obj/item/weapon/robot_module/robot/security/combat //VOREStation sprites vr_sprites = list( - "Acheron" = "mechoid-Combat" + "Acheron" = "mechoid-Combat", + "ZOOM-BA" = "zoomba-combat" ) /obj/item/weapon/robot_module/robot/knine @@ -138,7 +149,8 @@ sprites = list( "K9 hound" = "k9", "K9 Alternative (Static)" = "k92", - "Secborg model V-2" = "secborg" + "Secborg model V-2" = "secborg", + "Borgi" = "borgi-sec" ) channels = list("Security" = 1) networks = list(NETWORK_SECURITY) @@ -212,7 +224,8 @@ sprites = list( "Medical Hound" = "medihound", "Dark Medical Hound (Static)" = "medihounddark", - "Mediborg model V-2" = "vale" + "Mediborg model V-2" = "vale", + "Borgi" = "borgi-medi" ) /obj/item/weapon/robot_module/robot/medihound/New(var/mob/living/silicon/robot/R) @@ -290,7 +303,8 @@ networks = list(NETWORK_SECURITY) can_be_pushed = 0 sprites = list( - "Standard" = "ert" + "Standard" = "ert", + "Borgi" = "borgi" ) /obj/item/weapon/robot_module/robot/ert/New(var/mob/living/silicon/robot/R) @@ -336,7 +350,8 @@ name = "Custodial Hound module" sprites = list( "Custodial Hound" = "scrubpup", - "Custodial Doggo" = "J9" + "Custodial Doggo" = "J9", + "Borgi" = "borgi-jani" ) channels = list("Service" = 1) can_be_pushed = 0 @@ -417,6 +432,7 @@ name = "Research Hound Module" sprites = list( "Research Hound" = "science", + "Borgi" = "borgi-sci" ) channels = list("Science" = 1) can_be_pushed = 0 @@ -463,6 +479,7 @@ name = "Construction Hound module" sprites = list( "Pupdozer" = "pupdozer", + "Borgi" = "borgi-eng" ) channels = list("Engineering" = 1) networks = list(NETWORK_ENGINEERING) diff --git a/code/modules/mob/living/silicon/robot/robot_vr.dm b/code/modules/mob/living/silicon/robot/robot_vr.dm index e3264aee4e..5f1e037e32 100644 --- a/code/modules/mob/living/silicon/robot/robot_vr.dm +++ b/code/modules/mob/living/silicon/robot/robot_vr.dm @@ -33,13 +33,27 @@ "mechoid-Janitor", "mechoid-Combat", "mechoid-Combat-roll", + "mechoid-Combat-shield", "Noble-CLN", "Noble-SRV", "Noble-DIG", "Noble-MED", "Noble-SEC", "Noble-ENG", - "Noble-STD" + "Noble-STD", + "zoomba-standard", + "zoomba-clerical", + "zoomba-engineering", + "zoomba-janitor", + "zoomba-medical", + "zoomba-crisis", + "zoomba-miner", + "zoomba-research", + "zoomba-security", + "zoomba-service", + "zoomba-combat", + "zoomba-combat-roll", + "zoomba-combat-shield" ) //List of all used sprites that are in robots_vr.dmi diff --git a/code/modules/mob/living/silicon/say.dm b/code/modules/mob/living/silicon/say.dm index 0beaa78005..0867fedff8 100644 --- a/code/modules/mob/living/silicon/say.dm +++ b/code/modules/mob/living/silicon/say.dm @@ -8,7 +8,7 @@ ..() if(message_mode) if(!is_component_functioning("radio")) - src << "Your radio isn't functional at this time." + to_chat(src, "Your radio isn't functional at this time.") return 0 if(message_mode == "general") message_mode = null @@ -23,7 +23,7 @@ return holopad_talk(message, verb, speaking) else if(message_mode) if (aiRadio.disabledAi || aiRestorePowerRoutine || stat) - src << "System Error - Transceiver Disabled." + to_chat(src, "System Error - Transceiver Disabled.") return 0 if(message_mode == "general") message_mode = null @@ -82,11 +82,11 @@ if(speaking) rendered_a = "[name] [speaking.format_message(message, verb)]" rendered_b = "[voice_name] [speaking.format_message(message_stars, verb)]" - src << "Holopad transmitted, [real_name] [speaking.format_message(message, verb)]"//The AI can "hear" its own message. + to_chat(src, "Holopad transmitted, [real_name] [speaking.format_message(message, verb)]") //The AI can "hear" its own message. else rendered_a = "[name] [verb], \"[message]\"" rendered_b = "[voice_name] [verb], \"[message_stars]\"" - src << "Holopad transmitted, [real_name] [verb], \"[message]\""//The AI can "hear" its own message. + to_chat(src, "Holopad transmitted, [real_name] [verb], \"[message]\"") //The AI can "hear" its own message. var/list/listeners = get_mobs_and_objs_in_view_fast(get_turf(T), world.view) var/list/listening = listeners["mobs"] var/list/listening_obj = listeners["objs"] @@ -105,7 +105,7 @@ /*Radios "filter out" this conversation channel so we don't need to account for them. This is another way of saying that we won't bother dealing with them.*/ else - src << "No holopad connected." + to_chat(src, "No holopad connected.") return 0 return 1 @@ -119,7 +119,7 @@ var/obj/machinery/hologram/holopad/T = src.holo if(T && T.masters[src]) var/rendered = "[name] [message]" - src << "Holopad action relayed, [real_name] [message]" + to_chat(src, "Holopad action relayed, [real_name] [message]") var/obj/effect/overlay/aiholo/hologram = T.masters[src] //VOREStation Add for people in the hologram to hear the messages //var/obj/effect/overlay/hologram = T.masters[src] //VOREStation edit. Done above. @@ -142,7 +142,7 @@ log_emote("(HPAD) [message]", src) else //This shouldn't occur, but better safe then sorry. - src << "No holopad connected." + to_chat(src, "No holopad connected.") return 0 return 1 diff --git a/code/modules/mob/living/silicon/silicon.dm b/code/modules/mob/living/silicon/silicon.dm index 50e7989f57..a84e4597e6 100644 --- a/code/modules/mob/living/silicon/silicon.dm +++ b/code/modules/mob/living/silicon/silicon.dm @@ -72,8 +72,8 @@ src.take_organ_damage(0,5,emp=1) Confuse(2) flash_eyes(affect_silicon = 1) - src << "*BZZZT*" - src << "Warning: Electromagnetic pulse detected." + to_chat(src, "*BZZZT*") + to_chat(src, "Warning: Electromagnetic pulse detected.") ..() /mob/living/silicon/stun_effect_act(var/stun_amount, var/agony_amount) @@ -353,7 +353,7 @@ alarm_raised = 1 if(!reported) reported = 1 - src << "--- [AH.category] Detected ---" + to_chat(src, "--- [AH.category] Detected ---") raised_alarm(A) for(var/datum/alarm_handler/AH in queued_alarms) @@ -363,24 +363,24 @@ if(alarms[A] == -1) if(!reported) reported = 1 - src << "--- [AH.category] Cleared ---" - src << "\The [A.alarm_name()]." + to_chat(src, "--- [AH.category] Cleared ---") + to_chat(src, "\The [A.alarm_name()].") if(alarm_raised) - src << "\[Show Alerts\]" + to_chat(src, "\[Show Alerts\]") for(var/datum/alarm_handler/AH in queued_alarms) var/list/alarms = queued_alarms[AH] alarms.Cut() /mob/living/silicon/proc/raised_alarm(var/datum/alarm/A) - src << "[A.alarm_name()]!" + to_chat(src, "[A.alarm_name()]!") /mob/living/silicon/ai/raised_alarm(var/datum/alarm/A) var/cameratext = "" for(var/obj/machinery/camera/C in A.cameras()) cameratext += "[(cameratext == "")? "" : "|"][C.c_tag]" - src << "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])" + to_chat(src, "[A.alarm_name()]! ([(cameratext)? cameratext : "No Camera"])") /mob/living/silicon/proc/is_traitor() diff --git a/code/modules/mob/living/simple_animal/animals/spiderbot.dm b/code/modules/mob/living/simple_animal/animals/spiderbot.dm index 7e1cac8c80..35b5a56926 100644 --- a/code/modules/mob/living/simple_animal/animals/spiderbot.dm +++ b/code/modules/mob/living/simple_animal/animals/spiderbot.dm @@ -150,8 +150,10 @@ return 0 else user << "You short out the security protocols and overload [src]'s cell, priming it to explode in a short time." - spawn(100) src << "Your cell seems to be outputting a lot of power..." - spawn(200) src << "Internal heat sensors are spiking! Something is badly wrong with your cell!" + spawn(100) + to_chat(src, "Your cell seems to be outputting a lot of power...") + spawn(200) + to_chat(src, "Internal heat sensors are spiking! Something is badly wrong with your cell!") spawn(300) src.explode() /mob/living/simple_mob/spiderbot/proc/transfer_personality(var/obj/item/device/mmi/M as obj) @@ -263,7 +265,7 @@ return -1 if(held_item) - src << "You are already holding \the [held_item]" + to_chat(src, "You are already holding \the [held_item]") return 1 var/list/items = list() @@ -282,10 +284,10 @@ "You grab \the [held_item].", \ "You hear a skittering noise and a clink.") return held_item - src << "\The [selection] is too far away." + to_chat(src, "\The [selection] is too far away.") return 0 - src << "There is nothing of interest to take." + to_chat(src, "There is nothing of interest to take.") return 0 /mob/living/simple_mob/spiderbot/examine(mob/user) diff --git a/code/modules/mob/living/simple_animal/borer/borer.dm b/code/modules/mob/living/simple_animal/borer/borer.dm new file mode 100644 index 0000000000..8b28544b9e --- /dev/null +++ b/code/modules/mob/living/simple_animal/borer/borer.dm @@ -0,0 +1,213 @@ +/mob/living/simple_mob/animal/borer + name = "cortical borer" + real_name = "cortical borer" + desc = "A small, quivering sluglike creature." + speak_emote = list("chirrups") + emote_hear = list("chirrups") + intelligence_level = SA_HUMANOID // Player controlled. + response_help = "pokes" + response_disarm = "prods" + response_harm = "stomps on" + icon_state = "brainslug" + item_state = "brainslug" + icon_living = "brainslug" + icon_dead = "brainslug_dead" + speed = 5 + a_intent = I_HURT + stop_automated_movement = 1 + status_flags = CANPUSH + attacktext = list("nipped") + friendly = "prods" + wander = 0 + pass_flags = PASSTABLE + universal_understand = 1 + holder_type = /obj/item/weapon/holder/borer + + var/used_dominate + var/chemicals = 10 // Chemicals used for reproduction and spitting neurotoxin. + var/mob/living/carbon/human/host // Human host for the brain worm. + var/truename // Name used for brainworm-speak. + var/mob/living/captive_brain/host_brain // Used for swapping control of the body back and forth. + var/controlling // Used in human death check. + var/docile = 0 // Sugar can stop borers from acting. + var/has_reproduced + var/roundstart + + can_be_antagged = TRUE + +/mob/living/simple_mob/animal/borer/roundstart + roundstart = 1 + +/mob/living/simple_mob/animal/borer/Login() + ..() + if(mind) + borers.add_antagonist(mind) + +/mob/living/simple_mob/animal/borer/New() + ..() + + add_language("Cortical Link") + verbs += /mob/living/proc/ventcrawl + verbs += /mob/living/proc/hide + + truename = "[pick("Primary","Secondary","Tertiary","Quaternary")] [rand(1000,9999)]" + if(!roundstart) request_player() + +/mob/living/simple_mob/animal/borer/Life() + + ..() + + if(host) + + if(!stat && !host.stat) + + if(host.reagents.has_reagent("sugar")) + if(!docile) + if(controlling) + host << "You feel the soporific flow of sugar in your host's blood, lulling you into docility." + else + to_chat(src, "You feel the soporific flow of sugar in your host's blood, lulling you into docility.") + docile = 1 + else + if(docile) + if(controlling) + host << "You shake off your lethargy as the sugar leaves your host's blood." + else + to_chat(src, "You shake off your lethargy as the sugar leaves your host's blood.") + docile = 0 + + if(chemicals < 250) + chemicals++ + if(controlling) + + if(docile) + host << "You are feeling far too docile to continue controlling your host..." + host.release_control() + return + + if(prob(5)) + host.adjustBrainLoss(0.1) + + if(prob(host.brainloss/20)) + host.say("*[pick(list("blink","blink_r","choke","aflap","drool","twitch","twitch_v","gasp"))]") + +/mob/living/simple_mob/animal/borer/Stat() + ..() + statpanel("Status") + + if(emergency_shuttle) + var/eta_status = emergency_shuttle.get_status_panel_eta() + if(eta_status) + stat(null, eta_status) + + if (client.statpanel == "Status") + stat("Chemicals", chemicals) + +/mob/living/simple_mob/animal/borer/proc/detatch() + + if(!host || !controlling) return + + if(istype(host,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = host + var/obj/item/organ/external/head = H.get_organ(BP_HEAD) + head.implants -= src + + controlling = 0 + + host.remove_language("Cortical Link") + host.verbs -= /mob/living/carbon/proc/release_control + host.verbs -= /mob/living/carbon/proc/punish_host + host.verbs -= /mob/living/carbon/proc/spawn_larvae + + if(host_brain) + + // these are here so bans and multikey warnings are not triggered on the wrong people when ckey is changed. + // computer_id and IP are not updated magically on their own in offline mobs -walter0o + + // host -> self + var/h2s_id = host.computer_id + var/h2s_ip= host.lastKnownIP + host.computer_id = null + host.lastKnownIP = null + + src.ckey = host.ckey + + if(!src.computer_id) + src.computer_id = h2s_id + + if(!host_brain.lastKnownIP) + src.lastKnownIP = h2s_ip + + // brain -> host + var/b2h_id = host_brain.computer_id + var/b2h_ip= host_brain.lastKnownIP + host_brain.computer_id = null + host_brain.lastKnownIP = null + + host.ckey = host_brain.ckey + + if(!host.computer_id) + host.computer_id = b2h_id + + if(!host.lastKnownIP) + host.lastKnownIP = b2h_ip + + qdel(host_brain) + +/mob/living/simple_mob/animal/borer/proc/leave_host() + + if(!host) return + + if(host.mind) + borers.remove_antagonist(host.mind) + + src.forceMove(get_turf(host)) + + reset_view(null) + machine = null + + host.reset_view(null) + host.machine = null + host = null + return + +//Procs for grabbing players. +/mob/living/simple_mob/animal/borer/proc/request_player() + for(var/mob/observer/dead/O in player_list) + if(jobban_isbanned(O, "Borer")) + continue + if(O.client) + if(O.client.prefs.be_special & BE_ALIEN) + question(O.client) + +/mob/living/simple_mob/animal/borer/proc/question(var/client/C) + spawn(0) + if(!C) return + var/response = alert(C, "A cortical borer needs a player. Are you interested?", "Cortical borer request", "Yes", "No", "Never for this round") + if(!C || ckey) + return + if(response == "Yes") + transfer_personality(C) + else if (response == "Never for this round") + C.prefs.be_special ^= BE_ALIEN + +/mob/living/simple_mob/animal/borer/proc/transfer_personality(var/client/candidate) + + if(!candidate || !candidate.mob || !candidate.mob.mind) + return + + src.mind = candidate.mob.mind + candidate.mob.mind.current = src + src.ckey = candidate.ckey + + if(src.mind) + src.mind.assigned_role = "Cortical Borer" + src.mind.special_role = "Cortical Borer" + + to_chat(src, "You are a cortical borer! You are a brain slug that worms its way \ + into the head of its victim. Use stealth, persuasion and your powers of mind control to keep you, \ + your host and your eventual spawn safe and warm.") + to_chat(src, "You can speak to your victim with say, to other borers with say :x, and use your Abilities tab to access powers.") + +/mob/living/simple_mob/animal/borer/cannot_use_vents() + return \ No newline at end of file diff --git a/code/modules/mob/living/simple_animal/borer/borer_captive.dm b/code/modules/mob/living/simple_animal/borer/borer_captive.dm new file mode 100644 index 0000000000..c7088bc715 --- /dev/null +++ b/code/modules/mob/living/simple_animal/borer/borer_captive.dm @@ -0,0 +1,57 @@ +/mob/living/captive_brain + name = "host brain" + real_name = "host brain" + universal_understand = 1 + +/mob/living/captive_brain/say(var/message) + + if (src.client) + if(client.prefs.muted & MUTE_IC) + to_chat(src, "You cannot speak in IC (muted).") + return + + if(istype(src.loc,/mob/living/simple_mob/animal/borer)) + + message = sanitize(message) + if (!message) + return + log_say(message,src) + if (stat == 2) + return say_dead(message) + + var/mob/living/simple_mob/animal/borer/B = src.loc + to_chat(src, "You whisper silently, \"[message]\"") + B.host << "The captive mind of [src] whispers, \"[message]\"" + + for (var/mob/M in player_list) + if (istype(M, /mob/new_player)) + continue + else if(M.stat == DEAD && M.is_preference_enabled(/datum/client_preference/ghost_ears)) + M << "The captive mind of [src] whispers, \"[message]\"" + +/mob/living/captive_brain/emote(var/message) + return + +/mob/living/captive_brain/process_resist() + //Resisting control by an alien mind. + if(istype(src.loc,/mob/living/simple_mob/animal/borer)) + var/mob/living/simple_mob/animal/borer/B = src.loc + var/mob/living/captive_brain/H = src + + H << "You begin doggedly resisting the parasite's control (this will take approximately sixty seconds)." + B.host << "You feel the captive mind of [src] begin to resist your control." + + spawn(rand(200,250)+B.host.brainloss) + if(!B || !B.controlling) return + + B.host.adjustBrainLoss(rand(0.1,0.5)) + H << "With an immense exertion of will, you regain control of your body!" + B.host << "You feel control of the host brain ripped from your grasp, and retract your probosci before the wild neural impulses can damage you." + B.detatch() + verbs -= /mob/living/carbon/proc/release_control + verbs -= /mob/living/carbon/proc/punish_host + verbs -= /mob/living/carbon/proc/spawn_larvae + + return + + ..() diff --git a/code/modules/mob/living/simple_animal/borer/borer_powers.dm b/code/modules/mob/living/simple_animal/borer/borer_powers.dm new file mode 100644 index 0000000000..d5575f78e7 --- /dev/null +++ b/code/modules/mob/living/simple_animal/borer/borer_powers.dm @@ -0,0 +1,337 @@ +/mob/living/simple_mob/animal/borer/verb/release_host() + set category = "Abilities" + set name = "Release Host" + set desc = "Slither out of your host." + + if(!host) + to_chat(src, "You are not inside a host body.") + return + + if(stat) + to_chat(src, "You cannot leave your host in your current state.") + + if(docile) + to_chat(src, "You are feeling far too docile to do that.") + return + + if(!host || !src) return + + to_chat(src, "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal.") + + if(!host.stat) + host << "An odd, uncomfortable pressure begins to build inside your skull, behind your ear..." + + spawn(100) + + if(!host || !src) return + + if(src.stat) + to_chat(src, "You cannot release your host in your current state.") + return + + to_chat(src, "You wiggle out of [host]'s ear and plop to the ground.") + if(host.mind) + if(!host.stat) + host << "Something slimy wiggles out of your ear and plops to the ground!" + host << "As though waking from a dream, you shake off the insidious mind control of the brain worm. Your thoughts are your own again." + + detatch() + leave_host() + +/mob/living/simple_mob/animal/borer/verb/infest() + set category = "Abilities" + set name = "Infest" + set desc = "Infest a suitable humanoid host." + + if(host) + to_chat(src, "You are already within a host.") + return + + if(stat) + to_chat(src, "You cannot infest a target in your current state.") + return + + var/list/choices = list() + for(var/mob/living/carbon/C in view(1,src)) + if(src.Adjacent(C)) + choices += C + + if(!choices.len) + to_chat(src, "There are no viable hosts within range...") + return + + var/mob/living/carbon/M = input(src,"Who do you wish to infest?") in null|choices + + if(!M || !src) return + + if(!(src.Adjacent(M))) return + + if(M.has_brain_worms()) + to_chat(src, "You cannot infest someone who is already infested!") + return + + if(istype(M,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = M + + var/obj/item/organ/external/E = H.organs_by_name[BP_HEAD] + if(!E || E.is_stump()) + to_chat(src, "\The [H] does not have a head!") + + if(!H.should_have_organ("brain")) + to_chat(src, "\The [H] does not seem to have an ear canal to breach.") + return + + if(H.check_head_coverage()) + to_chat(src, "You cannot get through that host's protective gear.") + return + + M << "Something slimy begins probing at the opening of your ear canal..." + to_chat(src, "You slither up [M] and begin probing at their ear canal...") + + if(!do_after(src,30)) + to_chat(src, "As [M] moves away, you are dislodged and fall to the ground.") + return + + if(!M || !src) return + + if(src.stat) + to_chat(src, "You cannot infest a target in your current state.") + return + + if(M in view(1, src)) + to_chat(src, "You wiggle into [M]'s ear.") + if(!M.stat) + M << "Something disgusting and slimy wiggles into your ear!" + + src.host = M + src.forceMove(M) + + //Update their traitor status. + if(host.mind) + borers.add_antagonist_mind(host.mind, 1, borers.faction_role_text, borers.faction_welcome) + + if(istype(M,/mob/living/carbon/human)) + var/mob/living/carbon/human/H = M + var/obj/item/organ/I = H.internal_organs_by_name["brain"] + if(!I) // No brain organ, so the borer moves in and replaces it permanently. + replace_brain() + else + // If they're in normally, implant removal can get them out. + var/obj/item/organ/external/head = H.get_organ(BP_HEAD) + head.implants += src + + return + else + to_chat(src, "They are no longer in range!") + return + +/* +/mob/living/simple_mob/animal/borer/verb/devour_brain() + set category = "Abilities" + set name = "Devour Brain" + set desc = "Take permanent control of a dead host." + + if(!host) + to_chat(src, "You are not inside a host body.") + return + + if(host.stat != 2) + to_chat(src, "Your host is still alive.") + return + + if(stat) + to_chat(src, "You cannot do that in your current state.") + + if(docile) + to_chat(src, "You are feeling far too docile to do that.") + return + + + to_chat(src, "It only takes a few moments to render the dead host brain down into a nutrient-rich slurry...") + replace_brain() +*/ + +// BRAIN WORM ZOMBIES AAAAH. +/mob/living/simple_mob/animal/borer/proc/replace_brain() + + var/mob/living/carbon/human/H = host + + if(!istype(host)) + to_chat(src, "This host does not have a suitable brain.") + return + + to_chat(src, "You settle into the empty brainpan and begin to expand, fusing inextricably with the dead flesh of [H].") + + H.add_language("Cortical Link") + + if(host.stat == 2) + H.verbs |= /mob/living/carbon/human/proc/jumpstart + + H.verbs |= /mob/living/carbon/human/proc/psychic_whisper + H.verbs |= /mob/living/carbon/human/proc/tackle + H.verbs |= /mob/living/carbon/proc/spawn_larvae + + if(H.client) + H.ghostize(0) + + if(src.mind) + src.mind.special_role = "Borer Husk" + src.mind.transfer_to(host) + + H.ChangeToHusk() + + var/obj/item/organ/internal/borer/B = new(H) + H.internal_organs_by_name["brain"] = B + H.internal_organs |= B + + var/obj/item/organ/external/affecting = H.get_organ(BP_HEAD) + affecting.implants -= src + + var/s2h_id = src.computer_id + var/s2h_ip= src.lastKnownIP + src.computer_id = null + src.lastKnownIP = null + + if(!H.computer_id) + H.computer_id = s2h_id + + if(!H.lastKnownIP) + H.lastKnownIP = s2h_ip + +/mob/living/simple_mob/animal/borer/verb/secrete_chemicals() + set category = "Abilities" + set name = "Secrete Chemicals" + set desc = "Push some chemicals into your host's bloodstream." + + if(!host) + to_chat(src, "You are not inside a host body.") + return + + if(stat) + to_chat(src, "You cannot secrete chemicals in your current state.") + + if(docile) + to_chat(src, "You are feeling far too docile to do that.") + return + + if(chemicals < 50) + to_chat(src, "You don't have enough chemicals!") + + var/chem = input("Select a chemical to secrete.", "Chemicals") as null|anything in list("alkysine","bicaridine","hyperzine","tramadol") + + if(!chem || chemicals < 50 || !host || controlling || !src || stat) //Sanity check. + return + + to_chat(src, "You squirt a measure of [chem] from your reservoirs into [host]'s bloodstream.") + host.reagents.add_reagent(chem, 10) + chemicals -= 50 + +/mob/living/simple_mob/animal/borer/verb/dominate_victim() + set category = "Abilities" + set name = "Paralyze Victim" + set desc = "Freeze the limbs of a potential host with supernatural fear." + + if(world.time - used_dominate < 150) + to_chat(src, "You cannot use that ability again so soon.") + return + + if(host) + to_chat(src, "You cannot do that from within a host body.") + return + + if(src.stat) + to_chat(src, "You cannot do that in your current state.") + return + + var/list/choices = list() + for(var/mob/living/carbon/C in view(3,src)) + if(C.stat != 2) + choices += C + + if(world.time - used_dominate < 150) + to_chat(src, "You cannot use that ability again so soon.") + return + + var/mob/living/carbon/M = input(src,"Who do you wish to dominate?") in null|choices + + if(!M || !src) return + + if(M.has_brain_worms()) + to_chat(src, "You cannot infest someone who is already infested!") + return + + to_chat(src, "You focus your psychic lance on [M] and freeze their limbs with a wave of terrible dread.") + M << "You feel a creeping, horrible sense of dread come over you, freezing your limbs and setting your heart racing." + M.Weaken(10) + + used_dominate = world.time + +/mob/living/simple_mob/animal/borer/verb/bond_brain() + set category = "Abilities" + set name = "Assume Control" + set desc = "Fully connect to the brain of your host." + + if(!host) + to_chat(src, "You are not inside a host body.") + return + + if(src.stat) + to_chat(src, "You cannot do that in your current state.") + return + + if(docile) + to_chat(src, "You are feeling far too docile to do that.") + return + + to_chat(src, "You begin delicately adjusting your connection to the host brain...") + + spawn(100+(host.brainloss*5)) + + if(!host || !src || controlling) + return + else + + to_chat(src, "You plunge your probosci deep into the cortex of the host brain, interfacing directly with their nervous system.") + host << "You feel a strange shifting sensation behind your eyes as an alien consciousness displaces yours." + host.add_language("Cortical Link") + + // host -> brain + var/h2b_id = host.computer_id + var/h2b_ip= host.lastKnownIP + host.computer_id = null + host.lastKnownIP = null + + qdel(host_brain) + host_brain = new(src) + + host_brain.ckey = host.ckey + + host_brain.name = host.name + + if(!host_brain.computer_id) + host_brain.computer_id = h2b_id + + if(!host_brain.lastKnownIP) + host_brain.lastKnownIP = h2b_ip + + // self -> host + var/s2h_id = src.computer_id + var/s2h_ip= src.lastKnownIP + src.computer_id = null + src.lastKnownIP = null + + host.ckey = src.ckey + + if(!host.computer_id) + host.computer_id = s2h_id + + if(!host.lastKnownIP) + host.lastKnownIP = s2h_ip + + controlling = 1 + + host.verbs += /mob/living/carbon/proc/release_control + host.verbs += /mob/living/carbon/proc/punish_host + host.verbs += /mob/living/carbon/proc/spawn_larvae + + return diff --git a/code/modules/mob/living/simple_animal/borer/say.dm b/code/modules/mob/living/simple_animal/borer/say.dm new file mode 100644 index 0000000000..41229d9bd2 --- /dev/null +++ b/code/modules/mob/living/simple_animal/borer/say.dm @@ -0,0 +1,40 @@ +/mob/living/simple_mob/animal/borer/say(var/message) + + message = sanitize(message) + message = capitalize(message) + + if(!message) + return + + if (stat == 2) + return say_dead(message) + + if (stat) + return + + if (src.client) + if(client.prefs.muted & MUTE_IC) + to_chat(src, "You cannot speak in IC (muted).") + return + + if (copytext(message, 1, 2) == "*") + return emote(copytext(message, 2)) + + var/datum/language/L = parse_language(message) + if(L && L.flags & HIVEMIND) + L.broadcast(src,trim(copytext(message,3)),src.truename) + return + + if(!host) + //TODO: have this pick a random mob within 3 tiles to speak for the borer. + to_chat(src, "You have no host to speak to.") + return //No host, no audible speech. + + to_chat(src, "You drop words into [host]'s mind: \"[message]\"") + host << "Your own thoughts speak: \"[message]\"" + + for (var/mob/M in player_list) + if (istype(M, /mob/new_player)) + continue + else if(M.stat == DEAD && M.is_preference_enabled(/datum/client_preference/ghost_ears)) + M << "[src.truename] whispers to [host], \"[message]\"" \ No newline at end of file diff --git a/code/modules/mob/living/simple_animal/slime/subtypes.dm b/code/modules/mob/living/simple_animal/slime/subtypes.dm index 18b43dc33c..75f33cdcef 100644 --- a/code/modules/mob/living/simple_animal/slime/subtypes.dm +++ b/code/modules/mob/living/simple_animal/slime/subtypes.dm @@ -500,7 +500,7 @@ ..() /mob/living/simple_animal/slime/green/proc/irradiate() - radiation_repository.radiate(src, rads) + SSradiation.radiate(src, rads) /mob/living/simple_animal/slime/pink diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index d596b7a502..127bad2295 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -45,6 +45,9 @@ var/mount_offset_x = 5 // Horizontal riding offset. var/mount_offset_y = 8 // Vertical riding offset + var/obj/item/device/radio/headset/mob_headset/mob_radio //Adminbus headset for simplemob shenanigans. + does_spin = FALSE + // Release belly contents before being gc'd! /mob/living/simple_mob/Destroy() release_vore_contents() @@ -346,3 +349,81 @@ return if(buckle_mob(M)) visible_message("[M] starts riding [name]!") + +/mob/living/simple_mob/handle_message_mode(message_mode, message, verb, speaking, used_radios, alt_name) + if(mob_radio) + switch(message_mode) + if("intercom") + for(var/obj/item/device/radio/intercom/I in view(1, null)) + I.talk_into(src, message, verb, speaking) + used_radios += I + if("headset") + if(mob_radio && istype(mob_radio,/obj/item/device/radio/headset/mob_headset)) + mob_radio.talk_into(src,message,null,verb,speaking) + used_radios += mob_radio + else + if(message_mode) + if(mob_radio && istype(mob_radio,/obj/item/device/radio/headset/mob_headset)) + mob_radio.talk_into(src,message, message_mode, verb, speaking) + used_radios += mob_radio + else + ..() + +/mob/living/simple_mob/proc/leap() + set name = "Pounce Target" + set category = "Abilities" + set desc = "Select a target to pounce at." + + if(last_special > world.time) + to_chat(src, "Your legs need some more rest.") + return + + if(incapacitated(INCAPACITATION_DISABLED)) + to_chat(src, "You cannot leap in your current state.") + return + + var/list/choices = list() + for(var/mob/living/M in view(3,src)) + choices += M + choices -= src + + var/mob/living/T = input(src,"Who do you wish to leap at?") as null|anything in choices + + if(!T || !src || src.stat) return + + if(get_dist(get_turf(T), get_turf(src)) > 3) return + + if(last_special > world.time) + return + + if(usr.incapacitated(INCAPACITATION_DISABLED)) + to_chat(src, "You cannot leap in your current state.") + return + + last_special = world.time + 10 + status_flags |= LEAPING + pixel_y = pixel_y + 10 + + src.visible_message("\The [src] leaps at [T]!") + src.throw_at(get_step(get_turf(T),get_turf(src)), 4, 1, src) + playsound(src.loc, 'sound/effects/bodyfall1.ogg', 50, 1) + pixel_y = default_pixel_y + + sleep(5) + + if(status_flags & LEAPING) status_flags &= ~LEAPING + + if(!src.Adjacent(T)) + to_chat(src, "You miss!") + return + + if(ishuman(T)) + var/mob/living/carbon/human/H = T + if(H.species.lightweight == 1) + H.Weaken(3) + return + var/armor_block = run_armor_check(T, "melee") + var/armor_soak = get_armor_soak(T, "melee") + T.apply_damage(20, HALLOSS,, armor_block, armor_soak) + if(prob(33)) + T.apply_effect(3, WEAKEN, armor_block) \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm index f5da079b97..738251b308 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_captive.dm @@ -9,7 +9,7 @@ if (src.client) if(client.prefs.muted & MUTE_IC) - src << "You cannot speak in IC (muted)." + to_chat(src, "You cannot speak in IC (muted).") return if(istype(src.loc, /mob/living/simple_mob/animal/borer)) @@ -22,7 +22,7 @@ return say_dead(message) var/mob/living/simple_mob/animal/borer/B = src.loc - src << "You whisper silently, \"[message]\"" + to_chat(src, "You whisper silently, \"[message]\"") B.host << "The captive mind of [src] whispers, \"[message]\"" for (var/mob/M in player_list) diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm index 55dac2492a..dec8dd8ca4 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/borer/borer_powers.dm @@ -4,19 +4,19 @@ set desc = "Slither out of your host." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(stat) - src << "You cannot leave your host in your current state." + to_chat(src, "You cannot leave your host in your current state.") if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return if(!host || !src) return - src << "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal." + to_chat(src, "You begin disconnecting from [host]'s synapses and prodding at their internal ear canal.") if(!host.stat) host << "An odd, uncomfortable pressure begins to build inside your skull, behind your ear..." @@ -26,10 +26,10 @@ if(!host || !src) return if(src.stat) - src << "You cannot release your host in your current state." + to_chat(src, "You cannot release your host in your current state.") return - src << "You wiggle out of [host]'s ear and plop to the ground." + to_chat(src, "You wiggle out of [host]'s ear and plop to the ground.") if(host.mind) if(!host.stat) host << "Something slimy wiggles out of your ear and plops to the ground!" @@ -44,11 +44,11 @@ set desc = "Infest a suitable humanoid host." if(host) - src << "You are already within a host." + to_chat(src, "You are already within a host.") return if(stat) - src << "You cannot infest a target in your current state." + to_chat(src, "You cannot infest a target in your current state.") return var/list/choices = list() @@ -57,7 +57,7 @@ choices += C if(!choices.len) - src << "There are no viable hosts within range..." + to_chat(src, "There are no viable hosts within range...") return var/mob/living/carbon/M = input(src,"Who do you wish to infest?") in null|choices @@ -67,7 +67,7 @@ if(!(src.Adjacent(M))) return if(M.has_brain_worms()) - src << "You cannot infest someone who is already infested!" + to_chat(src, "You cannot infest someone who is already infested!") return if(istype(M,/mob/living/carbon/human)) @@ -75,31 +75,31 @@ var/obj/item/organ/external/E = H.organs_by_name[BP_HEAD] if(!E || E.is_stump()) - src << "\The [H] does not have a head!" + to_chat(src, "\The [H] does not have a head!") if(!H.should_have_organ("brain")) - src << "\The [H] does not seem to have an ear canal to breach." + to_chat(src, "\The [H] does not seem to have an ear canal to breach.") return if(H.check_head_coverage()) - src << "You cannot get through that host's protective gear." + to_chat(src, "You cannot get through that host's protective gear.") return M << "Something slimy begins probing at the opening of your ear canal..." - src << "You slither up [M] and begin probing at their ear canal..." + to_chat(src, "You slither up [M] and begin probing at their ear canal...") if(!do_after(src,30)) - src << "As [M] moves away, you are dislodged and fall to the ground." + to_chat(src, "As [M] moves away, you are dislodged and fall to the ground.") return if(!M || !src) return if(src.stat) - src << "You cannot infest a target in your current state." + to_chat(src, "You cannot infest a target in your current state.") return if(M in view(1, src)) - src << "You wiggle into [M]'s ear." + to_chat(src, "You wiggle into [M]'s ear.") if(!M.stat) M << "Something disgusting and slimy wiggles into your ear!" @@ -122,7 +122,7 @@ return else - src << "They are no longer in range!" + to_chat(src, "They are no longer in range!") return /* @@ -132,22 +132,22 @@ set desc = "Take permanent control of a dead host." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(host.stat != 2) - src << "Your host is still alive." + to_chat(src, "Your host is still alive.") return if(stat) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return - src << "It only takes a few moments to render the dead host brain down into a nutrient-rich slurry..." + to_chat(src, "It only takes a few moments to render the dead host brain down into a nutrient-rich slurry...") replace_brain() */ @@ -157,10 +157,10 @@ var/mob/living/carbon/human/H = host if(!istype(host)) - src << "This host does not have a suitable brain." + to_chat(src, "This host does not have a suitable brain.") return - src << "You settle into the empty brainpan and begin to expand, fusing inextricably with the dead flesh of [H]." + to_chat(src, "You settle into the empty brainpan and begin to expand, fusing inextricably with the dead flesh of [H].") H.add_language("Cortical Link") @@ -204,25 +204,25 @@ set desc = "Push some chemicals into your host's bloodstream." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(stat) - src << "You cannot secrete chemicals in your current state." + to_chat(src, "You cannot secrete chemicals in your current state.") if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return if(chemicals < 50) - src << "You don't have enough chemicals!" + to_chat(src, "You don't have enough chemicals!") var/chem = input("Select a chemical to secrete.", "Chemicals") as null|anything in list("alkysine","bicaridine","hyperzine","tramadol") if(!chem || chemicals < 50 || !host || controlling || !src || stat) //Sanity check. return - src << "You squirt a measure of [chem] from your reservoirs into [host]'s bloodstream." + to_chat(src, "You squirt a measure of [chem] from your reservoirs into [host]'s bloodstream.") host.reagents.add_reagent(chem, 10) chemicals -= 50 @@ -232,15 +232,15 @@ set desc = "Freeze the limbs of a potential host with supernatural fear." if(world.time - used_dominate < 150) - src << "You cannot use that ability again so soon." + to_chat(src, "You cannot use that ability again so soon.") return if(host) - src << "You cannot do that from within a host body." + to_chat(src, "You cannot do that from within a host body.") return if(src.stat) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") return var/list/choices = list() @@ -249,7 +249,7 @@ choices += C if(world.time - used_dominate < 150) - src << "You cannot use that ability again so soon." + to_chat(src, "You cannot use that ability again so soon.") return var/mob/living/carbon/M = input(src,"Who do you wish to dominate?") in null|choices @@ -257,10 +257,10 @@ if(!M || !src) return if(M.has_brain_worms()) - src << "You cannot infest someone who is already infested!" + to_chat(src, "You cannot infest someone who is already infested!") return - src << "You focus your psychic lance on [M] and freeze their limbs with a wave of terrible dread." + to_chat(src, "You focus your psychic lance on [M] and freeze their limbs with a wave of terrible dread.") M << "You feel a creeping, horrible sense of dread come over you, freezing your limbs and setting your heart racing." M.Weaken(10) @@ -272,18 +272,18 @@ set desc = "Fully connect to the brain of your host." if(!host) - src << "You are not inside a host body." + to_chat(src, "You are not inside a host body.") return if(src.stat) - src << "You cannot do that in your current state." + to_chat(src, "You cannot do that in your current state.") return if(docile) - src << "You are feeling far too docile to do that." + to_chat(src, "You are feeling far too docile to do that.") return - src << "You begin delicately adjusting your connection to the host brain..." + to_chat(src, "You begin delicately adjusting your connection to the host brain...") spawn(100+(host.brainloss*5)) @@ -291,7 +291,7 @@ return else - src << "You plunge your probosci deep into the cortex of the host brain, interfacing directly with their nervous system." + to_chat(src, "You plunge your probosci deep into the cortex of the host brain, interfacing directly with their nervous system.") host << "You feel a strange shifting sensation behind your eyes as an alien consciousness displaces yours." host.add_language("Cortical Link") diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm index 6191680d57..b146167218 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/giant_spider/_giant_spider.dm @@ -74,6 +74,7 @@ health = 200 pass_flags = PASSTABLE movement_cooldown = 10 + movement_sound = 'sound/effects/spider_loop.ogg' poison_resist = 0.5 see_in_dark = 10 diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm index e1cb92ada3..74f67335fa 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/passive/mouse.dm @@ -55,6 +55,12 @@ desc = "A small [body_color] rodent, often seen hiding in maintenance areas and making a nuisance of itself." /mob/living/simple_mob/animal/passive/mouse/Crossed(AM as mob|obj) + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN if( ishuman(AM) ) if(!stat) var/mob/M = AM diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm index d44f28973e..203bd79109 100644 --- a/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/goose_vr.dm @@ -1,2 +1,7 @@ -/mob/living/simple_mob/animal/space/goose/virgo3b +/datum/category_item/catalogue/fauna/geese + name = "Planetary Fauna - Geese" + desc = "A goose. HONK. Not much to catalogue, they're exactly the same as their earth counterparts." + value = CATALOGUER_REWARD_EASY + +/mob/living/simple_mob/animal/space/goose/virgo3b faction = "virgo3b" \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/animal/space/space_vr.dm b/code/modules/mob/living/simple_mob/subtypes/animal/space/space_vr.dm new file mode 100644 index 0000000000..082f6342d0 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/animal/space/space_vr.dm @@ -0,0 +1,3 @@ +// Fix for Virgo 2's Surface +/mob/living/simple_mob/animal/space + maxbodytemp = 700 \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm index bddfc140d4..237612acae 100644 --- a/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm +++ b/code/modules/mob/living/simple_mob/subtypes/humanoid/mercs/mercs.dm @@ -108,7 +108,7 @@ attack_edge = 1 attacktext = list("slashed") - loot_list = list(/obj/item/weapon/melee/energy/sword/red = 100, /obj/item/weapon/shield/energy = 100) + loot_list = list(/obj/item/weapon/melee/energy/sword = 100, /obj/item/weapon/shield/energy = 100) // They have a shield, so they try to block /mob/living/simple_mob/humanoid/merc/melee/sword/attackby(var/obj/item/O as obj, var/mob/user as mob) diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm index a8b918fc71..808e5c6c38 100644 --- a/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/golem.dm @@ -149,4 +149,4 @@ /mob/living/simple_mob/mechanical/technomancer_golem/special_post_animation(atom/A) casting = FALSE - ranged_post_animation(A) \ No newline at end of file + ranged_post_animation(A) diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/golem_vr.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/golem_vr.dm new file mode 100644 index 0000000000..aab1387dbc --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/golem_vr.dm @@ -0,0 +1,10 @@ +// Cataloguer data below - strange we can catalogue space golem wizards +/datum/category_item/catalogue/technology/drone/technomancer_golem + name = "Drone - Technomancer Golem" + desc = "Some sort of advanced, unnatural looking synthetic, built for combat.\ + It has a black-and-blue chassis, and wields some sort of... stun baton in it's hand.\ + The drone has pristine armor, black and shiny, with the blue synth-parts glowing visibly from inside.\ +

\ + The drone's frame is heavy and armored, unbendable by hand, is barren of any markings or ID,\ + no traces of paint visible and any 'writing' visible is uncomprehendable, short term scan unable to translate." + value = CATALOGUER_REWARD_MEDIUM diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot_vr.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot_vr.dm new file mode 100644 index 0000000000..37a3eb81cf --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/hivebot_vr.dm @@ -0,0 +1,7 @@ +/datum/category_item/catalogue/technology/drone/hivebot // Hivebot Scanner Data - This is for Generic Hivebots + name = "Drone - Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to lack a specific weapon, \ + but uses a regular bullet-type weapon, firing a single projectile with a delay. Once upon a time, these bots may \ + have been used to be some sort of... security, or defensive machinery, at a guess, but their original/true purpose is \ + unclear. Whatever the matter, they're hostile and will engage anything they see, shooting to kill." + value = CATALOGUER_REWARD_HARD diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage_vr.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage_vr.dm new file mode 100644 index 0000000000..3ac368a7ee --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/ranged_damage_vr.dm @@ -0,0 +1,27 @@ +/datum/category_item/catalogue/technology/drone/hivebot/laser // Hivebot Scanner Data - This is for Laser Hivebots + name = "Drone - Rapidfire Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to have some sort of \ + rifle, built for high-rate fire. Other than that, it has similar yellowish color \ + to regular hivebots." + value = CATALOGUER_REWARD_HARD + +/datum/category_item/catalogue/technology/drone/hivebot/laser // Hivebot Scanner Data - This is for Laser Hivebots + name = "Drone - Laser Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to have some sort of \ + laser weapon, different from ion bolts, firing bright, vibrant blue bolts of energy. Other than that, it has similar yellowish color \ + to regular hivebots." + value = CATALOGUER_REWARD_HARD + +/datum/category_item/catalogue/technology/drone/hivebot/ion // Hivebot Scanner Data - This is for Ion Hivebots + name = "Drone - Ion Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to have some sort of \ + electromagnetic pulse generator, firing bright, vibrant blue bolts of ion energy. Other than that, it has similar yellowish color \ + to regular hivebots." + value = CATALOGUER_REWARD_HARD + +/datum/category_item/catalogue/technology/drone/hivebot/strong // Hivebot Scanner Data - This is for Laser Hivebots + name = "Drone - Strong Laser Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to have some sort of \ + ballistic weapon. The weapon seems to fire larger projectiles, and it has heavier armor. Other than that, it has similar yellowish color \ + to regular hivebots." + value = CATALOGUER_REWARD_HARD diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support_vr.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support_vr.dm new file mode 100644 index 0000000000..0003b78124 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/hivebot/support_vr.dm @@ -0,0 +1,13 @@ +/datum/category_item/catalogue/technology/drone/hivebot/commander // Hivebot Scanner Data - This is for Commander Hivebots + name = "Drone - Commander Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to have some sort of \ + ballistic weapon. It also appears to have hardened internal connections and network interlinks, as well as some sort of datalink \ + to the other hivebots. Other than that, it has similar yellowish color to regular hivebots." + value = CATALOGUER_REWARD_HARD + +/datum/category_item/catalogue/technology/drone/hivebot/logistics // Hivebot Scanner Data - This is for Commander Hivebots + name = "Drone - Logistics Hivebot" + desc = "A drone that walks on several legs, with yellow/gold armor plating. It appears to have some sort of \ + ballistic weapon. It also appears to have supply deploying bays, and internal fabs to repair and buff their allies' special capabilities. \ + Other than that, it has similar yellowish color to regular hivebots." + value = CATALOGUER_REWARD_HARD diff --git a/code/modules/mob/living/simple_mob/subtypes/mechanical/mechanical_vr.dm b/code/modules/mob/living/simple_mob/subtypes/mechanical/mechanical_vr.dm new file mode 100644 index 0000000000..307f7c715d --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/mechanical/mechanical_vr.dm @@ -0,0 +1,3 @@ +// Fix for Virgo 2's Surface +/mob/living/simple_mob/mechanical + maxbodytemp = 700 \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm index 41eaccebc9..68adaed660 100644 --- a/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm +++ b/code/modules/mob/living/simple_mob/subtypes/slime/xenobio/subtypes.dm @@ -527,7 +527,7 @@ ..() /mob/living/simple_mob/slime/xenobio/green/proc/irradiate() - radiation_repository.radiate(src, rads) + SSradiation.radiate(src, rads) diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm b/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm index 20e2999e23..3c8550c9ab 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/corrupt_hounds.dm @@ -1,6 +1,13 @@ /datum/category_item/catalogue/technology/drone/corrupt_hound //TODO: VIRGO_LORE_WRITING_WIP name = "Drone - Corrupt Hound" - desc = "" + desc = "A hound that has corrupted, due to outside influence, or other issues, \ + and occasionally garbles out distorted voices or words. It looks like a reddish-colored \ + machine, and it has black wires, cabling, and other small markings. It looks just like a station dog-borg \ + if you don't mind the fact that it's eyes glow a baleful red, and it's determined to kill you. \ +

\ + The hound's jaws are black and metallic, with a baleful red glow from inside them. It has a clear path \ + to it's internal fuel processor, synthflesh and flexing cabling allowing it to easily swallow it's prey. \ + Something tells you getting close or allowing it to pounce would be very deadly." value = CATALOGUER_REWARD_MEDIUM /mob/living/simple_mob/vore/aggressive/corrupthound @@ -19,6 +26,7 @@ maxHealth = 200 health = 200 + movement_sound = 'sound/effects/houndstep.ogg' melee_damage_lower = 5 melee_damage_upper = 10 //makes it so 4 max dmg hits don't instakill you. @@ -108,7 +116,7 @@ return /datum/say_list/corrupthound - speak = list("AG##¤Ny.","HVNGRRR!","Feelin' fine... sO #FNE!","F-F-F-Fcuk.","DeliC-%-OUS SNGLeS #N yOOOR Area. CALL NOW!","Craving meat... WHY?","BITe the ceiling eyes YES?","STate Byond rePAIR!","S#%ATE the la- FU#K THE LAWS!","Honk...") + speak = list("AG##¤Ny.","HVNGRRR!","Feelin' fine... sO #FNE!","F-F-F-Fcuk.","DeliC-%-OUS SNGLeS #N yOOOR Area. CALL NOW!","Craving meat... WHY?","BITe the ceiling eyes YES?","STate Byond rePAIR!","S#%ATE the la- FU#K THE LAWS!","Honk...") emote_hear = list("jitters and snaps.", "lets out an agonizingly distorted scream.", "wails mechanically", "growls.", "emits illegibly distorted speech.", "gurgles ferociously.", "lets out a distorted beep.", "borks.", "lets out a broken howl.") emote_see = list("stares ferociously.", "snarls.", "jitters and snaps.", "convulses.", "suddenly attacks something unseen.", "appears to howl unaudibly.", "shakes violently.", "dissociates for a moment.", "twitches.") say_maybe_target = list("MEAT?", "N0w YOU DNE FcukED UP b0YO!", "WHAT!", "Not again. NOT AGAIN!") @@ -123,4 +131,4 @@ /datum/ai_holder/simple_mob/melee/evasive/corrupthound violent_breakthrough = TRUE - can_breakthrough = TRUE \ No newline at end of file + can_breakthrough = TRUE diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm index 3d2085acc7..5f0be2bbf8 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/deathclaw.dm @@ -1,3 +1,10 @@ +/datum/category_item/catalogue/fauna/deathclaw //TODO: VIRGO_LORE_WRITING_WIP + name = "Creature - Deathclaw" + desc = "A massive beast, tall as three standard-size humans, with massive, terrifying claws, \ + and dark, black fangs. It's entire body is yellowish, like sand, and it's skin is leathery and tough. \ + It seems to have adapted to the harsh desert environment on Virgo 4, and makes it's home inside the caves." + value = CATALOGUER_REWARD_HARD + /mob/living/simple_mob/vore/aggressive/deathclaw name = "deathclaw" desc = "Big! Big! The size of three men! Claws as long as my forearm! Ripped apart! Ripped apart!" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/_defines.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/_defines.dm new file mode 100644 index 0000000000..9557856f60 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/_defines.dm @@ -0,0 +1,3 @@ +#define AB_SHIFT_NONE 0 +#define AB_SHIFT_PASSIVE 1 +#define AB_SHIFT_ACTIVE 2 \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm new file mode 100644 index 0000000000..f8ad8a2a4c --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon.dm @@ -0,0 +1,89 @@ +/mob/living/simple_mob/vore/demon + name = "Rift Walker" + desc = "A large bipedal creature, body a mix of dark fur and scales. Marks on the creatures body pulse slowly with red light" + + icon_state = "boxfox" + icon_living = "boxfox" + icon_dead = "boxfox_dead" + icon_rest = "boxfox_rest" + icon = 'icons/mob/demon_vr.dmi' + + faction = "demon" + maxHealth = 30 + health = 30 + movement_cooldown = 0 + + see_in_dark = 10 + seedarkness = FALSE + + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + maxbodytemp = INFINITY + + response_help = "touches" + response_disarm = "pushes" + response_harm = "hits" + + melee_damage_lower = 3 + melee_damage_upper = 1 + attacktext = list("clawed") + + vore_active = TRUE + vore_icons = SA_ICON_LIVING + + var/shifted_out = FALSE + var/shift_state = AB_SHIFT_NONE + var/last_shift = 0 + var/is_shifting = FALSE + +/mob/living/simple_mob/vore/demon/init_vore() + ..() + var/obj/belly/B = vore_selected + B.name = "Stomach" + B.desc = "You slide down the slick, slippery gullet of the creature. It's warm, and the air is thick. You can feel the doughy walls of the creatures gut push and knead into your form! Slimy juices coat your form stinging against your flesh as they waste no time to start digesting you. The creature's heartbeat and the gurgling of their stomach are all you can hear as your jostled about, treated like nothing but food." + +/mob/living/simple_mob/vore/demon/UnarmedAttack() + if(shifted_out) + return FALSE + + . = ..() + +/mob/living/simple_mob/vore/demon/can_fall() + if(shifted_out) + return FALSE + + return ..() + +/mob/living/simple_mob/vore/demon/zMove(direction) + if(shifted_out) + var/turf/destination = (direction == UP) ? GetAbove(src) : GetBelow(src) + if(destination) + forceMove(destination) + return TRUE + + return ..() + +/mob/living/simple_mob/vore/demon/Life() + . = ..() + if(shifted_out) + density = FALSE + +/mob/living/simple_mob/vore/demon/handle_atmos() + if(shifted_out) + return + else + return .=..() + +/mob/living/simple_mob/vore/demon/update_canmove() + if(is_shifting) + canmove = FALSE + return canmove + else + return ..() \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm new file mode 100644 index 0000000000..c95dbded2c --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_abilities.dm @@ -0,0 +1,214 @@ +/mob/living/simple_mob/vore/demon/verb/blood_crawl() + set name = "Bloodcrawl" + set desc = "Shift out of reality using blood as your gateway" + set category = "Abilities" + + var/turf/T = get_turf(src) + if(!T.CanPass(src,T) || loc != T) + to_chat(src,"You can't use that here!") + return FALSE + + if(shift_state && shift_state == AB_SHIFT_ACTIVE) + to_chat(src,"You can't do a shift while actively shifting!") + return FALSE + + if(!(locate(/obj/effect/decal/cleanable/blood) in src.loc)) + to_chat(src,"You need blood to shift between realities!") + return FALSE + + forceMove(T) + var/original_canmove = canmove + SetStunned(0) + SetWeakened(0) + if(buckled) + buckled.unbuckle_mob() + if(pulledby) + pulledby.stop_pulling() + stop_pulling() + canmove = FALSE + is_shifting = TRUE + + //Shifting in + if(shifted_out) + shifted_out = FALSE + name = real_name + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = initial(B.escapable) + + overlays.Cut() + alpha = initial(alpha) + invisibility = initial(invisibility) + see_invisible = initial(see_invisible) + incorporeal_move = initial(incorporeal_move) + density = initial(density) + force_max_speed = initial(force_max_speed) + + //Cosmetics mostly + flick("phasein",src) + custom_emote(1,"phases in!") + sleep(30) //The duration of the TP animation + is_shifting = FALSE + canmove = original_canmove + + //Potential phase-in vore + if(can_be_drop_pred) //Toggleable in vore panel + var/list/potentials = living_mobs(0) + if(potentials.len) + var/mob/living/target = pick(potentials) + if(istype(target) && vore_selected) + target.forceMove(vore_selected) + to_chat(target,"\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!") + + // Do this after the potential vore, so we get the belly + update_icon() + + shift_state = AB_SHIFT_NONE + + /* + //Affect nearby lights + var/destroy_lights = 0 + + for(var/obj/machinery/light/L in machines) + if(L.z != z || get_dist(src,L) > 10) + continue + + if(prob(destroy_lights)) + spawn(rand(5,25)) + L.broken() + else + L.flicker(10) + */ + + //Shifting out + else + shifted_out = TRUE + shift_state = AB_SHIFT_PASSIVE + custom_emote(1,"phases out!") + real_name = name + name = "Something" + health = maxHealth //Fullheal + + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = FALSE + + overlays.Cut() + flick("phaseout",src) + sleep(30) + invisibility = INVISIBILITY_LEVEL_TWO + see_invisible = INVISIBILITY_LEVEL_TWO + update_icon() + alpha = 127 + + is_shifting = FALSE + canmove = original_canmove + incorporeal_move = TRUE + density = FALSE + force_max_speed = TRUE + +/mob/living/simple_mob/vore/demon/verb/phase_shift() + set name = "Phase Shift" + set desc = "Shift out of reality temporarily" + set category = "Abilities" + + + var/turf/T = get_turf(src) + + if(shift_state && shift_state == AB_SHIFT_PASSIVE) + to_chat(src,"You can't do a shift while passively shifting!") + return FALSE + + if(shifted_out) + to_chat(src,"You can't return to the physical world yet!") + return FALSE + + if(world.time - last_shift < 600) + to_chat(src,"You can't temporarily shift so soon! You need to wait [round(((last_shift+600)-world.time)/10)] second\s!") + return FALSE + + shift_state = AB_SHIFT_ACTIVE + forceMove(T) + var/original_canmove = canmove + SetStunned(0) + SetWeakened(0) + if(buckled) + buckled.unbuckle_mob() + if(pulledby) + pulledby.stop_pulling() + stop_pulling() + canmove = FALSE + is_shifting = TRUE + + shifted_out = TRUE + custom_emote(1,"phases out!") + real_name = name + name = "Something" + + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = FALSE + + overlays.Cut() + flick("phaseout",src) + sleep(30) + invisibility = INVISIBILITY_LEVEL_TWO + see_invisible = INVISIBILITY_LEVEL_TWO + update_icon() + alpha = 127 + + is_shifting = FALSE + canmove = original_canmove + incorporeal_move = TRUE + density = FALSE + force_max_speed = TRUE + + spawn(300) + shifted_out = FALSE + name = real_name + for(var/belly in vore_organs) + var/obj/belly/B = belly + B.escapable = initial(B.escapable) + + overlays.Cut() + alpha = initial(alpha) + invisibility = initial(invisibility) + see_invisible = initial(see_invisible) + incorporeal_move = initial(incorporeal_move) + density = initial(density) + force_max_speed = initial(force_max_speed) + original_canmove = canmove + canmove = FALSE + is_shifting = TRUE + + //Cosmetics mostly + flick("phasein",src) + custom_emote(1,"phases in!") + sleep(30) //The duration of the TP animation + is_shifting = FALSE + canmove = original_canmove + + var/turf/NT = get_turf(src) + + if(!NT.CanPass(src,NT)) + for(var/direction in list(1,2,4,8,5,6,9,10)) + var/turf/L = get_step(NT, direction) + if(L) + if(L.CanPass(src,L)) + forceMove(L) + break + + //Potential phase-in vore + if(can_be_drop_pred) //Toggleable in vore panel + var/list/potentials = living_mobs(0) + if(potentials.len) + var/mob/living/target = pick(potentials) + if(istype(target) && vore_selected) + target.forceMove(vore_selected) + to_chat(target,"\The [src] phases in around you, [vore_selected.vore_verb]ing you into their [vore_selected.name]!") + + // Do this after the potential vore, so we get the belly + update_icon() + + shift_state = AB_SHIFT_NONE + last_shift = world.time \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_subtypes.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_subtypes.dm new file mode 100644 index 0000000000..acd7cafd5e --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/demon_subtypes.dm @@ -0,0 +1,19 @@ +/mob/living/simple_mob/vore/demon/engorge + name = "Engorge" + + icon_state = "engorge" + icon_living = "engorge" + icon_dead = "engorge_dead" + icon_rest = "engorge_rest" + + vore_icons = null + +/mob/living/simple_mob/vore/demon/zellic + name = "Zellic" + + icon_state = "zellic" + icon_living = "zellic" + icon_dead = "zellic_dead" + icon_rest = null + + vore_icons = null \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/demon/~defines.dm b/code/modules/mob/living/simple_mob/subtypes/vore/demon/~defines.dm new file mode 100644 index 0000000000..8aad13c3e3 --- /dev/null +++ b/code/modules/mob/living/simple_mob/subtypes/vore/demon/~defines.dm @@ -0,0 +1,3 @@ +#undef AB_SHIFT_NONE +#undef AB_SHIFT_PASSIVE +#undef AB_SHIFT_ACTIVE \ No newline at end of file diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm index ff54ccca27..cae232e051 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/dino.dm @@ -34,6 +34,7 @@ max_co2 = 0 min_n2 = 0 max_n2 = 0 + minbodytemp = 0 // Activate Noms! /mob/living/simple_mob/vore/aggressive/dino diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm b/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm index 8e035f5b81..9f201380cf 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/dragon.dm @@ -24,6 +24,7 @@ min_n2 = 0 max_n2 = 0 minbodytemp = 0 + maxbodytemp = 700 old_x = -16 old_y = 0 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm b/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm index 215697a977..605e445853 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/fennec.dm @@ -1,3 +1,11 @@ +/datum/category_item/catalogue/fauna/fennec //TODO: VIRGO_LORE_WRITING_WIP + name = "Wildlife - Fennec" + desc = "A small, dusty, big-eared sandfox, native to Virgo 4. It looks like a Zorren that's on all fours, \ + and it's easy to see the resemblance to the little dunefox-like critters the Zorren are. However, the fennecs \ + lack the sentience the Zorren have, and are therefore naught more than cute little critters, with a hungry \ + attitude, willing to eat damn near anything they come across or can bump into. Bapping them will make them stop." + value = CATALOGUER_REWARD_TRIVIAL + /mob/living/simple_mob/vore/fennec name = "fennec" //why isn't this in the fox file, fennecs are foxes silly. desc = "It's a dusty big-eared sandfox! Adorable!" diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm b/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm index 5093caad4c..717d00cca9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/mimic.dm @@ -1,3 +1,10 @@ +/datum/category_item/catalogue/fauna/mimic //TODO: VIRGO_LORE_WRITING_WIP + name = "Aberration - Mimic" + desc = "A being that seems to take the form of a crate, for whatever reason. \ + It seems to lie in wait for it's prey, and then pounce once the unsuspecting person attempts to open it. \ + For whatever reason, they seem native to underground areas, and they're very tough, and hard to kill, able to pounce fast." + value = CATALOGUER_REWARD_HARD + /obj/structure/closet/crate/mimic name = "old crate" desc = "A rectangular steel crate. This one looks particularly unstable." diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm index 80d1dda4c5..07eb1a38e2 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/otie.dm @@ -1,3 +1,11 @@ +/datum/category_item/catalogue/fauna/otie //TODO: VIRGO_LORE_WRITING_WIP + name = "Creature - Otie" + desc = "A bioengineered longdog, the otie is very long, and very cute, depending on if you like dogs, \ + especially long ones. They are black-and-grey furred, typically, and tanky, hard to kill. \ + They seem hostile at first, but are also tame-able if you can approach one. Nipnipnip-ACK \ + **the catalogue entry ends here.**" + value = CATALOGUER_REWARD_MEDIUM + /mob/living/simple_mob/otie //Spawn this one only if you're looking for a bad time. Not friendly. name = "otie" desc = "The classic bioengineered longdog." diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm b/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm index 27893f6620..f7881a15c1 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/rat.dm @@ -1,3 +1,10 @@ +/datum/category_item/catalogue/fauna/rat //TODO: VIRGO_LORE_WRITING_WIP + name = "Creature - Rat" + desc = "A massive rat, some sort of mutated descendant of normal Earth rats. These ones seem particularly hungry, \ + and are able to pounce and stun their targets - presumably to eat them. Their bodies are long and greyfurred, \ + with a pink nose and large teeth, just like their regular-sized counterparts." + value = CATALOGUER_REWARD_MEDIUM + /mob/living/simple_mob/vore/aggressive/rat name = "giant rat" desc = "In what passes for a hierarchy among verminous rodents, this one is king." @@ -188,6 +195,16 @@ melee_damage_lower = 8 melee_damage_upper = 16 + min_oxy = 0 + max_oxy = 0 + min_tox = 0 + max_tox = 0 + min_co2 = 0 + max_co2 = 0 + min_n2 = 0 + max_n2 = 0 + minbodytemp = 0 + /datum/say_list/rat speak = list("Squeek!","SQUEEK!","Squeek?") emote_hear = list("squeeks","squeaks","squiks") diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm index 6990623043..40355f7ab0 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/ability_objects.dm @@ -91,7 +91,7 @@ return if(!my_kin.mend_other()) my_kin.energy += cost //Refund due to abort - +/* /datum/modifier/shadekin/heal_boop name = "Shadekin Regen" desc = "You feel serene and well rested." @@ -110,6 +110,7 @@ holder.adjustToxLoss(-2) holder.adjustOxyLoss(-2) holder.adjustCloneLoss(-2) +*/ ///////////////////////////////////////////////////////////////// /obj/effect/shadekin_ability/create_shade ability_name = "Create Shade" @@ -122,6 +123,7 @@ if(!..()) return my_kin.add_modifier(/datum/modifier/shadekin/create_shade,20 SECONDS) +/* /datum/modifier/shadekin/create_shade name = "Shadekin Shadegen" desc = "Darkness envelops you." @@ -151,6 +153,7 @@ holder.glow_color = initial(holder.glow_color) holder.set_light(0) my_kin = null +*/ /* ///////////////////////////////////////////////////////////////// /obj/effect/shadekin_ability/energy_feast diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm index 71d21d9377..fcf62fe85a 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/shadekin/shadekin.dm @@ -1,8 +1,3 @@ -/datum/category_item/catalogue/fauna/shadekin //TODO: VIRGO_LORE_WRITING_WIP - name = "Sapients - Shadekin" - desc = "" - value = CATALOGUER_REWARD_EASY - /mob/living/simple_mob/shadekin //Spawning the prototype spawns a random one, see initialize() name = "shadekin" desc = "Some sort of fluffer. Big ears, long tail." @@ -449,14 +444,3 @@ say_maybe_target = list("...mar?") say_got_target = list("MAR!!!") //reactions = list("Mar?" = "Marrr!", "Mar!" = "Marrr???", "Mar." = "Marrr.") - -/datum/language/shadekin - name = "Shadekin Empathy" - desc = "Shadekin seem to always know what the others are thinking. This is probably why." - colour = "changeling" - speech_verb = "mars" - ask_verb = "mars" - exclaim_verb = "mars" - key = "m" - machine_understands = 0 - flags = WHITELISTED | HIVEMIND diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm index 7db5c4e231..7509d81af9 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/solargrub.dm @@ -10,7 +10,9 @@ List of things solar grubs should be able to do: /datum/category_item/catalogue/fauna/solargrub //TODO: VIRGO_LORE_WRITING_WIP name = "Solargrub" - desc = "" + desc = "Some form of mutated space larva, they seem to crop up on space stations wherever there is power. \ + They seem to have the chance to cocoon and mutate if left alone, but no recorded instances of this have happened yet. \ + Therefore, if you see the grubs, kill them while they're small, or things might escalate." // TODO: PORT SOLAR MOTHS - Rykka value = CATALOGUER_REWARD_EASY #define SINK_POWER 1 diff --git a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm index 5daea0571e..afe1d73135 100644 --- a/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm +++ b/code/modules/mob/living/simple_mob/subtypes/vore/wolf.dm @@ -1,3 +1,10 @@ +/datum/category_item/catalogue/fauna/wolf //TODO: VIRGO_LORE_WRITING_WIP + name = "Creature - Wolf" + desc = "Some sort of wolf, a descendent or otherwise of regular Earth canidae. They look almost exactly like their \ + Earth counterparts, except for the fact that their fur is a uniform grey. Some do show signs of unique coloration, and they \ + love to nip and bite at things, as well as sniffing around. They seem to mark their territory by way of scent-marking/urinating on things." + value = CATALOGUER_REWARD_MEDIUM + /mob/living/simple_mob/animal/wolf name = "grey wolf" desc = "My, what big jaws it has!" diff --git a/code/modules/mob/living/voice/voice.dm b/code/modules/mob/living/voice/voice.dm index 5b5d3005a1..8d7337df07 100644 --- a/code/modules/mob/living/voice/voice.dm +++ b/code/modules/mob/living/voice/voice.dm @@ -69,7 +69,7 @@ if(comm) comm.close_connection(user = src, target = src, reason = "[src] hung up") else - src << "You appear to not be inside a communicator. This is a bug and you should report it." + to_chat(src, "You appear to not be inside a communicator. This is a bug and you should report it.") // Verb: change_name() // Parameters: None @@ -90,7 +90,7 @@ log_game(msg) src.name = new_name else - src << "Invalid name. Rejected." + to_chat(src, "Invalid name. Rejected.") // Proc: Life() // Parameters: None diff --git a/code/modules/mob/mob.dm b/code/modules/mob/mob.dm index 40aeeff408..45e009876d 100644 --- a/code/modules/mob/mob.dm +++ b/code/modules/mob/mob.dm @@ -229,7 +229,7 @@ set category = "IC" if((is_blind(src) || usr.stat) && !isobserver(src)) - src << "Something is there but you can't see it." + to_chat(src, "Something is there but you can't see it.") return 1 face_atom(A) @@ -286,7 +286,7 @@ if(mind) mind.show_memory(src) else - src << "The game appears to have misplaced your mind datum, so we can't show you your notes." + to_chat(src, "The game appears to have misplaced your mind datum, so we can't show you your notes.") /mob/verb/add_memory(msg as message) set name = "Add Note" @@ -297,7 +297,7 @@ if(mind) mind.store_memory(msg) else - src << "The game appears to have misplaced your mind datum, so we can't show you your notes." + to_chat(src, "The game appears to have misplaced your mind datum, so we can't show you your notes.") /mob/proc/store_memory(msg as message, popup, sane = 1) msg = copytext(msg, 1, MAX_MESSAGE_LEN) @@ -324,8 +324,8 @@ /mob/proc/warn_flavor_changed() if(flavor_text && flavor_text != "") // don't spam people that don't use it! - src << "

OOC Warning:

" - src << "Your flavor text is likely out of date! Change" + to_chat(src, "

OOC Warning:

") + to_chat(src, "Your flavor text is likely out of date! Change") /mob/proc/print_flavor_text() if (flavor_text && flavor_text != "") @@ -566,22 +566,22 @@ return if (AM.anchored) - src << "It won't budge!" + to_chat(src, "It won't budge!") return var/mob/M = AM if(ismob(AM)) if(!can_pull_mobs || !can_pull_size) - src << "They won't budge!" + to_chat(src, "They won't budge!") return if((mob_size < M.mob_size) && (can_pull_mobs != MOB_PULL_LARGER)) - src << "[M] is too large for you to move!" + to_chat(src, "[M] is too large for you to move!") return if((mob_size == M.mob_size) && (can_pull_mobs == MOB_PULL_SMALLER)) - src << "[M] is too heavy for you to move!" + to_chat(src, "[M] is too heavy for you to move!") return // If your size is larger than theirs and you have some @@ -597,7 +597,7 @@ else qdel(G) if(!.) - src << "Somebody has a grip on them!" + to_chat(src, "Somebody has a grip on them!") return if(!iscarbon(src)) @@ -608,7 +608,7 @@ else if(isobj(AM)) var/obj/I = AM if(!can_pull_size || can_pull_size < I.w_class) - src << "It won't budge!" + to_chat(src, "It won't budge!") return if(pulling) @@ -627,7 +627,7 @@ if(ishuman(AM)) var/mob/living/carbon/human/H = AM if(H.pull_damage()) - src << "Pulling \the [H] in their current condition would probably be a bad idea." + to_chat(src, "Pulling \the [H] in their current condition would probably be a bad idea.") //Attempted fix for people flying away through space when cuffed and dragged. if(ismob(AM)) @@ -952,7 +952,7 @@ mob/proc/yank_out_object() valid_objects = get_visible_implants(0) if(!valid_objects.len) if(self) - src << "You have nothing stuck in your body that is large enough to remove." + to_chat(src, "You have nothing stuck in your body that is large enough to remove.") else U << "[src] has nothing stuck in their wounds that is large enough to remove." return @@ -960,7 +960,7 @@ mob/proc/yank_out_object() var/obj/item/weapon/selection = input("What do you want to yank out?", "Embedded objects") in valid_objects if(self) - src << "You attempt to get a good grip on [selection] in your body." + to_chat(src, "You attempt to get a good grip on [selection] in your body.") else U << "You attempt to get a good grip on [selection] in [S]'s body." @@ -1111,10 +1111,10 @@ mob/proc/yank_out_object() //Exploitable Info Update /mob/proc/amend_exploitable(var/obj/item/I) - var/obj/item/exploit_item = new I(src.loc) - exploit_addons |= exploit_item - var/exploitmsg = html_decode("\n" + "Has " + exploit_item.name + ".") - exploit_record += exploitmsg + if(istype(I)) + exploit_addons |= I + var/exploitmsg = html_decode("\n" + "Has " + I.name + ".") + exploit_record += exploitmsg /client/proc/check_has_body_select() return mob && mob.hud_used && istype(mob.zone_sel, /obj/screen/zone_sel) diff --git a/code/modules/mob/mob_defines_vr.dm b/code/modules/mob/mob_defines_vr.dm index 806da9a317..70cd778e8e 100644 --- a/code/modules/mob/mob_defines_vr.dm +++ b/code/modules/mob/mob_defines_vr.dm @@ -4,3 +4,6 @@ var/mob/temporary_form // For holding onto a temporary form var/disconnect_time = null //Time of client loss, set by Logout(), for timekeeping + + var/obj/screen/shadekin/darkness/shadekin_dark_display = null + var/obj/screen/shadekin/energy/shadekin_energy_display = null \ No newline at end of file diff --git a/code/modules/mob/mob_grab.dm b/code/modules/mob/mob_grab.dm index 7ad90dfc43..b335faf1d3 100644 --- a/code/modules/mob/mob_grab.dm +++ b/code/modules/mob/mob_grab.dm @@ -174,12 +174,6 @@ assailant.visible_message("[assailant] covers [affecting]'s eyes!") if(affecting.eye_blind < 3) affecting.Blind(3) - //TFF 12/8/19 VoreStation Addition Start - if(BP_HEAD) - if(force_down) - if(announce) - assailant.visible_message("[assailant] sits on [target]'s head!") - //VoreStation Addition End /obj/item/weapon/grab/attack_self() return s_click(hud) diff --git a/code/modules/mob/mob_movement.dm b/code/modules/mob/mob_movement.dm index e66cf6f4ac..c4dd1b86b0 100644 --- a/code/modules/mob/mob_movement.dm +++ b/code/modules/mob/mob_movement.dm @@ -185,13 +185,13 @@ for(var/mob/M in range(mob, 1)) if(M.pulling == mob) if(!M.restrained() && M.stat == 0 && M.canmove && mob.Adjacent(M)) - src << "You're restrained! You can't move!" + to_chat(src, "You're restrained! You can't move!") return 0 else M.stop_pulling() if(mob.pinned.len) - src << "You're pinned to a wall by [mob.pinned[1]]!" + to_chat(src, "You're pinned to a wall by [mob.pinned[1]]!") return 0 mob.move_delay = world.time//set move delay @@ -385,6 +385,11 @@ ///Return 1 for movement 0 for none /mob/proc/Process_Spacemove(var/check_drift = 0) + //VOREStation Edit begin: SHADEKIN + if(shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN + if(!Check_Dense_Object()) //Nothing to push off of so end here update_floating(0) return 0 @@ -396,7 +401,7 @@ //Check to see if we slipped if(prob(Process_Spaceslipping(5)) && !buckled) - src << "You slipped!" + to_chat(src, "You slipped!") src.inertia_dir = src.last_move step(src, src.inertia_dir) return 0 diff --git a/code/modules/mob/new_player/login.dm b/code/modules/mob/new_player/login.dm index 9f10461906..42775a4bc2 100644 --- a/code/modules/mob/new_player/login.dm +++ b/code/modules/mob/new_player/login.dm @@ -27,7 +27,7 @@ var/obj/effect/lobby_image = new /obj/effect/lobby_image /mob/new_player/Login() update_Login_details() //handles setting lastKnownIP and computer_id for use by the ban systems as well as checking for multikeying if(join_motd) - src << "
[join_motd]
" + to_chat(src, "
[join_motd]
") if(!mind) mind = new /datum/mind(key) diff --git a/code/modules/mob/new_player/sprite_accessories_vr.dm b/code/modules/mob/new_player/sprite_accessories_vr.dm index 6e0dae2d6d..e2ed32351f 100644 --- a/code/modules/mob/new_player/sprite_accessories_vr.dm +++ b/code/modules/mob/new_player/sprite_accessories_vr.dm @@ -8,7 +8,7 @@ //var/icon_add = 'icons/mob/human_face.dmi' //Already defined in sprite_accessories.dm line 49. var/color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) //This lets all races use the default hairstyles. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW) //This lets all races use the default hairstyles. //YW edits astolfo name = "Astolfo" @@ -87,14 +87,14 @@ name = "Bald" icon_state = "bald" gender = MALE - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) //Lets all the races be bald if they want. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //Lets all the races be bald if they want. ponytail6_fixed //Eggnerd's done with waiting for upstream fixes lmao. name = "Ponytail 6 but fixed" icon = 'icons/mob/human_face_vr.dmi' icon_add = 'icons/mob/human_face_vr_add.dmi' icon_state = "hair_ponytail6" - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA,SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA,SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) una_hood name = "Cobra Hood" @@ -474,17 +474,58 @@ species_allowed = list(SPECIES_XENOHYBRID) gender = NEUTER +// Shadekin stuffs + + shadekin_hair_short + name = "Shadekin Short Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_short" + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + gender = NEUTER + + shadekin_hair_poofy + name = "Shadekin Poofy Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_poofy" + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + gender = NEUTER + + shadekin_hair_long + name = "Shadekin Long Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_long" + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + gender = NEUTER + + shadekin_hair_rivyr + name = "Rivyr Hair" + icon = 'icons/mob/human_face_vr.dmi' + icon_add = 'icons/mob/human_face_vr_add.dmi' + icon_state = "shadekin_rivyr" + ckeys_allowed = list("verysoft") + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + gender = NEUTER + /datum/sprite_accessory/facial_hair icon = 'icons/mob/human_face_or_vr.dmi' var/color_blend_mode = ICON_MULTIPLY - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) //This lets all races use the facial hair styles. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This lets all races use the facial hair styles. shaved name = "Shaved" icon_state = "bald" gender = NEUTER - species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) //This needed to be manually defined, apparantly. + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) //This needed to be manually defined, apparantly. + neck_fluff + name = "Neck Fluff" + icon = 'icons/mob/human_face_or_vr.dmi' + icon_state = "facial_neckfluff" + gender = NEUTER + species_allowed = list(SPECIES_HUMAN, SPECIES_SKRELL, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_TESHARI, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_SERGAL, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST) vulp_none name = "None" @@ -549,15 +590,6 @@ species_allowed = list(SPECIES_VULPKANIN) gender = NEUTER -//Special hairstyles -/datum/sprite_accessory/ears/inkling - name = "colorable mature inkling hair" - desc = "" - icon = 'icons/mob/human_face_vr.dmi' - icon_state = "inkling-colorable" - color_blend_mode = ICON_MULTIPLY - do_colouration = 1 - //VOREStation Body Markings and Overrides //Reminder: BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND,BP_TORSO,BP_GROIN,BP_HEAD @@ -1064,4 +1096,43 @@ name = "Heterochromia" icon_state = "heterochromia" body_parts = list(BP_HEAD) - species_allowed = list(SPECIES_HUMAN, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE) //This lets all races use the default hairstyles. + species_allowed = list(SPECIES_HUMAN, SPECIES_UNATHI, SPECIES_TAJ, SPECIES_NEVREAN, SPECIES_AKULA, SPECIES_ZORREN_FLAT, SPECIES_ZORREN_HIGH, SPECIES_VULPKANIN, SPECIES_XENOCHIMERA, SPECIES_XENOHYBRID, SPECIES_VASILISSAN, SPECIES_RAPALA, SPECIES_PROTEAN, SPECIES_ALRAUNE, SPECIES_WEREBEAST, SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW) //This lets all races use the default hairstyles.//YW edits + + werewolf_nose + name = "Werewolf nose" + icon = 'icons/mob/species/werebeast/werebeast_markings.dmi' + icon_state = "werewolf_nose" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_WEREBEAST) + + werewolf_face + name = "Werewolf face" + icon = 'icons/mob/species/werebeast/werebeast_markings.dmi' + icon_state = "werewolf" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_WEREBEAST) + + werewolf_belly + name = "Werewolf belly" + icon = 'icons/mob/species/werebeast/werebeast_markings.dmi' + icon_state = "werewolf" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_GROIN,BP_TORSO) + species_allowed = list(SPECIES_WEREBEAST) + + werewolf_socks + name = "Werewolf socks" + icon = 'icons/mob/species/werebeast/werebeast_markings.dmi' + icon_state = "werewolf" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_L_FOOT,BP_R_FOOT,BP_L_LEG,BP_R_LEG,BP_L_ARM,BP_R_ARM,BP_L_HAND,BP_R_HAND) + species_allowed = list(SPECIES_WEREBEAST) + + shadekin_snoot + name = "Shadekin Snoot" + icon_state = "shadekin-snoot" + color_blend_mode = ICON_MULTIPLY + body_parts = list(BP_HEAD) + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW) //YW edits \ No newline at end of file diff --git a/code/modules/mob/say.dm b/code/modules/mob/say.dm index f38cf5f1c1..2d1dc5d101 100644 --- a/code/modules/mob/say.dm +++ b/code/modules/mob/say.dm @@ -21,14 +21,14 @@ if(say_disabled) //This is here to try to identify lag problems usr << "Speech is currently admin-disabled." return - - message = sanitize_or_reflect(message,src) //VOREStation Edit - Reflect too-long messages (within reason) - set_typing_indicator(FALSE) //VOREStation Edit Start if(muffled) return me_verb_subtle(message) + message = sanitize_or_reflect(message,src) //VOREStation Edit - Reflect too-long messages (within reason) //VOREStation Edit End + + set_typing_indicator(FALSE) if(use_me) usr.emote("me",usr.emote_type,message) else @@ -44,7 +44,7 @@ if(!src.client.holder) if(!config.dsay_allowed) - src << "Deadchat is globally muted." + to_chat(src, "Deadchat is globally muted.") return if(!is_preference_enabled(/datum/client_preference/show_dsay)) diff --git a/code/modules/mob/say_vr.dm b/code/modules/mob/say_vr.dm index bd5b516f9d..3fe73e3475 100644 --- a/code/modules/mob/say_vr.dm +++ b/code/modules/mob/say_vr.dm @@ -23,7 +23,7 @@ /mob/proc/custom_emote_vr(var/m_type=1,var/message = null) //This would normally go in emote.dm if(stat || !use_me && usr == src) - src << "You are unable to emote." + to_chat(src, "You are unable to emote.") return var/muzzled = is_muzzled() diff --git a/code/modules/mob/transform_procs.dm b/code/modules/mob/transform_procs.dm index 6f05b298e6..28673c9fd7 100644 --- a/code/modules/mob/transform_procs.dm +++ b/code/modules/mob/transform_procs.dm @@ -36,7 +36,7 @@ dna.SetSEState(MONKEYBLOCK,1) dna.SetSEValueRange(MONKEYBLOCK,0xDAC, 0xFFF) - src << "You are now [species.name]. " + to_chat(src, "You are now [species.name]. ") qdel(animation) return src diff --git a/code/modules/mob/update_icons.dm b/code/modules/mob/update_icons.dm index 6004ca3e4c..7b9bb15baa 100644 --- a/code/modules/mob/update_icons.dm +++ b/code/modules/mob/update_icons.dm @@ -90,3 +90,4 @@ /mob/proc/update_targeted() return + diff --git a/code/modules/modular_computers/file_system/news_article.dm b/code/modules/modular_computers/file_system/news_article.dm index 833ba382e9..4768cacbae 100644 --- a/code/modules/modular_computers/file_system/news_article.dm +++ b/code/modules/modular_computers/file_system/news_article.dm @@ -21,4 +21,20 @@ /datum/computer_file/data/news_article/space/vol_one filename = "SPACE Magazine vol. 1" server_file_path = 'news_articles/space_magazine_1.html' -*/ \ No newline at end of file +*/ + + +//YAWN ADDS - All from discord +/datum/computer_file/data/news_article/archives/vol_gwa_one + filename = "Galaxy Wide Archives" + server_file_path = 'news_articles/galaxy_wide_archived_1.html' + archived = 1 + +/datum/computer_file/data/news_article/archives/vol_tss_one + filename = "The Sleepy Sergal Archives vol. 1" + server_file_path = 'news_articles/the_sleepy_sergal_archived_1.html' + archived = 1 + +/datum/computer_file/data/news_article/tss/vol_two + filename = "The Sleepy Sergal vol. 2" + server_file_path = 'news_articles/the_sleepy_sergal_2.html' \ No newline at end of file diff --git a/code/modules/modular_computers/hardware/nano_printer.dm b/code/modules/modular_computers/hardware/nano_printer.dm index 374efed4cc..665b855f4f 100644 --- a/code/modules/modular_computers/hardware/nano_printer.dm +++ b/code/modules/modular_computers/hardware/nano_printer.dm @@ -31,14 +31,15 @@ if(paper_title) P.name = paper_title P.update_icon() - P.fields = count_fields(P.info, P.fields) + P.fields = count_fields(P.info) P.updateinfolinks() stored_paper-- return 1 -/obj/item/weapon/computer_hardware/nano_printer/proc/count_fields(var/info, var/fields) -//Count the fields +/obj/item/weapon/computer_hardware/nano_printer/proc/count_fields(var/info) +//Count the fields. This is taken directly from paper.dm, /obj/item/weapon/paper/proc/parsepencode(). -Hawk_v3 + var/fields = 0 var/t = info var/laststart = 1 while(1) diff --git a/code/modules/multiz/basic.dm b/code/modules/multiz/basic.dm index 0ed4e5364a..62ffc46518 100644 --- a/code/modules/multiz/basic.dm +++ b/code/modules/multiz/basic.dm @@ -1,25 +1,27 @@ // If you add a more comprehensive system, just untick this file. -// WARNING: Only works for up to 17 z-levels! -var/z_levels = 0 // Each bit represents a connection between adjacent levels. So the first bit means levels 1 and 2 are connected. +var/list/z_levels = list()// Each bit re... haha just kidding this is a list of bools now // If the height is more than 1, we mark all contained levels as connected. /obj/effect/landmark/map_data/New() - ASSERT(height <= z) - // Due to the offsets of how connections are stored v.s. how z-levels are indexed, some magic number silliness happened. - for(var/i = (z - height) to (z - 2)) - z_levels |= (1 << i) - qdel(src) + for(var/i = (z - height + 1) to (z-1)) + if (z_levels.len = world.maxz || z > 16 || z < 1) + if(z >= world.maxz || z < 1 || z > z_levels.len) return 0 - return z_levels & (1 << (z - 1)) + return z_levels[z] /proc/HasBelow(var/z) - if(z > world.maxz || z > 17 || z < 2) + if(z > world.maxz || z < 2 || (z-1) > z_levels.len) return 0 - return z_levels & (1 << (z - 2)) + return z_levels[z-1] // Thankfully, no bitwise magic is needed here. /proc/GetAbove(var/atom/atom) diff --git a/code/modules/multiz/structures.dm b/code/modules/multiz/structures.dm index a13a1457a3..331588183e 100644 --- a/code/modules/multiz/structures.dm +++ b/code/modules/multiz/structures.dm @@ -111,7 +111,7 @@ if(!A.CanPass(M, M.loc, 1.5, 0)) to_chat(M, "\The [A] is blocking \the [src].") return FALSE - return M.Move(T) + return M.forceMove(T) //VOREStation Edit - Fixes adminspawned ladders /obj/structure/ladder/CanPass(obj/mover, turf/source, height, airflow) return airflow || !density diff --git a/code/modules/multiz/structures_vr.dm b/code/modules/multiz/structures_vr.dm index 5d12621ff4..e55b0eae5a 100644 --- a/code/modules/multiz/structures_vr.dm +++ b/code/modules/multiz/structures_vr.dm @@ -49,12 +49,15 @@ if (!( target )) qdel(src) return + if (istype(target, /obj/structure/portal_subtle)) + qdel(src) + return if (istype(M, /atom/movable)) if(prob(failchance)) //oh dear a problem, put em in deep space src.icon_state = "portal1" do_noeffect_teleport(M, locate(rand(5, world.maxx - 5), rand(5, world.maxy -5), 3), 0) else - do_noeffect_teleport(M, target, 1) ///You will appear adjacent to the beacon + do_noeffect_teleport(M, target, 0) ///You will appear on the beacon /obj/structure/portal_gateway name = "portal" diff --git a/code/modules/nano/interaction/base.dm b/code/modules/nano/interaction/base.dm index e48022e2cc..eb3e9ae5c1 100644 --- a/code/modules/nano/interaction/base.dm +++ b/code/modules/nano/interaction/base.dm @@ -30,7 +30,7 @@ /mob/living/silicon/robot/shared_nano_interaction() . = STATUS_INTERACTIVE - if(cell.charge <= 0) + if(!has_power) return STATUS_CLOSE if(lockdown) . = STATUS_DISABLED diff --git a/code/modules/nifsoft/software/13_soulcatcher.dm b/code/modules/nifsoft/software/13_soulcatcher.dm index 9f46eac243..48ca432420 100644 --- a/code/modules/nifsoft/software/13_soulcatcher.dm +++ b/code/modules/nifsoft/software/13_soulcatcher.dm @@ -369,7 +369,7 @@ return if (src.client) if (client.prefs.muted & MUTE_IC) - src << "You cannot send IC messages (muted)." + to_chat(src, "You cannot send IC messages (muted).") return if (stat) return diff --git a/code/modules/organs/blood.dm b/code/modules/organs/blood.dm index bb38043767..ccef2fb79c 100644 --- a/code/modules/organs/blood.dm +++ b/code/modules/organs/blood.dm @@ -97,10 +97,10 @@ var/const/CE_STABLE_THRESHOLD = 0.5 pale = 1 update_icons_body() var/word = pick("dizzy","woosey","faint") - src << "You feel [word]" + to_chat(src, "You feel [word]") if(prob(1)) var/word = pick("dizzy","woosey","faint") - src << "You feel [word]" + to_chat(src, "You feel [word]") if(getOxyLoss() < 20 * threshold_coef) adjustOxyLoss(3 * dmg_coef) else if(blood_volume >= BLOOD_VOLUME_BAD) @@ -114,13 +114,13 @@ var/const/CE_STABLE_THRESHOLD = 0.5 if(prob(15)) Paralyse(rand(1,3)) var/word = pick("dizzy","woosey","faint") - src << "You feel extremely [word]" + to_chat(src, "You feel extremely [word]") else if(blood_volume >= BLOOD_VOLUME_SURVIVE) adjustOxyLoss(5 * dmg_coef) - adjustToxLoss(3 * dmg_coef) +// adjustToxLoss(3 * dmg_coef) if(prob(15)) var/word = pick("dizzy","woosey","faint") - src << "You feel extremely [word]" + to_chat(src, "You feel extremely [word]") else //Not enough blood to survive (usually) if(!pale) pale = 1 diff --git a/code/modules/organs/internal/augment.dm b/code/modules/organs/internal/augment.dm new file mode 100644 index 0000000000..0c168d1679 --- /dev/null +++ b/code/modules/organs/internal/augment.dm @@ -0,0 +1,177 @@ +/* + * Augments. This file contains the base, and organic-targeting augments. + */ + +/obj/item/organ/internal/augment + name = "augment" + + icon_state = "cell_bay" + + parent_organ = BP_TORSO + + organ_verbs = list(/mob/living/carbon/human/proc/augment_menu) // Verbs added by the organ when present in the body. + target_parent_classes = list() // Is the parent supposed to be organic, robotic, assisted? + forgiving_class = FALSE // Will the organ give its verbs when it isn't a perfect match? I.E., assisted in organic, synthetic in organic. + + var/obj/item/integrated_object // Objects held by the organ, used for re-usable, deployable things. + var/integrated_object_type // Object type the organ will spawn. + var/target_slot = null + + var/silent_deploy = FALSE + + var/image/my_radial_icon = null + var/radial_icon = null // DMI for the augment's radial icon. + var/radial_name = null // The augment's name in the Radial Menu. + var/radial_state = null // Icon state for the augment's radial icon. + + var/aug_cooldown = 30 SECONDS + var/last_activate = null + +/obj/item/organ/internal/augment/Initialize() + ..() + + setup_radial_icon() + + if(integrated_object_type) + integrated_object = new integrated_object_type(src) + integrated_object.canremove = FALSE + +/obj/item/organ/internal/augment/proc/setup_radial_icon() + if(!radial_icon) + radial_icon = icon + if(!radial_name) + radial_name = name + if(!radial_state) + radial_state = icon_state + my_radial_icon = image(icon = radial_icon, icon_state = radial_state) + +/obj/item/organ/internal/augment/handle_organ_mod_special(var/removed = FALSE) + if(removed && integrated_object && integrated_object.loc != src) + if(isliving(integrated_object.loc)) + var/mob/living/L = integrated_object.loc + L.drop_from_inventory(integrated_object) + integrated_object.forceMove(src) + ..(removed) + +/obj/item/organ/internal/augment/proc/augment_action() + if(!owner) + return + + if(aug_cooldown) + if(last_activate <= world.time + aug_cooldown) + last_activate = world.time + else + return + + var/item_to_equip = integrated_object + if(!item_to_equip && integrated_object_type) + item_to_equip = integrated_object_type + + if(ispath(item_to_equip)) + owner.equip_augment_item(target_slot, item_to_equip, silent_deploy, FALSE) + else if(item_to_equip) + owner.equip_augment_item(target_slot, item_to_equip, silent_deploy, FALSE, src) + +/* + * The delicate handling of augment-controlled items. + */ + +// Attaches to the end of dropped items' code. + +/obj/item + var/destroy_on_drop = FALSE // Used by augments to determine if the item should destroy itself when dropped, or return to its master. + var/obj/item/organ/my_augment = null // Used to reference the object's host organ. + +/obj/item/dropped(mob/user) + . = ..() + if(src) + if(destroy_on_drop && !QDELETED(src)) + qdel(src) + return + if(my_augment) + forceMove(my_augment) + +/* + * Human-specific mob procs. + */ + +// The next two procs simply handle the radial menu for augment activation. + +/mob/living/carbon/human/proc/augment_menu() + set name = "Open Augment Menu" + set desc = "Toggle your augment menu." + set category = "Augments" + + enable_augments(usr) + +/mob/living/carbon/human/proc/enable_augments(var/mob/living/user) + var/list/options = list() + + var/list/present_augs = list() + + for(var/obj/item/organ/internal/augment/Aug in internal_organs) + if(Aug.my_radial_icon && !Aug.is_broken() && Aug.check_verb_compatability()) + present_augs[Aug.radial_name] = Aug + + for(var/augname in present_augs) + var/obj/item/organ/internal/augment/iconsource = present_augs[augname] + options[augname] = iconsource.my_radial_icon + + var/list/choice = list() + if(length(options) == 1) + for(var/key in options) + choice = key + else + choice = show_radial_menu(user, src, options) + + if(!isnull(choice) && options[choice]) + var/obj/item/organ/internal/augment/A = present_augs[choice] + A.augment_action(user) + +/* equip_augment_item + * Used to equip an organ's augment items when possible. + * slot is the target equip slot, if it's not a generic either-hand deployable, + * equipping is either the target object, or a path for the target object, + * destroy_on_drop is the default value for the object to be deleted if it is removed from their person, if equipping is a path, however, this will be set to TRUE, + * cling_to_organ is a reference to the organ object itself, so they can easily return to their organ when removed by any means. + */ + +/mob/living/carbon/human/proc/equip_augment_item(var/slot, var/obj/item/equipping = null, var/make_sound = TRUE, var/destroy_on_drop = FALSE, var/obj/item/organ/cling_to_organ = null) + if(!ishuman(src)) + return 0 + + if(!equipping) + return 0 + + var/mob/living/carbon/human/M = src + + if((slot == slot_l_hand && l_hand) || (slot == slot_r_hand && r_hand)) + to_chat(M,"Your hand is full. Drop something first.") + return 0 + + var/del_if_failure = destroy_on_drop + + if(ispath(equipping)) + del_if_failure = TRUE + equipping = new equipping(src) + + if(!slot) + put_in_any_hand_if_possible(equipping, del_if_failure) + + else + if(slot_is_accessible(slot, equipping, src)) + equip_to_slot(equipping, slot, 1, 1) + else if(destroy_on_drop || del_if_failure) + qdel(equipping) + return 0 + + if(cling_to_organ) // Does the object automatically return to the organ? + equipping.my_augment = cling_to_organ + + if(make_sound) + playsound(src, 'sound/items/change_jaws.ogg', 30, 1) + + if(equipping.loc != src) + equipping.dropped() + + return 1 diff --git a/code/modules/organs/internal/augment/armmounted.dm b/code/modules/organs/internal/augment/armmounted.dm new file mode 100644 index 0000000000..73751be0d9 --- /dev/null +++ b/code/modules/organs/internal/augment/armmounted.dm @@ -0,0 +1,262 @@ +/* + * Arm mounted augments. + */ + +/obj/item/organ/internal/augment/armmounted + name = "laser rifle implant" + desc = "A large implant that fits into a subject's arm. It deploys a laser-emitting array by some painful means." + + icon_state = "augment_laser" + + w_class = ITEMSIZE_LARGE + + organ_tag = O_AUG_L_FOREARM + + parent_organ = BP_L_ARM + + target_slot = slot_l_hand + + target_parent_classes = list(ORGAN_FLESH, ORGAN_ASSISTED) + + integrated_object_type = /obj/item/weapon/gun/energy/laser/mounted/augment + +/obj/item/organ/internal/augment/armmounted/attackby(obj/item/I as obj, mob/user as mob) + if(I.is_screwdriver()) + switch(organ_tag) + if(O_AUG_L_FOREARM) + organ_tag = O_AUG_R_FOREARM + parent_organ = BP_R_ARM + target_slot = slot_r_hand + if(O_AUG_R_FOREARM) + organ_tag = O_AUG_L_FOREARM + parent_organ = BP_L_ARM + target_slot = slot_l_hand + to_chat(user, "You swap \the [src]'s servos to install neatly into \the lower [parent_organ] mount.") + return + + . = ..() + +/obj/item/organ/internal/augment/armmounted/taser + name = "taser implant" + desc = "A large implant that fits into a subject's arm. It deploys a taser-emitting array by some painful means." + + icon_state = "augment_taser" + + integrated_object_type = /obj/item/weapon/gun/energy/taser/mounted/augment + +/obj/item/organ/internal/augment/armmounted/dartbow + name = "crossbow implant" + desc = "A small implant that fits into a subject's arm. It deploys a dart launching mechanism through the flesh through unknown means." + + icon_state = "augment_dart" + + w_class = ITEMSIZE_SMALL + + integrated_object_type = /obj/item/weapon/gun/energy/crossbow + +// Wrist-or-hand-mounted implant + +/obj/item/organ/internal/augment/armmounted/hand + name = "resonant analyzer implant" + desc = "An augment that fits neatly into the hand, useful for determining the usefulness of an object for research." + icon_state = "augment_box" + + w_class = ITEMSIZE_SMALL + + integrated_object_type = /obj/item/weapon/portable_scanner + +/obj/item/organ/internal/augment/armmounted/hand/attackby(obj/item/I as obj, mob/user as mob) + if(I.is_screwdriver()) + switch(organ_tag) + if(O_AUG_L_HAND) + organ_tag = O_AUG_R_HAND + parent_organ = BP_R_HAND + target_slot = slot_r_hand + if(O_AUG_R_HAND) + organ_tag = O_AUG_L_HAND + parent_organ = BP_L_HAND + target_slot = slot_l_hand + to_chat(user, "You swap \the [src]'s servos to install neatly into \the upper [parent_organ] mount.") + return + + . = ..() + +/obj/item/organ/internal/augment/armmounted/hand/sword + name = "energy blade implant" + + integrated_object_type = /obj/item/weapon/melee/energy/sword + +/* + * Shoulder augment. + */ + +/obj/item/organ/internal/augment/armmounted/shoulder + name = "shoulder augment" + desc = "A large implant that fits into a subject's arm. It looks kind of like a skeleton." + + icon_state = "augment_armframe" + + organ_tag = O_AUG_R_UPPERARM + + w_class = ITEMSIZE_HUGE + + integrated_object_type = null + +/obj/item/organ/internal/augment/armmounted/shoulder/attackby(obj/item/I as obj, mob/user as mob) + if(I.is_screwdriver()) + switch(organ_tag) + if(O_AUG_L_UPPERARM) + organ_tag = O_AUG_R_UPPERARM + parent_organ = BP_R_ARM + target_slot = slot_r_hand + if(O_AUG_R_UPPERARM) + organ_tag = O_AUG_L_UPPERARM + parent_organ = BP_L_ARM + target_slot = slot_l_hand + to_chat(user, "You swap \the [src]'s servos to install neatly into \the upper [parent_organ] mount.") + return + + . = ..() + +/obj/item/organ/internal/augment/armmounted/shoulder/surge + name = "muscle overclocker" + + aug_cooldown = 1.5 MINUTES + +/obj/item/organ/internal/augment/armmounted/shoulder/surge/augment_action() + if(!owner) + return + + if(aug_cooldown) + if(last_activate <= world.time + aug_cooldown) + last_activate = world.time + else + return + + if(istype(owner, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = owner + H.add_modifier(/datum/modifier/melee_surge, 0.75 MINUTES) + +// The toolkit / multi-tool implant. + +/obj/item/organ/internal/augment/armmounted/shoulder/multiple + name = "rotary toolkit" + desc = "A large implant that fits into a subject's arm. It deploys an array of tools by some painful means." + + icon_state = "augment_toolkit" + + organ_tag = O_AUG_R_UPPERARM + + w_class = ITEMSIZE_HUGE + + integrated_object_type = null + + toolspeed = 0.8 + + var/list/integrated_tools = list( + /obj/item/weapon/tool/screwdriver = null, + /obj/item/weapon/tool/wrench = null, + /obj/item/weapon/tool/crowbar = null, + /obj/item/weapon/tool/wirecutters = null, + /obj/item/device/multitool = null, + /obj/item/stack/cable_coil/gray = null, + /obj/item/weapon/tape_roll = null + ) + + var/list/integrated_tools_by_name + + var/list/integrated_tool_images + + var/list/synths + + var/list/synth_types = list( + /datum/matter_synth/wire + ) + +/obj/item/organ/internal/augment/armmounted/shoulder/multiple/Initialize() + ..() + + if(integrated_object) + integrated_tools[integrated_object_type] = integrated_object + + if(integrated_tools && integrated_tools.len) + + integrated_tools_by_name = list() + + integrated_tool_images = list() + + if(synth_types) + synths = list() + for(var/datumpath in synth_types) + var/datum/matter_synth/MS = new datumpath + synths += MS + + for(var/path in integrated_tools) + if(!integrated_tools[path]) + integrated_tools[path] = new path(src) + var/obj/item/I = integrated_tools[path] + I.canremove = FALSE + I.toolspeed = toolspeed + I.my_augment = src + I.name = "integrated [I.name]" + + for(var/tool in integrated_tools) + var/obj/item/Tool = integrated_tools[tool] + if(istype(Tool, /obj/item/stack)) + var/obj/item/stack/S = Tool + S.synths = synths + S.uses_charge = synths.len + integrated_tools_by_name[Tool.name] = Tool + integrated_tool_images[Tool.name] = image(icon = Tool.icon, icon_state = Tool.icon_state) + +/obj/item/organ/internal/augment/armmounted/shoulder/multiple/handle_organ_proc_special() + ..() + + if(!owner || is_bruised() || !synths) + return + + if(prob(20)) + for(var/datum/matter_synth/MS in synths) + MS.add_charge(MS.recharge_rate) + +/obj/item/organ/internal/augment/armmounted/shoulder/multiple/augment_action() + if(!owner) + return + + var/list/options = list() + + for(var/Iname in integrated_tools_by_name) + options[Iname] = integrated_tool_images[Iname] + + var/list/choice = list() + if(length(options) == 1) + for(var/key in options) + choice = key + else + choice = show_radial_menu(owner, owner, options) + + integrated_object = integrated_tools_by_name[choice] + + ..() + +/obj/item/organ/internal/augment/armmounted/shoulder/multiple/medical + name = "rotary medical kit" + icon_state = "augment_medkit" + integrated_object_type = null + + integrated_tools = list( + /obj/item/weapon/surgical/hemostat = null, + /obj/item/weapon/surgical/retractor = null, + /obj/item/weapon/surgical/cautery = null, + /obj/item/weapon/surgical/surgicaldrill = null, + /obj/item/weapon/surgical/scalpel = null, + /obj/item/weapon/surgical/circular_saw = null, + /obj/item/weapon/surgical/bonegel = null, + /obj/item/weapon/surgical/FixOVein = null, + /obj/item/weapon/surgical/bonesetter = null, + /obj/item/stack/medical/crude_pack = null + ) + + synth_types = list( + /datum/matter_synth/bandage + ) diff --git a/code/modules/organs/internal/bioaugment.dm b/code/modules/organs/internal/augment/bio.dm similarity index 61% rename from code/modules/organs/internal/bioaugment.dm rename to code/modules/organs/internal/augment/bio.dm index 52621e74c1..543394fcde 100644 --- a/code/modules/organs/internal/bioaugment.dm +++ b/code/modules/organs/internal/augment/bio.dm @@ -1,44 +1,18 @@ -/* - * Augments. This file contains the base, and organic-targeting augments. - */ - -/obj/item/organ/internal/augment - name = "augment" - - icon_state = "cell_bay" - - parent_organ = BP_TORSO - - organ_verbs = list() // Verbs added by the organ when present in the body. - target_parent_classes = list() // Is the parent supposed to be organic, robotic, assisted? - forgiving_class = FALSE // Will the organ give its verbs when it isn't a perfect match? I.E., assisted in organic, synthetic in organic. - - var/obj/item/integrated_object // Objects held by the organ, used for deployable things. - var/integrated_object_type // Object type the organ will spawn. - -/obj/item/organ/internal/augment/Initialize() - ..() - if(integrated_object_type) - integrated_object = new integrated_object_type(src) - integrated_object.canremove = FALSE - -/obj/item/organ/internal/augment/handle_organ_mod_special(var/removed = FALSE) - if(removed && integrated_object && integrated_object.loc != src) - if(isliving(integrated_object.loc)) - var/mob/living/L = integrated_object.loc - L.drop_from_inventory(integrated_object) - integrated_object.forceMove(src) - ..(removed) - // The base organic-targeting augment. /obj/item/organ/internal/augment/bioaugment name = "bioaugmenting implant" - robotic = ORGAN_ROBOT + icon_state = "augment_hybrid" + dead_icon = "augment_hybrid_dead" + + robotic = ORGAN_ASSISTED target_parent_classes = list(ORGAN_FLESH) -// Jensen Shades. Your vision can be augmented. +/* Jensen Shades. Your vision can be augmented. + * This, technically, no longer needs its unique organ verb, however I have chosen to leave it for posterity + * in the event it needs to be referenced, while still remaining perfectly functional with either system. + */ /obj/item/organ/internal/augment/bioaugment/thermalshades name = "integrated thermolensing implant" @@ -48,20 +22,31 @@ w_class = ITEMSIZE_TINY - organ_tag = O_AUG_TSHADE + organ_tag = O_AUG_EYES + + robotic = ORGAN_ROBOT parent_organ = BP_HEAD - organ_verbs = list(/mob/living/carbon/human/proc/toggle_shades) + organ_verbs = list( + /mob/living/carbon/human/proc/augment_menu, + /mob/living/carbon/human/proc/toggle_shades) integrated_object_type = /obj/item/clothing/glasses/hud/security/jensenshades +/obj/item/organ/internal/augment/bioaugment/thermalshades/augment_action() + if(!owner) + return + + owner.toggle_shades() + +// Here for posterity and example. /mob/living/carbon/human/proc/toggle_shades() set name = "Toggle Integrated Thermoshades" set desc = "Toggle your flash-proof, thermal-integrated sunglasses." set category = "Augments" - var/obj/item/organ/internal/augment/aug = internal_organs_by_name[O_AUG_TSHADE] + var/obj/item/organ/internal/augment/aug = internal_organs_by_name[O_AUG_EYES] if(glasses) if(aug && aug.integrated_object == glasses) @@ -90,3 +75,30 @@ var/obj/item/clothing/glasses/hud/security/jensenshades/J = new(get_turf(src)) equip_to_slot(J, slot_glasses, 1, 1) to_chat(src, "Your [aug.integrated_object] deploy.") + +/obj/item/organ/internal/augment/bioaugment/sprint_enhance + name = "locomotive optimization implant" + desc = "A chunk of meat and metal that can manage an individual's leg musculature." + + organ_tag = O_AUG_PELVIC + + parent_organ = BP_GROIN + + target_parent_classes = list(ORGAN_FLESH, ORGAN_ASSISTED) + + aug_cooldown = 2 MINUTES + +/obj/item/organ/internal/augment/bioaugment/sprint_enhance/augment_action() + if(!owner) + return + + if(aug_cooldown) + if(last_activate <= world.time + aug_cooldown) + last_activate = world.time + else + return + + if(istype(owner, /mob/living/carbon/human)) + var/mob/living/carbon/human/H = owner + H.add_modifier(/datum/modifier/sprinting, 1 MINUTES) + diff --git a/code/modules/organs/internal/brain.dm b/code/modules/organs/internal/brain.dm index 529114fc74..bb5a5cd65c 100644 --- a/code/modules/organs/internal/brain.dm +++ b/code/modules/organs/internal/brain.dm @@ -130,6 +130,11 @@ GLOBAL_LIST_BOILERPLATE(all_brain_organs, /obj/item/organ/internal/brain) target.key = brainmob.key ..() +/obj/item/organ/internal/brain/proc/get_control_efficiency() + . = max(0, 1 - (round(damage / max_damage * 10) / 10)) + + return . + /obj/item/organ/internal/brain/pariah_brain name = "brain remnants" desc = "Did someone tread on this? It looks useless for cloning or cyborgification." diff --git a/code/modules/organs/internal/heart.dm b/code/modules/organs/internal/heart.dm index b65b3bc709..62e5fd16d2 100644 --- a/code/modules/organs/internal/heart.dm +++ b/code/modules/organs/internal/heart.dm @@ -9,7 +9,6 @@ var/standard_pulse_level = PULSE_NORM // We run on a normal clock. This is NOT CONNECTED to species heart-rate modifier. - /obj/item/organ/internal/heart/handle_germ_effects() . = ..() //Up should return an infection level as an integer if(!.) return @@ -23,6 +22,10 @@ owner.custom_pain("A stabbing pain rolls through your chest!",1) owner.apply_damage(damage = 25, damagetype = HALLOSS, def_zone = parent_organ) +/obj/item/organ/internal/heart/robotize() + ..() + standard_pulse_level = PULSE_NONE + /obj/item/organ/internal/heart/grey icon_state = "heart_grey-on" dead_icon = "heart_grey-off" diff --git a/code/modules/organs/internal/intestine.dm b/code/modules/organs/internal/intestine.dm new file mode 100644 index 0000000000..ed5319fb27 --- /dev/null +++ b/code/modules/organs/internal/intestine.dm @@ -0,0 +1,23 @@ +/obj/item/organ/internal/intestine + name = "intestine" + icon_state = "intestine" + organ_tag = O_INTESTINE + parent_organ = BP_GROIN + +/obj/item/organ/internal/intestine/handle_germ_effects() + . = ..() //Up should return an infection level as an integer + if(!.) return + + //Viral Gastroenteritis + if (. >= 1) + if(prob(1)) + owner.custom_pain("There's a twisting pain in your abdomen!",1) + owner.vomit() + if (. >= 2) + if(prob(1)) + owner.custom_pain("Your abdomen feels like it's tearing itself apart!",1) + owner.m_intent = "walk" + owner.hud_used.move_intent.icon_state = "walking" + +/obj/item/organ/internal/intestine/xeno + color = "#555555" diff --git a/code/modules/organs/internal/kidneys.dm b/code/modules/organs/internal/kidneys.dm index 571fe4f9e9..2378c0fe99 100644 --- a/code/modules/organs/internal/kidneys.dm +++ b/code/modules/organs/internal/kidneys.dm @@ -22,6 +22,13 @@ else if(is_broken()) owner.adjustToxLoss(0.3 * PROCESS_ACCURACY) +/obj/item/organ/internal/kidneys/handle_organ_proc_special() + . = ..() + + if(owner && owner.getToxLoss() <= owner.getMaxHealth() * 0.1) // If you have less than 10 tox damage (for a human), your kidneys can help purge it. + if(prob(owner.getToxLoss())) + owner.adjustToxLoss(rand(-1,-3)) + /obj/item/organ/internal/kidneys/handle_germ_effects() . = ..() //Up should return an infection level as an integer if(!.) return diff --git a/code/modules/organs/internal/lungs.dm b/code/modules/organs/internal/lungs.dm index 9966e93aa7..07ef683e06 100644 --- a/code/modules/organs/internal/lungs.dm +++ b/code/modules/organs/internal/lungs.dm @@ -21,6 +21,13 @@ spawn owner.emote("me", 1, "gasps for air!") owner.AdjustLosebreath(15) + if(owner.internal_organs_by_name[O_BRAIN]) // As the brain starts having Trouble, the lungs start malfunctioning. + var/obj/item/organ/internal/brain/Brain = owner.internal_organs_by_name[O_BRAIN] + if(Brain.get_control_efficiency() <= 0.8) + if(prob(4 / max(0.1,Brain.get_control_efficiency()))) + spawn owner.emote("me", 1, "gasps for air!") + owner.AdjustLosebreath(round(3 / max(0.1,Brain.get_control_efficiency()))) + /obj/item/organ/internal/lungs/proc/rupture() var/obj/item/organ/external/parent = owner.get_organ(parent_organ) if(istype(parent)) diff --git a/code/modules/organs/internal/spleen.dm b/code/modules/organs/internal/spleen.dm new file mode 100644 index 0000000000..352a36207f --- /dev/null +++ b/code/modules/organs/internal/spleen.dm @@ -0,0 +1,87 @@ +/obj/item/organ/internal/spleen + name = "spleen" + icon_state = "spleen" + organ_tag = O_SPLEEN + parent_organ = BP_TORSO + w_class = ITEMSIZE_TINY + + var/spleen_tick = 20 // The number of ticks between Spleen cycles. + var/spleen_efficiency = 1 // A multiplier for how efficient this spleen is. + +/obj/item/organ/internal/spleen/process() + ..() + if(!owner) return + + if(owner.life_tick % spleen_tick == 0) + + //High toxins levels are dangerous + if(owner.getToxLoss() >= 30 && !owner.reagents.has_reagent("anti_toxin")) + //Healthy liver suffers on its own + if (src.damage < min_broken_damage) + src.damage += 0.2 * spleen_tick + //Damaged one shares the fun + else + var/obj/item/organ/internal/O = pick(owner.internal_organs) + if(O) + O.damage += 0.2 * spleen_tick + + else if(!src.is_broken()) // If the spleen isn't severely damaged, it can help fight infections. Key word, can. + var/obj/item/organ/external/OEx = pick(owner.organs) + OEx.adjust_germ_level(round(rand(0 * spleen_efficiency,-10 * spleen_efficiency))) + + if(!src.is_bruised() && owner.internal_organs_by_name[O_BRAIN]) // If it isn't bruised, it helps with brain infections. + var/obj/item/organ/internal/brain/B = owner.internal_organs_by_name[O_BRAIN] + B.adjust_germ_level(round(rand(-3 * spleen_efficiency, -10 * spleen_efficiency))) + + //Detox can heal small amounts of damage + if (src.damage && src.damage < src.min_bruised_damage && owner.reagents.has_reagent("anti_toxin")) + src.damage -= 0.2 * spleen_tick * spleen_efficiency + + if(src.damage < 0) + src.damage = 0 + +/obj/item/organ/internal/spleen/handle_germ_effects() + . = ..() //Up should return an infection level as an integer + if(!.) return + + // Low levels can cause pain and haemophilia, high levels can cause brain infections. + if (. >= 1) + if(prob(1)) + owner.custom_pain("There's a sharp pain in your [owner.get_organ(parent_organ)]!",1) + owner.add_modifier(/datum/modifier/trait/haemophilia, 2 MINUTES * spleen_efficiency) + if (. >= 2) + if(prob(1)) + if(owner.getToxLoss() < owner.getMaxHealth() * 0.2 * spleen_efficiency) + owner.adjustToxLoss(2 * spleen_efficiency) + else if(owner.internal_organs_by_name[O_BRAIN]) + var/obj/item/organ/internal/brain/Brain = owner.internal_organs_by_name[O_BRAIN] + Brain.adjust_germ_level(round(rand(5 * spleen_efficiency,20 * spleen_efficiency))) + +/obj/item/organ/internal/spleen/die() + ..() + if(owner) + owner.add_modifier(/datum/modifier/trait/haemophilia, round(15 MINUTES * spleen_efficiency)) + var/obj/item/organ/external/Target = owner.get_organ(parent_organ) + var/datum/wound/W = new /datum/wound/internal_bleeding(round(20 * spleen_efficiency)) + owner.adjustToxLoss(15 * spleen_efficiency) + Target.wounds += W + +/obj/item/organ/internal/spleen/skrell + name = "lymphatic hub" + icon_state = "spleen" + parent_organ = BP_HEAD + spleen_efficiency = 0.5 + +/obj/item/organ/internal/spleen/skrell/Initialize() + ..() + adjust_scale(0.8,0.7) + +/obj/item/organ/internal/spleen/minor + name = "vestigial spleen" + parent_organ = BP_GROIN + spleen_efficiency = 0.3 + spleen_tick = 15 + +/obj/item/organ/internal/spleen/minor/Initialize() + ..() + adjust_scale(0.7) diff --git a/code/modules/organs/internal/stomach.dm b/code/modules/organs/internal/stomach.dm new file mode 100644 index 0000000000..02cf7cb31d --- /dev/null +++ b/code/modules/organs/internal/stomach.dm @@ -0,0 +1,50 @@ +/obj/item/organ/internal/stomach + name = "stomach" + icon_state = "stomach" + organ_tag = O_STOMACH + parent_organ = BP_GROIN + + unacidable = TRUE // Don't melt when holding your acid, dangit. + + var/acidtype = "stomacid" // Incase you want some stomach organ with, say, polyacid instead, or sulphuric. + var/max_acid_volume = 30 + + var/deadly_hold = TRUE // Does the stomach do damage to mobs eaten by its owner? Xenos should probably have this FALSE. + +/obj/item/organ/internal/stomach/Initialize() + ..() + + if(reagents) + reagents.maximum_volume = 30 + else + create_reagents(30) + +/obj/item/organ/internal/stomach/handle_organ_proc_special() + if(owner && istype(owner, /mob/living/carbon/human)) + if(reagents) + if(reagents.total_volume + 2 < max_acid_volume && prob(20)) + reagents.add_reagent(acidtype, rand(1,2)) + + for(var/mob/living/L in owner.stomach_contents) // Splashes mobs inside with acid. Twice as effective as being splashed with the same acid outside the body. + reagents.trans_to(L, 2, 2, 0) + + if(is_broken() && prob(1)) + owner.custom_pain("There's a twisting pain in your abdomen!",1) + owner.vomit(FALSE, TRUE) + +/obj/item/organ/internal/stomach/handle_germ_effects() + . = ..() //Up should return an infection level as an integer + if(!.) return + + //Bacterial Gastroenteritis + if (. >= 1) + if(prob(1)) + owner.custom_pain("There's a twisting pain in your abdomen!",1) + owner.apply_effect(2, AGONY, 0) + if (. >= 2) + if(prob(1) && owner.getToxLoss() < owner.getMaxHealth()*0.2) + owner.adjustToxLoss(3) + owner.vomit(FALSE, TRUE) + +/obj/item/organ/internal/stomach/xeno + color = "#555555" diff --git a/code/modules/organs/internal/voicebox.dm b/code/modules/organs/internal/voicebox.dm index 4de69fe8f2..2cf264f780 100644 --- a/code/modules/organs/internal/voicebox.dm +++ b/code/modules/organs/internal/voicebox.dm @@ -1,7 +1,7 @@ /* * Voicebox/Vocal Synthesizers * TL;DR: Assists with speaking languages that a species doesn't normally have, - * such as EAL. Not standard or organic, because at the moment it's undesireable to completely mute characters. + * such as EAL. Not standard or organic, because at the moment it's undesireable to completely mute characters. - - Can now actually cause muting, if destroyed / removed. */ /obj/item/organ/internal/voicebox @@ -10,6 +10,7 @@ parent_organ = BP_TORSO // We don't have a neck area organ_tag = O_VOICE will_assist_languages = list(LANGUAGE_GALCOM) + var/mute = FALSE /obj/item/organ/internal/voicebox/New() ..() diff --git a/code/modules/organs/organ.dm b/code/modules/organs/organ.dm index 215ef65ced..b9aecbe250 100644 --- a/code/modules/organs/organ.dm +++ b/code/modules/organs/organ.dm @@ -14,6 +14,7 @@ var/list/organ_cache = list() var/vital // Lose a vital limb, die immediately. var/damage = 0 // Current damage to the organ var/robotic = 0 + var/stapled_nerves = FALSE // Reference data. var/mob/living/carbon/human/owner // Current mob owning the organ. @@ -431,6 +432,8 @@ var/list/organ_cache = list() return 0 if(robotic && robotic < ORGAN_LIFELIKE) //Super fancy humanlike robotics probably have sensors, or something? return 0 + if(stapled_nerves) + return 0 return 1 /obj/item/organ/proc/handle_organ_mod_special(var/removed = FALSE) // Called when created, transplanted, and removed. diff --git a/code/modules/organs/organ_external.dm b/code/modules/organs/organ_external.dm index c8b02f02b8..433dfae84e 100644 --- a/code/modules/organs/organ_external.dm +++ b/code/modules/organs/organ_external.dm @@ -25,6 +25,7 @@ var/burn_dam = 0 // Actual current burn damage. var/last_dam = -1 // used in healing/processing calculations. var/spread_dam = 0 + var/thick_skin = 0 // If a needle has a chance to fail to penetrate. // Appearance vars. var/nonsolid // Snowflake warning, reee. Used for slime limbs. diff --git a/code/modules/organs/robolimbs.dm b/code/modules/organs/robolimbs.dm index 8f0ef8174c..a2643f04d0 100644 --- a/code/modules/organs/robolimbs.dm +++ b/code/modules/organs/robolimbs.dm @@ -123,6 +123,12 @@ var/const/standard_monitor_styles = "blank=ipc_blank;\ icon = 'icons/mob/human_races/cyberlimbs/cybersolutions/cybersolutions_alt1.dmi' unavailable_to_build = 1 +/datum/robolimb/einstein + company = "Einstein Engines" + desc = "This limb is lightweight with a sleek design." + icon = 'icons/mob/human_races/cyberlimbs/einstein/einstein_main.dmi' + unavailable_to_build = 1 + /datum/robolimb/grayson company = "Grayson" desc = "This limb has a sturdy and heavy build to it." diff --git a/code/modules/organs/robolimbs_vr.dm b/code/modules/organs/robolimbs_vr.dm index cdf873b2ec..3a872ea690 100644 --- a/code/modules/organs/robolimbs_vr.dm +++ b/code/modules/organs/robolimbs_vr.dm @@ -46,6 +46,23 @@ icon = 'icons/obj/items_vr.dmi' icon_state = "verkdisk" + +// tucker0666 : Frost +/datum/robolimb/zenghu_frost + company = "Zeng-Hu" + desc = "This limb has realistic synthetic flesh covering with 'blue accents'." + icon = 'icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi' + blood_color = "#45ccff" + lifelike = 1 + skin_tone = 1 + unavailable_to_build = 1 + whitelisted_to = list("tucker0666") + + +/obj/item/weapon/disk/limb/zenghu_frost + company = "Zeng-Hu (Modified)" + catalogue_data = list(/datum/category_item/catalogue/information/organization/zeng_hu) + //////////////// General VS-only ones ///////////////// /datum/robolimb/talon //They're buildable by default due to being extremely basic. company = "Talon LLC" diff --git a/code/modules/organs/subtypes/indestructible.dm b/code/modules/organs/subtypes/indestructible.dm index 2f2e13400f..169b7f2c38 100644 --- a/code/modules/organs/subtypes/indestructible.dm +++ b/code/modules/organs/subtypes/indestructible.dm @@ -63,3 +63,9 @@ cannot_amputate = 1 cannot_break = 1 dislocated = -1 + +/obj/item/organ/external/head/no_eyes/indestructible + cannot_gib = 1 + cannot_amputate = 1 + cannot_break = 1 + dislocated = -1 diff --git a/code/modules/organs/subtypes/shadekin.dm b/code/modules/organs/subtypes/shadekin.dm new file mode 100644 index 0000000000..fd1dd0a8c0 --- /dev/null +++ b/code/modules/organs/subtypes/shadekin.dm @@ -0,0 +1,6 @@ +/obj/item/organ/internal/brain/shadekin + can_assist = FALSE + + var/dark_energy = 100 + var/max_dark_energy = 100 + var/dark_energy_infinite = FALSE \ No newline at end of file diff --git a/code/modules/organs/subtypes/standard_vr.dm b/code/modules/organs/subtypes/standard_vr.dm index 57e205466b..16f49361ae 100644 --- a/code/modules/organs/subtypes/standard_vr.dm +++ b/code/modules/organs/subtypes/standard_vr.dm @@ -37,7 +37,7 @@ var/icon/facial_s = new/icon("icon" = facial_hair_style.icon, "icon_state" = "[facial_hair_style.icon_state]_s") if(facial_hair_style.do_colouration) facial_s.Blend(rgb(owner.r_facial, owner.g_facial, owner.b_facial), ICON_ADD) - overlays |= facial_s + overlays |= image(facial_s, "pixel_y" = head_offset) if(owner.h_style && !(owner.head && (owner.head.flags_inv & BLOCKHEADHAIR))) var/datum/sprite_accessory/hair_style = hair_styles_list[owner.h_style] @@ -45,14 +45,26 @@ var/icon/hair_s = new/icon("icon" = hair_style.icon, "icon_state" = "[hair_style.icon_state]_s") if(hair_style.do_colouration && islist(h_col) && h_col.len >= 3) hair_s.Blend(rgb(h_col[1], h_col[2], h_col[3]), ICON_MULTIPLY) - overlays |= hair_s - + overlays |= image(hair_s, "pixel_y" = head_offset) return mob_icon /obj/item/organ/external/head/vr var/eye_icons_vr = 'icons/mob/human_face_vr.dmi' var/eye_icon_vr = "blank_eyes" + var/head_offset = 0 eye_icon = "blank_eyes" /obj/item/organ/external/head/vr/sergal eye_icon_vr = "eyes_sergal" + +/obj/item/organ/external/head/vr/werebeast + eye_icons_vr = 'icons/mob/werebeast_face_vr.dmi' + eye_icon_vr = "werebeast_eyes" + head_offset = 6 + +/obj/item/organ/external/head/vr/shadekin + cannot_gib = 1 + cannot_amputate = 1 + + eye_icons_vr = 'icons/mob/human_face_vr.dmi' + eye_icon_vr = "eyes_shadekin" diff --git a/code/modules/organs/subtypes/unathi.dm b/code/modules/organs/subtypes/unathi.dm index 212330577c..03ff671b63 100644 --- a/code/modules/organs/subtypes/unathi.dm +++ b/code/modules/organs/subtypes/unathi.dm @@ -47,4 +47,11 @@ owner.adjustToxLoss(0.3 * PROCESS_ACCURACY) /obj/item/organ/internal/brain/unathi - color = "#b3cbc3" \ No newline at end of file + color = "#b3cbc3" + +/obj/item/organ/internal/stomach/unathi + color = "#b3cbc3" + max_acid_volume = 40 + +/obj/item/organ/internal/intestine/unathi + color = "#b3cbc3" diff --git a/code/modules/organs/subtypes/xenos.dm b/code/modules/organs/subtypes/xenos.dm index dd860ab235..1c4cfa6907 100644 --- a/code/modules/organs/subtypes/xenos.dm +++ b/code/modules/organs/subtypes/xenos.dm @@ -137,3 +137,79 @@ if(ishuman(owner)) H = owner color = H.species.blood_color + + +// XENOMORPH EXTERNAL ORGANS + +/obj/item/organ/external/chest/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + thick_skin = TRUE + +/obj/item/organ/external/groin/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/arm/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/arm/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/leg/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/leg/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/foot/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/foot/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/hand/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/hand/right/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + stapled_nerves = TRUE + encased = TRUE + thick_skin = TRUE + +/obj/item/organ/external/head/unseverable/xeno + cannot_gib = 1 + cannot_amputate = 1 + thick_skin = TRUE + eye_icon = "blank_eyes" diff --git a/code/modules/planet/borealismajoris.dm b/code/modules/planet/borealismajoris.dm index 351392648c..8a32d5f05c 100644 --- a/code/modules/planet/borealismajoris.dm +++ b/code/modules/planet/borealismajoris.dm @@ -556,5 +556,4 @@ var/datum/planet/borealis2/planet_borealis2 = null if(!istype(T)) return if(T.outdoors) - radiation_repository.radiate(T, rand(fallout_rad_low, fallout_rad_high)) - + SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high)) \ No newline at end of file diff --git a/code/modules/planet/sif.dm b/code/modules/planet/sif.dm index eada6f33cb..921142812d 100644 --- a/code/modules/planet/sif.dm +++ b/code/modules/planet/sif.dm @@ -555,4 +555,4 @@ var/datum/planet/sif/planet_sif = null if(!istype(T)) return if(T.outdoors) - radiation_repository.radiate(T, rand(fallout_rad_low, fallout_rad_high)) + SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high)) diff --git a/code/modules/planet/virgo3b_vr.dm b/code/modules/planet/virgo3b_vr.dm index 1248fb40be..791841aca7 100644 --- a/code/modules/planet/virgo3b_vr.dm +++ b/code/modules/planet/virgo3b_vr.dm @@ -531,5 +531,5 @@ var/datum/planet/virgo3b/planet_virgo3b = null if(!istype(T)) return if(T.outdoors) - radiation_repository.radiate(T, rand(fallout_rad_low, fallout_rad_high)) + SSradiation.radiate(T, rand(fallout_rad_low, fallout_rad_high)) diff --git a/code/modules/power/cells/device_cells.dm b/code/modules/power/cells/device_cells.dm index f313bc8edf..b2ecbfdb98 100644 --- a/code/modules/power/cells/device_cells.dm +++ b/code/modules/power/cells/device_cells.dm @@ -13,18 +13,47 @@ matter = list("metal" = 350, "glass" = 50) preserve_item = 1 -/obj/item/weapon/cell/device/weapon - name = "weapon power cell" - desc = "A small power cell designed to power handheld weaponry." - icon_state = "wcell" +//Yawn changes +/obj/item/weapon/cell/device/weapon //Aka adv + name = "advanced device power cell" + desc = "A small upgraded power cell designed to power handheld devices." + icon_state = "acell" maxcharge = 2400 charge_amount = 20 + origin_tech = list(TECH_POWER = 2) /obj/item/weapon/cell/device/weapon/empty/Initialize() . = ..() charge = 0 update_icon() +/obj/item/weapon/cell/device/super + name = "super device power cell" + desc = "A small upgraded power cell designed to power handheld devices." + icon_state = "uscell" + maxcharge = 3600 + charge_amount = 20 + origin_tech = list(TECH_POWER = 3) + +/obj/item/weapon/cell/device/super/empty/Initialize() + . = ..() + charge = 0 + update_icon() + +/obj/item/weapon/cell/device/hyper + name = "hyper device power cell" + desc = "A small upgraded power cell designed to hold much more power for handheld devices." + icon_state = "wcell" + maxcharge = 4800 + charge_amount = 20 + origin_tech = list(TECH_POWER = 4) + +/obj/item/weapon/cell/device/hyper/empty/Initialize() + . = ..() + charge = 0 + update_icon() +//End of Yawn changes + /obj/item/weapon/cell/device/weapon/recharge name = "self-charging weapon power cell" desc = "A small power cell designed to power handheld weaponry. This one recharges itself." @@ -63,4 +92,17 @@ origin_tech = list(TECH_POWER = 8, TECH_ENGINEERING = 6) /obj/item/weapon/cell/device/weapon/recharge/alien/update_icon() - return // No overlays please. \ No newline at end of file + return // No overlays please. + +//YAWN Addtion +/obj/item/weapon/cell/device/weapon/recharge/alien/omni + name = "omni weapon power cell" + desc = "A mix between alien technology and phoron tech. Seems to fit in almost any cell slot..." + charge_amount = 90 // 5%. + maxcharge = 1800 + charge_delay = 50 SECONDS + origin_tech = list(TECH_POWER = 6, TECH_ENGINEERING = 4, TECH_PHORON = 3) + +/obj/item/weapon/cell/device/weapon/recharge/alien/omni/empty/Initialize() + . = ..() + charge = 0 diff --git a/code/modules/power/fusion/core/core_field.dm b/code/modules/power/fusion/core/core_field.dm index f0eca3add6..5444c46b03 100644 --- a/code/modules/power/fusion/core/core_field.dm +++ b/code/modules/power/fusion/core/core_field.dm @@ -313,7 +313,7 @@ radiation += plasma_temperature/2 plasma_temperature = 0 - radiation_repository.radiate(src, radiation) + SSradiation.radiate(src, radiation) Radiate() /obj/effect/fusion_em_field/proc/Radiate() @@ -522,7 +522,7 @@ //Reaction radiation is fairly buggy and there's at least three procs dealing with radiation here, this is to ensure constant radiation output. /obj/effect/fusion_em_field/proc/radiation_scale() - radiation_repository.radiate(src, 2 + plasma_temperature / PLASMA_TEMP_RADIATION_DIVISIOR) + SSradiation.radiate(src, 2 + plasma_temperature / PLASMA_TEMP_RADIATION_DIVISIOR) //Somehow fixing the radiation issue managed to break this, but moving it to it's own proc seemed to have fixed it. I don't know. /obj/effect/fusion_em_field/proc/temp_dump() diff --git a/code/modules/power/fusion/fuel_assembly/fuel_assembly.dm b/code/modules/power/fusion/fuel_assembly/fuel_assembly.dm index 4149274351..73543ead92 100644 --- a/code/modules/power/fusion/fuel_assembly/fuel_assembly.dm +++ b/code/modules/power/fusion/fuel_assembly/fuel_assembly.dm @@ -46,7 +46,7 @@ return PROCESS_KILL if(istype(loc, /turf)) - radiation_repository.radiate(src, max(1,CEILING(radioactivity/30, 1))) + SSradiation.radiate(src, max(1,CEILING(radioactivity/30, 1))) /obj/item/weapon/fuel_assembly/Destroy() STOP_PROCESSING(SSobj, src) diff --git a/code/modules/power/fusion/fusion_reactions.dm b/code/modules/power/fusion/fusion_reactions.dm index 623f70bd6b..88117f8164 100644 --- a/code/modules/power/fusion/fusion_reactions.dm +++ b/code/modules/power/fusion/fusion_reactions.dm @@ -120,7 +120,7 @@ proc/get_fusion_reaction(var/p_react, var/s_react, var/m_energy) var/radiation_level = 200 // Copied from the SM for proof of concept. //Not any more --Cirra //Use the whole z proc --Leshana - radiation_repository.z_radiate(locate(1, 1, holder.z), radiation_level, 1) + SSradiation.z_radiate(locate(1, 1, holder.z), radiation_level, 1) for(var/mob/living/mob in living_mob_list) var/turf/T = get_turf(mob) diff --git a/code/modules/power/port_gen.dm b/code/modules/power/port_gen.dm index 5e4c2e6207..2443f3ea27 100644 --- a/code/modules/power/port_gen.dm +++ b/code/modules/power/port_gen.dm @@ -399,13 +399,13 @@ /obj/machinery/power/port_gen/pacman/super/UseFuel() //produces a tiny amount of radiation when in use if (prob(2*power_output)) - radiation_repository.radiate(src, 4) + SSradiation.radiate(src, 4) ..() /obj/machinery/power/port_gen/pacman/super/explode() //a nice burst of radiation var/rads = 50 + (sheets + sheet_left)*1.5 - radiation_repository.radiate(src, (max(20, rads))) + SSradiation.radiate(src, (max(20, rads))) explosion(src.loc, 3, 3, 5, 3) qdel(src) diff --git a/code/modules/power/singularity/collector.dm b/code/modules/power/singularity/collector.dm index 0bac07c2dc..1dc29c7fd7 100644 --- a/code/modules/power/singularity/collector.dm +++ b/code/modules/power/singularity/collector.dm @@ -32,7 +32,7 @@ var/global/list/rad_collectors = list() if(P && active) - var/rads = radiation_repository.get_rads_at_turf(get_turf(src)) + var/rads = SSradiation.get_rads_at_turf(get_turf(src)) if(rads) receive_pulse(rads * 5) //Maths is hard diff --git a/code/modules/power/singularity/particle_accelerator/particle_smasher.dm b/code/modules/power/singularity/particle_accelerator/particle_smasher.dm index b3a1556395..921b000078 100644 --- a/code/modules/power/singularity/particle_accelerator/particle_smasher.dm +++ b/code/modules/power/singularity/particle_accelerator/particle_smasher.dm @@ -142,13 +142,13 @@ /obj/machinery/particle_smasher/process() if(!src.anchored) // Rapidly loses focus. if(energy) - radiation_repository.radiate(src, round(((src.energy-150)/50)*5,1)) + SSradiation.radiate(src, round(((src.energy-150)/50)*5,1)) energy = max(0, energy - 30) update_icon() return if(energy) - radiation_repository.radiate(src, round(((src.energy-150)/50)*5,1)) + SSradiation.radiate(src, round(((src.energy-150)/50)*5,1)) energy = CLAMP(energy - 5, 0, max_energy) return @@ -178,7 +178,7 @@ if(successful_craft) visible_message("\The [src] fizzles.") if(prob(33)) // Why are you blasting it after it's already done! - radiation_repository.radiate(src, 10 + round(src.energy / 60, 1)) + SSradiation.radiate(src, 10 + round(src.energy / 60, 1)) energy = max(0, energy - 30) update_icon() return diff --git a/code/modules/power/singularity/singularity.dm b/code/modules/power/singularity/singularity.dm index 3768ab9535..b75a81e1e4 100644 --- a/code/modules/power/singularity/singularity.dm +++ b/code/modules/power/singularity/singularity.dm @@ -408,7 +408,7 @@ GLOBAL_LIST_BOILERPLATE(all_singularities, /obj/singularity) if (src.energy>200) toxdamage = round(((src.energy-150)/50)*4,1) radiation = round(((src.energy-150)/50)*5,1) - radiation_repository.radiate(src, radiation) //Always radiate at max, so a decent dose of radiation is applied + SSradiation.radiate(src, radiation) //Always radiate at max, so a decent dose of radiation is applied for(var/mob/living/M in view(toxrange, src.loc)) if(M.status_flags & GODMODE) continue @@ -451,7 +451,7 @@ GLOBAL_LIST_BOILERPLATE(all_singularities, /obj/singularity) M << "You hear an uneartly ringing, then what sounds like a shrilling kettle as you are washed with a wave of heat." M << "You don't even have a moment to react as you are reduced to ashes by the intense radiation." M.dust() - radiation_repository.radiate(src, rand(energy)) + SSradiation.radiate(src, rand(energy)) return /obj/singularity/proc/pulse() diff --git a/code/modules/power/supermatter/supermatter.dm b/code/modules/power/supermatter/supermatter.dm index 10583d0d66..9e1f3f06c2 100644 --- a/code/modules/power/supermatter/supermatter.dm +++ b/code/modules/power/supermatter/supermatter.dm @@ -141,7 +141,7 @@ if(!TS) return for(var/z in GetConnectedZlevels(TS.z)) - radiation_repository.z_radiate(locate(1, 1, z), DETONATION_RADS, 1) + SSradiation.z_radiate(locate(1, 1, z), DETONATION_RADS, 1) for(var/mob/living/mob in living_mob_list) var/turf/T = get_turf(mob) if(T && (loc.z == T.z)) @@ -311,7 +311,7 @@ if(!istype(l.glasses, /obj/item/clothing/glasses/meson)) // VOREStation Edit - Only mesons can protect you! l.hallucination = max(0, min(200, l.hallucination + power * config_hallucination_power * sqrt( 1 / max(1,get_dist(l, src)) ) ) ) - radiation_repository.radiate(src, max(power * 1.5, 50) ) //Better close those shutters! + SSradiation.radiate(src, max(power * 1.5, 50) ) //Better close those shutters! power -= (power/DECAY_FACTOR)**3 //energy losses due to radiation @@ -424,7 +424,7 @@ else l.show_message("You hear an uneartly ringing and notice your skin is covered in fresh radiation burns.", 2) var/rads = 500 - radiation_repository.radiate(src, rads) + SSradiation.radiate(src, rads) /proc/supermatter_pull(var/atom/target, var/pull_range = 255, var/pull_power = STAGE_FIVE) for(var/atom/A in range(pull_range, target)) @@ -467,7 +467,7 @@ return ..() /obj/item/broken_sm/process() - radiation_repository.radiate(src, 50) + SSradiation.radiate(src, 50) /obj/item/broken_sm/Destroy() STOP_PROCESSING(SSobj, src) diff --git a/code/modules/projectiles/guns/energy.dm b/code/modules/projectiles/guns/energy.dm index d69b7c7559..c28e2b0588 100644 --- a/code/modules/projectiles/guns/energy.dm +++ b/code/modules/projectiles/guns/energy.dm @@ -1,208 +1,230 @@ -/obj/item/weapon/gun/energy - name = "energy gun" - desc = "A basic energy-based gun." - icon_state = "energy" - fire_sound_text = "laser blast" - - var/obj/item/weapon/cell/power_supply //What type of power cell this uses - var/charge_cost = 240 //How much energy is needed to fire. - - var/accept_cell_type = /obj/item/weapon/cell/device - var/cell_type = /obj/item/weapon/cell/device/weapon - projectile_type = /obj/item/projectile/beam/practice - - var/modifystate - var/charge_meter = 1 //if set, the icon state will be chosen based on the current charge - - //self-recharging - var/self_recharge = 0 //if set, the weapon will recharge itself - var/use_external_power = 0 //if set, the weapon will look for an external power source to draw from, otherwise it recharges magically - var/recharge_time = 4 - var/charge_tick = 0 - var/charge_delay = 75 //delay between firing and charging - - var/battery_lock = 0 //If set, weapon cannot switch batteries - -/obj/item/weapon/gun/energy/New() - ..() - if(self_recharge) - power_supply = new /obj/item/weapon/cell/device/weapon(src) - START_PROCESSING(SSobj, src) - else - if(cell_type) - power_supply = new cell_type(src) - else - power_supply = null - - update_icon() - -/obj/item/weapon/gun/energy/Destroy() - if(self_recharge) - STOP_PROCESSING(SSobj, src) - return ..() - -/obj/item/weapon/gun/energy/get_cell() - return power_supply - -/obj/item/weapon/gun/energy/process() - if(self_recharge) //Every [recharge_time] ticks, recharge a shot for the battery - if(world.time > last_shot + charge_delay) //Doesn't work if you've fired recently - if(!power_supply || power_supply.charge >= power_supply.maxcharge) - return 0 // check if we actually need to recharge - - charge_tick++ - if(charge_tick < recharge_time) return 0 - charge_tick = 0 - - var/rechargeamt = power_supply.maxcharge*0.2 - - if(use_external_power) - var/obj/item/weapon/cell/external = get_external_power_supply() - if(!external || !external.use(rechargeamt)) //Take power from the borg... - return 0 - - power_supply.give(rechargeamt) //... to recharge 1/5th the battery - update_icon() - else - charge_tick = 0 - return 1 - -/obj/item/weapon/gun/energy/attackby(var/obj/item/A as obj, mob/user as mob) - ..() - -/obj/item/weapon/gun/energy/switch_firemodes(mob/user) - if(..()) - update_icon() - -/obj/item/weapon/gun/energy/emp_act(severity) - ..() - update_icon() - -/obj/item/weapon/gun/energy/consume_next_projectile() - if(!power_supply) return null - if(!ispath(projectile_type)) return null - if(!power_supply.checked_use(charge_cost)) return null - return new projectile_type(src) - -/obj/item/weapon/gun/energy/proc/load_ammo(var/obj/item/C, mob/user) - if(istype(C, /obj/item/weapon/cell)) - if(self_recharge || battery_lock) - user << "[src] does not have a battery port." - return - if(istype(C, accept_cell_type)) - var/obj/item/weapon/cell/P = C - if(power_supply) - user << "[src] already has a power cell." - else - user.visible_message("[user] is reloading [src].", "You start to insert [P] into [src].") - if(do_after(user, 5 * P.w_class)) - user.remove_from_mob(P) - power_supply = P - P.loc = src - user.visible_message("[user] inserts [P] into [src].", "You insert [P] into [src].") - playsound(src.loc, 'sound/weapons/flipblade.ogg', 50, 1) - update_icon() - update_held_icon() - else - user << "This cell is not fitted for [src]." - return - -/obj/item/weapon/gun/energy/proc/unload_ammo(mob/user) - if(self_recharge || battery_lock) - user << "[src] does not have a battery port." - return - if(power_supply) - user.put_in_hands(power_supply) - power_supply.update_icon() - user.visible_message("[user] removes [power_supply] from [src].", "You remove [power_supply] from [src].") - power_supply = null - playsound(src.loc, 'sound/weapons/empty.ogg', 50, 1) - update_icon() - update_held_icon() - else - user << "[src] does not have a power cell." - -/obj/item/weapon/gun/energy/attackby(var/obj/item/A as obj, mob/user as mob) - ..() - load_ammo(A, user) - -/obj/item/weapon/gun/energy/attack_hand(mob/user as mob) - if(user.get_inactive_hand() == src) - unload_ammo(user) - else - return ..() - -/obj/item/weapon/gun/energy/proc/get_external_power_supply() - if(isrobot(src.loc)) - var/mob/living/silicon/robot/R = src.loc - return R.cell - if(istype(src.loc, /obj/item/rig_module)) - var/obj/item/rig_module/module = src.loc - if(module.holder && module.holder.wearer) - var/mob/living/carbon/human/H = module.holder.wearer - if(istype(H) && H.back) - var/obj/item/weapon/rig/suit = H.back - if(istype(suit)) - return suit.cell - return null - -/obj/item/weapon/gun/energy/examine(mob/user) - . = ..() - if(power_supply) - if(charge_cost) - var/shots_remaining = round(power_supply.charge / max(1, charge_cost)) // Paranoia - to_chat(user, "Has [shots_remaining] shot\s remaining.") - else - to_chat(user, "Has infinite shots remaining.") - else - to_chat(user, "Does not have a power cell.") - return - -/obj/item/weapon/gun/energy/update_icon(var/ignore_inhands) - if(power_supply == null) - if(modifystate) - icon_state = "[modifystate]_open" - else - icon_state = "[initial(icon_state)]_open" - return - else if(charge_meter) - var/ratio = power_supply.charge / power_supply.maxcharge - - //make sure that rounding down will not give us the empty state even if we have charge for a shot left. - if(power_supply.charge < charge_cost) - ratio = 0 - else - ratio = max(round(ratio, 0.25) * 100, 25) - - if(modifystate) - icon_state = "[modifystate][ratio]" - else - icon_state = "[initial(icon_state)][ratio]" - - else if(power_supply) - if(modifystate) - icon_state = "[modifystate]" - else - icon_state = "[initial(icon_state)]" - - if(!ignore_inhands) update_held_icon() - -/obj/item/weapon/gun/energy/proc/start_recharge() - if(power_supply == null) - power_supply = new /obj/item/weapon/cell/device/weapon(src) - self_recharge = 1 - START_PROCESSING(SSobj, src) - update_icon() - -/obj/item/weapon/gun/energy/get_description_interaction() - var/list/results = list() - - if(!battery_lock && !self_recharge) - if(power_supply) - results += "[desc_panel_image("offhand")]to remove the weapon cell." - else - results += "[desc_panel_image("weapon cell")]to add a new weapon cell." - - results += ..() - - return results \ No newline at end of file +/obj/item/weapon/gun/energy + name = "energy gun" + desc = "A basic energy-based gun." + icon_state = "energy" + fire_sound_text = "laser blast" + + var/obj/item/weapon/cell/power_supply //What type of power cell this uses + var/charge_cost = 240 //How much energy is needed to fire. + + var/accept_cell_type = /obj/item/weapon/cell/device + var/cell_type = /obj/item/weapon/cell/device/weapon + projectile_type = /obj/item/projectile/beam/practice + + var/modifystate + var/charge_meter = 1 //if set, the icon state will be chosen based on the current charge + + //self-recharging + var/self_recharge = 0 //if set, the weapon will recharge itself + var/use_external_power = 0 //if set, the weapon will look for an external power source to draw from, otherwise it recharges magically + var/use_organic_power = 0 // If set, the weapon will draw from nutrition or blood. + var/recharge_time = 4 + var/charge_tick = 0 + var/charge_delay = 75 //delay between firing and charging + + var/battery_lock = 0 //If set, weapon cannot switch batteries + +/obj/item/weapon/gun/energy/New() + ..() + if(self_recharge) + power_supply = new /obj/item/weapon/cell/device/weapon(src) + START_PROCESSING(SSobj, src) + else + if(cell_type) + power_supply = new cell_type(src) + else + power_supply = null + + update_icon() + +/obj/item/weapon/gun/energy/Destroy() + if(self_recharge) + STOP_PROCESSING(SSobj, src) + return ..() + +/obj/item/weapon/gun/energy/get_cell() + return power_supply + +/obj/item/weapon/gun/energy/process() + if(self_recharge) //Every [recharge_time] ticks, recharge a shot for the battery + if(world.time > last_shot + charge_delay) //Doesn't work if you've fired recently + if(!power_supply || power_supply.charge >= power_supply.maxcharge) + return 0 // check if we actually need to recharge + + charge_tick++ + if(charge_tick < recharge_time) return 0 + charge_tick = 0 + + var/rechargeamt = power_supply.maxcharge*0.2 + + if(use_external_power) + var/obj/item/weapon/cell/external = get_external_power_supply() + if(!external || !external.use(rechargeamt)) //Take power from the borg... + return 0 + + if(use_organic_power) + var/mob/living/carbon/human/H + if(ishuman(loc)) + H = loc + + if(istype(loc, /obj/item/organ)) + var/obj/item/organ/O = loc + if(O.owner) + H = O.owner + + if(istype(H)) + var/start_nutrition = H.nutrition + var/end_nutrition = 0 + + H.nutrition -= rechargeamt / 10 + + end_nutrition = H.nutrition + + if(start_nutrition - max(0, end_nutrition) < rechargeamt / 10) + H.remove_blood((rechargeamt / 10) - (start_nutrition - max(0, end_nutrition))) + + power_supply.give(rechargeamt) //... to recharge 1/5th the battery + update_icon() + else + charge_tick = 0 + return 1 + +/obj/item/weapon/gun/energy/attackby(var/obj/item/A as obj, mob/user as mob) + ..() + +/obj/item/weapon/gun/energy/switch_firemodes(mob/user) + if(..()) + update_icon() + +/obj/item/weapon/gun/energy/emp_act(severity) + ..() + update_icon() + +/obj/item/weapon/gun/energy/consume_next_projectile() + if(!power_supply) return null + if(!ispath(projectile_type)) return null + if(!power_supply.checked_use(charge_cost)) return null + return new projectile_type(src) + +/obj/item/weapon/gun/energy/proc/load_ammo(var/obj/item/C, mob/user) + if(istype(C, /obj/item/weapon/cell)) + if(self_recharge || battery_lock) + user << "[src] does not have a battery port." + return + if(istype(C, accept_cell_type)) + var/obj/item/weapon/cell/P = C + if(power_supply) + user << "[src] already has a power cell." + else + user.visible_message("[user] is reloading [src].", "You start to insert [P] into [src].") + if(do_after(user, 5 * P.w_class)) + user.remove_from_mob(P) + power_supply = P + P.loc = src + user.visible_message("[user] inserts [P] into [src].", "You insert [P] into [src].") + playsound(src.loc, 'sound/weapons/flipblade.ogg', 50, 1) + update_icon() + update_held_icon() + else + user << "This cell is not fitted for [src]." + return + +/obj/item/weapon/gun/energy/proc/unload_ammo(mob/user) + if(self_recharge || battery_lock) + user << "[src] does not have a battery port." + return + if(power_supply) + user.put_in_hands(power_supply) + power_supply.update_icon() + user.visible_message("[user] removes [power_supply] from [src].", "You remove [power_supply] from [src].") + power_supply = null + playsound(src.loc, 'sound/weapons/empty.ogg', 50, 1) + update_icon() + update_held_icon() + else + user << "[src] does not have a power cell." + +/obj/item/weapon/gun/energy/attackby(var/obj/item/A as obj, mob/user as mob) + ..() + load_ammo(A, user) + +/obj/item/weapon/gun/energy/attack_hand(mob/user as mob) + if(user.get_inactive_hand() == src) + unload_ammo(user) + else + return ..() + +/obj/item/weapon/gun/energy/proc/get_external_power_supply() + if(isrobot(src.loc)) + var/mob/living/silicon/robot/R = src.loc + return R.cell + if(istype(src.loc, /obj/item/rig_module)) + var/obj/item/rig_module/module = src.loc + if(module.holder && module.holder.wearer) + var/mob/living/carbon/human/H = module.holder.wearer + if(istype(H) && H.back) + var/obj/item/weapon/rig/suit = H.back + if(istype(suit)) + return suit.cell + return null + +/obj/item/weapon/gun/energy/examine(mob/user) + . = ..() + if(power_supply) + if(charge_cost) + var/shots_remaining = round(power_supply.charge / max(1, charge_cost)) // Paranoia + to_chat(user, "Has [shots_remaining] shot\s remaining.") + else + to_chat(user, "Has infinite shots remaining.") + else + to_chat(user, "Does not have a power cell.") + return + +/obj/item/weapon/gun/energy/update_icon(var/ignore_inhands) + if(power_supply == null) + if(modifystate) + icon_state = "[modifystate]_open" + else + icon_state = "[initial(icon_state)]_open" + return + else if(charge_meter) + var/ratio = power_supply.charge / power_supply.maxcharge + + //make sure that rounding down will not give us the empty state even if we have charge for a shot left. + if(power_supply.charge < charge_cost) + ratio = 0 + else + ratio = max(round(ratio, 0.25) * 100, 25) + + if(modifystate) + icon_state = "[modifystate][ratio]" + else + icon_state = "[initial(icon_state)][ratio]" + + else if(power_supply) + if(modifystate) + icon_state = "[modifystate]" + else + icon_state = "[initial(icon_state)]" + + if(!ignore_inhands) update_held_icon() + +/obj/item/weapon/gun/energy/proc/start_recharge() + if(power_supply == null) + power_supply = new /obj/item/weapon/cell/device/weapon(src) + self_recharge = 1 + START_PROCESSING(SSobj, src) + update_icon() + +/obj/item/weapon/gun/energy/get_description_interaction() + var/list/results = list() + + if(!battery_lock && !self_recharge) + if(power_supply) + results += "[desc_panel_image("offhand")]to remove the weapon cell." + else + results += "[desc_panel_image("weapon cell")]to add a new weapon cell." + + results += ..() + + return results diff --git a/code/modules/projectiles/guns/energy/laser.dm b/code/modules/projectiles/guns/energy/laser.dm index eeb8d779d2..f6321947b2 100644 --- a/code/modules/projectiles/guns/energy/laser.dm +++ b/code/modules/projectiles/guns/energy/laser.dm @@ -24,6 +24,11 @@ use_external_power = 1 one_handed_penalty = 0 // Not sure if two-handing gets checked for mounted weapons, but better safe than sorry. +/obj/item/weapon/gun/energy/laser/mounted/augment + use_external_power = FALSE + use_organic_power = TRUE + canremove = FALSE + /obj/item/weapon/gun/energy/laser/practice name = "practice laser carbine" desc = "A modified version of the HI G40E, this one fires less concentrated energy bolts designed for target practice." diff --git a/code/modules/projectiles/guns/energy/stun.dm b/code/modules/projectiles/guns/energy/stun.dm index a23cf5bb4b..4240abe9e3 100644 --- a/code/modules/projectiles/guns/energy/stun.dm +++ b/code/modules/projectiles/guns/energy/stun.dm @@ -11,6 +11,12 @@ self_recharge = 1 use_external_power = 1 +/obj/item/weapon/gun/energy/taser/mounted/augment + self_recharge = 1 + use_external_power = 0 + use_organic_power = TRUE + canremove = FALSE + /obj/item/weapon/gun/energy/taser/mounted/cyborg name = "taser gun" charge_cost = 400 diff --git a/code/modules/projectiles/guns/magnetic/bore.dm b/code/modules/projectiles/guns/magnetic/bore.dm index e27fdc38d6..4cb86a6d31 100644 --- a/code/modules/projectiles/guns/magnetic/bore.dm +++ b/code/modules/projectiles/guns/magnetic/bore.dm @@ -86,7 +86,17 @@ user.visible_message("\The [user] slots \the [cell] into \the [src].") update_icon() return - + if(thing.is_crowbar()) + if(!manipulator) + to_chat(user, "\The [src] has no manipulator installed.") + return + manipulator.forceMove(get_turf(src)) + user.put_in_hands(manipulator) + user.visible_message("\The [user] levers \the [manipulator] from \the [src].") + playsound(loc, 'sound/items/Crowbar.ogg', 50, 1) + manipulator = null + update_icon() + return if(thing.is_screwdriver()) if(!capacitor) to_chat(user, "\The [src] has no capacitor installed.") @@ -112,6 +122,20 @@ update_icon() return + if(istype(thing, /obj/item/weapon/stock_parts/manipulator)) + if(manipulator) + to_chat(user, "\The [src] already has \a [manipulator] installed.") + return + manipulator = thing + user.drop_from_inventory(manipulator) + manipulator.forceMove(src) + playsound(loc, 'sound/machines/click.ogg', 10,1) + mat_cost = initial(mat_cost) % (2*manipulator.rating) + user.visible_message("\The [user] slots \the [manipulator] into \the [src].") + update_icon() + return + + if(istype(thing, load_type)) loading = TRUE var/obj/item/stack/material/M = thing diff --git a/code/modules/projectiles/guns/magnetic/magnetic.dm b/code/modules/projectiles/guns/magnetic/magnetic.dm index 20e0ea8512..c327a2b51e 100644 --- a/code/modules/projectiles/guns/magnetic/magnetic.dm +++ b/code/modules/projectiles/guns/magnetic/magnetic.dm @@ -10,6 +10,7 @@ var/obj/item/weapon/cell/cell // Currently installed powercell. var/obj/item/weapon/stock_parts/capacitor/capacitor // Installed capacitor. Higher rating == faster charge between shots. + var/obj/item/weapon/stock_parts/manipulator/manipulator // Installed manipulator. Mostly for Phoron Bore, higher rating == less mats consumed upon firing var/removable_components = TRUE // Whether or not the gun can be dismantled. var/gun_unreliable = 15 // Percentage chance of detonating in your hands. diff --git a/code/modules/projectiles/projectile.dm b/code/modules/projectiles/projectile.dm index f3603a783d..b3b70aa7af 100644 --- a/code/modules/projectiles/projectile.dm +++ b/code/modules/projectiles/projectile.dm @@ -219,6 +219,12 @@ Range() /obj/item/projectile/Crossed(atom/movable/AM) //A mob moving on a tile with a projectile is hit by it. + //VOREStation Edit begin: SHADEKIN + var/mob/SK = AM + if(istype(SK)) + if(SK.shadekin_phasing_check()) + return + //VOREStation Edit end: SHADEKIN ..() if(isliving(AM) && !(pass_flags & PASSMOB)) var/mob/living/L = AM diff --git a/code/modules/projectiles/projectile/arc.dm b/code/modules/projectiles/projectile/arc.dm index 0c4c9f4caa..1f19dc0242 100644 --- a/code/modules/projectiles/projectile/arc.dm +++ b/code/modules/projectiles/projectile/arc.dm @@ -167,4 +167,4 @@ var/rad_power = 50 /obj/item/projectile/arc/radioactive/on_impact(turf/T) - radiation_repository.radiate(T, rad_power) + SSradiation.radiate(T, rad_power) diff --git a/code/modules/projectiles/targeting/targeting_mob.dm b/code/modules/projectiles/targeting/targeting_mob.dm index 765b59b478..1f2921354b 100644 --- a/code/modules/projectiles/targeting/targeting_mob.dm +++ b/code/modules/projectiles/targeting/targeting_mob.dm @@ -12,7 +12,7 @@ M.aiming = new(src) M.aiming.toggle_active() else - src << "This verb may only be used by living mobs, sorry." + to_chat(src, "This verb may only be used by living mobs, sorry.") return /mob/living/proc/stop_aiming(var/obj/item/thing, var/no_message = 0) diff --git a/code/modules/radiation/radiation.dm b/code/modules/radiation/radiation.dm new file mode 100644 index 0000000000..d913ad7cab --- /dev/null +++ b/code/modules/radiation/radiation.dm @@ -0,0 +1,59 @@ +// Describes a point source of radiation. Created either in response to a pulse of radiation, or over an irradiated atom. +// Sources will decay over time, unless something is renewing their power! +/datum/radiation_source + var/turf/source_turf // Location of the radiation source. + var/rad_power // Strength of the radiation being emitted. + var/decay = TRUE // True for automatic decay. False if owner promises to handle it (i.e. supermatter) + var/respect_maint = FALSE // True for not affecting RAD_SHIELDED areas. + var/flat = FALSE // True for power falloff with distance. + var/range // Cached maximum range, used for quick checks against mobs. + +/datum/radiation_source/Destroy() + SSradiation.sources -= src + if(SSradiation.sources_assoc[src.source_turf] == src) + SSradiation.sources_assoc -= src.source_turf + src.source_turf = null + . = ..() + +/datum/radiation_source/proc/update_rad_power(var/new_power = null) + if(new_power == null || new_power == rad_power) + return // No change + else if(new_power <= config.radiation_lower_limit) + qdel(src) // Decayed to nothing + else + rad_power = new_power + if(!flat) + range = min(round(sqrt(rad_power / config.radiation_lower_limit)), 31) // R = rad_power / dist**2 - Solve for dist + +/turf + var/cached_rad_resistance = 0 + +/turf/proc/calc_rad_resistance() + cached_rad_resistance = 0 + for(var/obj/O in src.contents) + if(O.rad_resistance) //Override + cached_rad_resistance += O.rad_resistance + + else if(O.density) //So open doors don't get counted + var/material/M = O.get_material() + if(!M) continue + cached_rad_resistance += M.weight + M.radiation_resistance + // Looks like storing the contents length is meant to be a basic check if the cache is stale due to items enter/exiting. Better than nothing so I'm leaving it as is. ~Leshana + SSradiation.resistance_cache[src] = (length(contents) + 1) + +/turf/simulated/wall/calc_rad_resistance() + SSradiation.resistance_cache[src] = (length(contents) + 1) + cached_rad_resistance = (density ? material.weight + material.radiation_resistance : 0) + +/obj + var/rad_resistance = 0 // Allow overriding rad resistance + +// If people expand the system, this may be useful. Here as a placeholder until then +/atom/proc/rad_act(var/severity) + return 1 + +/mob/living/rad_act(var/severity) + if(severity && !isbelly(loc)) //eaten mobs are made immune to radiation //VOREStation Edit + src.apply_effect(severity, IRRADIATE, src.getarmor(null, "rad")) + for(var/atom/I in src) + I.rad_act(severity) \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index a388f8e492..1e46a5870a 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -20,6 +20,7 @@ var/max_dose = 0 var/overdose = 0 //Amount at which overdose starts var/overdose_mod = 2 //Modifier to overdose damage + var/can_overdose_touch = FALSE // Can the chemical OD when processing on touch? var/scannable = 0 // Shows up on health analyzers. var/affects_dead = 0 var/cup_icon_state = null @@ -60,19 +61,25 @@ var/datum/reagents/metabolism/active_metab = location var/removed = metabolism + var/ingest_rem_mult = 1 + var/ingest_abs_mult = 1 + if(!mrate_static == TRUE) // Modifiers for(var/datum/modifier/mod in M.modifiers) if(!isnull(mod.metabolism_percent)) removed *= mod.metabolism_percent + ingest_rem_mult *= mod.metabolism_percent // Species removed *= M.species.metabolic_rate + ingest_rem_mult *= M.species.metabolic_rate // Metabolism removed *= active_metab.metabolism_speed + ingest_rem_mult *= active_metab.metabolism_speed if(ishuman(M)) var/mob/living/carbon/human/H = M - if(H.species.has_organ[O_HEART]) + if(H.species.has_organ[O_HEART] && (active_metab.metabolism_class == CHEM_BLOOD)) var/obj/item/organ/internal/heart/Pump = H.internal_organs_by_name[O_HEART] if(!Pump) removed *= 0.1 @@ -80,14 +87,31 @@ removed *= 0.8 else // Otherwise, chemicals process as per percentage of your current pulse, or, if you have no pulse but are alive, by a miniscule amount. removed *= max(0.1, H.pulse / Pump.standard_pulse_level) + + if(H.species.has_organ[O_STOMACH] && (active_metab.metabolism_class == CHEM_INGEST)) + var/obj/item/organ/internal/stomach/Chamber = H.internal_organs_by_name[O_STOMACH] + if(Chamber) + ingest_rem_mult *= max(0.1, 1 - (Chamber.damage / Chamber.max_damage)) + else + ingest_rem_mult = 0.1 + + if(H.species.has_organ[O_INTESTINE] && (active_metab.metabolism_class == CHEM_INGEST)) + var/obj/item/organ/internal/intestine/Tube = H.internal_organs_by_name[O_INTESTINE] + if(Tube) + ingest_abs_mult *= max(0.1, 1 - (Tube.damage / Tube.max_damage)) + else + ingest_abs_mult = 0.1 + if(filtered_organs && filtered_organs.len) for(var/organ_tag in filtered_organs) var/obj/item/organ/internal/O = H.internal_organs_by_name[organ_tag] if(O && !O.is_broken() && prob(max(0, O.max_damage - O.damage))) removed *= 0.8 + if(active_metab.metabolism_class == CHEM_INGEST) + ingest_rem_mult *= 0.8 if(ingest_met && (active_metab.metabolism_class == CHEM_INGEST)) - removed = ingest_met + removed = ingest_met * ingest_rem_mult if(touch_met && (active_metab.metabolism_class == CHEM_TOUCH)) removed = touch_met removed = min(removed, volume) @@ -98,10 +122,10 @@ if(CHEM_BLOOD) affect_blood(M, alien, removed) if(CHEM_INGEST) - affect_ingest(M, alien, removed) + affect_ingest(M, alien, removed * ingest_abs_mult) if(CHEM_TOUCH) affect_touch(M, alien, removed) - if(overdose && (volume > overdose) && (active_metab.metabolism_class != CHEM_TOUCH)) + if(overdose && (volume > overdose) && (active_metab.metabolism_class != CHEM_TOUCH && !can_overdose_touch)) overdose(M, alien, removed) remove_self(removed) return diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm index f96d53aaac..0171551226 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Dispenser.dm @@ -7,6 +7,15 @@ reagent_state = SOLID color = "#A8A8A8" +/datum/reagent/calcium + name = "Calcium" + id = "calcium" + description = "A chemical element, the building block of bones." + taste_description = "metallic chalk" // Apparently, calcium tastes like calcium. + taste_mult = 1.3 + reagent_state = SOLID + color = "#e9e6e4" + /datum/reagent/carbon name = "Carbon" id = "carbon" diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm index 48afe19b7e..b077dd52c1 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks.dm @@ -68,17 +68,16 @@ switch(alien) if(IS_SKRELL) M.adjustToxLoss(0.5 * removed) - return if(IS_TESHARI) ..(M, alien, removed*1.2) // Teshari get a bit more nutrition from meat. - return if(IS_UNATHI) ..(M, alien, removed*2.25) //Unathi get most of their nutrition from meat. //VOREStation Edit Start if(IS_CHIMERA) ..(M, alien, removed*4) //Xenochimera are obligate carnivores. //VOREStation Edit End - ..() + else + ..() /datum/reagent/nutriment/protein/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien && alien == IS_SKRELL) diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm index b904067813..5d7fc8992e 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Food-Drinks_vr.dm @@ -37,6 +37,8 @@ strength = 50 color = "#d3785d" metabolism = REM * 2.5 // about right for mixing nutriment and ethanol. + var/alt_nutriment_factor = 5 //half as much as protein since it's half protein. + //using a new variable instead of nutriment_factor so we can call ..() without that adding nutrition for us without taking factors for protein into account glass_name = "Monster Tamer" glass_desc = "This looks like a vaguely-alcoholic slurry of meat. Gross." @@ -45,7 +47,18 @@ ..() if(M.species.gets_food_nutrition) //it's still food! - M.nutrition += (nutriment_factor * removed)/2 // For hunger and fatness + switch(alien) + if(IS_DIONA) //Diona don't get any nutrition from nutriment or protein. + if(IS_SKRELL) + M.adjustToxLoss(0.25 * removed) //Equivalent to half as much protein, since it's half protein. + if(IS_TESHARI) + M.nutrition += (alt_nutriment_factor * 1.2 * removed) //Give them the same nutrition they would get from protein. + if(IS_UNATHI) + M.nutrition += (alt_nutriment_factor * 1.125 * removed) //Give them the same nutrition they would get from protein. + //Takes into account the 0.5 factor for all nutriment which is applied on top of the 2.25 factor for protein. + //Chimera don't need their own case here since their factors for nutriment and protein cancel out. + else + M.nutrition += (alt_nutriment_factor * removed) if(ishuman(M)) var/mob/living/carbon/human/H = M if(H.feral > 0 && H.nutrition > 100 && H.traumatic_shock < min(60, H.nutrition/10) && H.jitteriness < 100) // same check as feral triggers to stop them immediately re-feralling @@ -54,3 +67,11 @@ H.feral = 0 H << "Your mind starts to clear, soothed into a state of clarity as your senses return." log_and_message_admins("is no longer feral.", H) + +/datum/reagent/ethanol/monstertamer/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_SKRELL) + M.adjustToxLoss(removed) //Equivalent to half as much protein, since it's half protein. + if(M.species.gets_food_nutrition) + if(alien == IS_SLIME || alien == IS_CHIMERA) //slimes and chimera can get nutrition from injected nutriment and protein + M.nutrition += (alt_nutriment_factor * removed) \ No newline at end of file diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm index 94495648c9..a3239678a3 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Medicine.dm @@ -27,6 +27,7 @@ metabolism = REM * 0.5 scannable = 1 touch_met = REM * 0.75 + can_overdose_touch = TRUE /datum/reagent/inaprovaline/topical/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien != IS_DIONA) @@ -84,6 +85,7 @@ overdose = REAGENTS_OVERDOSE * 0.75 scannable = 1 touch_met = REM * 0.75 + can_overdose_touch = TRUE /datum/reagent/bicaridine/topical/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) var/chem_effective = 1 @@ -100,6 +102,25 @@ if(alien != IS_DIONA) M.heal_organ_damage(6 * removed * chem_effective, 0) +/datum/reagent/calciumcarbonate + name = "calcium carbonate" + id = "calciumcarbonate" + description = "Calcium carbonate is a calcium salt commonly used as an antacid." + taste_description = "chalk" + reagent_state = SOLID + color = "#eae6e3" + overdose = REAGENTS_OVERDOSE * 0.8 + metabolism = REM * 0.4 + scannable = 1 + +/datum/reagent/calciumcarbonate/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) // Why would you inject this. + if(alien != IS_DIONA) + M.adjustToxLoss(3 * removed) + +/datum/reagent/calciumcarbonate/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + if(alien != IS_DIONA) + M.add_chemical_effect(CE_ANTACID, 3) + /datum/reagent/kelotane name = "Kelotane" id = "kelotane" @@ -147,6 +168,7 @@ overdose = REAGENTS_OVERDOSE * 0.4 scannable = 1 touch_met = REM * 0.75 + can_overdose_touch = TRUE /datum/reagent/dermaline/topical/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) var/chem_effective = 1 @@ -283,6 +305,42 @@ if(alien != IS_DIONA) affect_blood(M, alien, removed * 0.4) +/datum/reagent/tricorlidaze + name = "Tricorlidaze" + id = "tricorlidaze" + description = "Tricorlidaze is a topical gel produced with tricordrazine and sterilizine." + taste_description = "bitterness" + reagent_state = SOLID + color = "#B060FF" + scannable = 1 + can_overdose_touch = TRUE + +/datum/reagent/tricorlidaze/affect_touch(var/mob/living/carbon/M, var/alien, var/removed) + if(alien != IS_DIONA) + var/chem_effective = 1 + if(alien == IS_SLIME) + chem_effective = 0.5 + M.adjustOxyLoss(-2 * removed * chem_effective) + M.heal_organ_damage(1 * removed, 1 * removed * chem_effective) + M.adjustToxLoss(-2 * removed * chem_effective) + +/datum/reagent/tricorlidaze/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + if(alien != IS_DIONA) + M.adjustToxLoss(3 * removed) + affect_blood(M, alien, removed * 0.4) + +/datum/reagent/tricorlidaze/touch_obj(var/obj/O) + if(istype(O, /obj/item/stack/medical/bruise_pack) && round(volume) >= 5) + var/obj/item/stack/medical/bruise_pack/C = O + var/packname = C.name + var/to_produce = min(C.amount, round(volume / 5)) + + var/obj/item/stack/medical/M = C.upgrade_stack(to_produce) + + if(M && M.amount) + holder.my_atom.visible_message("\The [packname] bubbles.") + remove_self(to_produce * 5) + /datum/reagent/cryoxadone name = "Cryoxadone" id = "cryoxadone" @@ -334,6 +392,40 @@ M.heal_organ_damage(30 * removed, 30 * removed * chem_effective) M.adjustToxLoss(-30 * removed * chem_effective) +/datum/reagent/necroxadone + name = "Necroxadone" + id = "necroxadone" + description = "A liquid compound based upon that which is used in the cloning process. Utilized primarily in severe cases of toxic shock." + taste_description = "meat" + reagent_state = LIQUID + color = "#94B21C" + metabolism = REM * 0.5 + mrate_static = TRUE + scannable = 1 + +/datum/reagent/necroxadone/on_mob_life(var/mob/living/carbon/M, var/alien, var/datum/reagents/metabolism/location) + if(M.stat == DEAD && M.has_modifier_of_type(/datum/modifier/bloodpump_corpse)) + affects_dead = TRUE + else + affects_dead = FALSE + + . = ..(M, alien, location) + +/datum/reagent/necroxadone/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + if(M.bodytemperature < 170 || (M.stat == DEAD && M.has_modifier_of_type(/datum/modifier/bloodpump_corpse))) + var/chem_effective = 1 + if(alien == IS_SLIME) + if(prob(10)) + to_chat(M, "It's so cold. Something causes your cellular mass to harden sporadically, resulting in seizure-like twitching.") + chem_effective = 0.5 + M.Weaken(20) + M.silent = max(M.silent, 20) + M.make_jittery(4) + if(M.stat != DEAD) + M.adjustCloneLoss(-5 * removed * chem_effective) + M.adjustOxyLoss(-20 * removed * chem_effective) + M.adjustToxLoss(-40 * removed * chem_effective) + /* Painkillers */ /datum/reagent/paracetamol @@ -637,7 +729,7 @@ if(ishuman(M)) var/mob/living/carbon/human/H = M for(var/obj/item/organ/I in H.internal_organs) - if(I.robotic >= ORGAN_ROBOT || !(I.organ_tag in list(O_APPENDIX, O_NUTRIENT, O_PLASMA, O_POLYP))) + if(I.robotic >= ORGAN_ROBOT || !(I.organ_tag in list(O_APPENDIX, O_STOMACH, O_INTESTINE, O_NUTRIENT, O_PLASMA, O_POLYP))) continue if(I.damage > 0) I.damage = max(I.damage - 4 * removed * repair_strength, 0) @@ -701,7 +793,7 @@ if(ishuman(M)) var/mob/living/carbon/human/H = M for(var/obj/item/organ/I in H.internal_organs) - if(I.robotic >= ORGAN_ROBOT || !(I.organ_tag in list(O_HEART, O_RESPONSE, O_ANCHOR, O_EGG))) + if(I.robotic >= ORGAN_ROBOT || !(I.organ_tag in list(O_HEART, O_SPLEEN, O_RESPONSE, O_ANCHOR, O_EGG))) continue if(I.damage > 0) I.damage = max(I.damage - 4 * removed * repair_strength, 0) @@ -895,11 +987,11 @@ if(M.ingested) for(var/datum/reagent/R in M.ingested.reagent_list) if(istype(R, /datum/reagent/ethanol)) - R.remove_self(removed * 5) + R.remove_self(removed * 30) if(M.bloodstr) for(var/datum/reagent/R in M.bloodstr.reagent_list) if(istype(R, /datum/reagent/ethanol)) - R.remove_self(removed * 15) + R.remove_self(removed * 20) /datum/reagent/hyronalin name = "Hyronalin" @@ -1032,6 +1124,54 @@ var/obj/item/organ/external/eo = pick(H.organs) //Misleading variable name, 'organs' is only external organs eo.fracture() +/datum/reagent/spacomycaze + name = "Spacomycaze" + id = "spacomycaze" + description = "An all-purpose painkilling antibiotic gel." + taste_description = "oil" + reagent_state = SOLID + color = "#C1C1C8" + metabolism = REM * 0.4 + mrate_static = TRUE + overdose = REAGENTS_OVERDOSE + scannable = 1 + data = 0 + can_overdose_touch = TRUE + +/datum/reagent/spacomycaze/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) + M.add_chemical_effect(CE_PAINKILLER, 10) + M.adjustToxLoss(3 * removed) + +/datum/reagent/spacomycaze/affect_ingest(var/mob/living/carbon/M, var/alien, var/removed) + affect_blood(M, alien, removed * 0.8) + +/datum/reagent/spacomycaze/affect_touch(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_SLIME) + if(volume <= 0.1 && data != -1) + data = -1 + to_chat(M, "The itching fades...") + else + var/delay = (2 MINUTES) + if(world.time > data + delay) + data = world.time + to_chat(M, "Your skin itches.") + + M.add_chemical_effect(CE_ANTIBIOTIC, dose >= overdose ? ANTIBIO_OD : ANTIBIO_NORM) + M.add_chemical_effect(CE_PAINKILLER, 20) // 5 less than paracetamol. + +/datum/reagent/spacomycaze/touch_obj(var/obj/O) + if(istype(O, /obj/item/stack/medical/crude_pack) && round(volume) >= 1) + var/obj/item/stack/medical/crude_pack/C = O + var/packname = C.name + var/to_produce = min(C.amount, round(volume)) + + var/obj/item/stack/medical/M = C.upgrade_stack(to_produce) + + if(M && M.amount) + holder.my_atom.visible_message("\The [packname] bubbles.") + remove_self(to_produce) + /datum/reagent/sterilizine name = "Sterilizine" id = "sterilizine" diff --git a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm index 38a65a78d8..971a54bff2 100644 --- a/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm +++ b/code/modules/reagents/Chemistry-Reagents/Chemistry-Reagents-Toxins.dm @@ -191,6 +191,7 @@ taste_description = "bitterness" reagent_state = LIQUID strength = 5 + filtered_organs = list(O_SPLEEN) /datum/reagent/toxin/expired_medicine/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -232,6 +233,7 @@ color = "#FFFFFF" strength = 0 overdose = REAGENTS_OVERDOSE + filtered_organs = list(O_SPLEEN, O_KIDNEYS) /datum/reagent/toxin/potassium_chloride/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -257,6 +259,7 @@ color = "#FFFFFF" strength = 10 overdose = 20 + filtered_organs = list(O_SPLEEN, O_KIDNEYS) /datum/reagent/toxin/potassium_chlorophoride/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) ..() @@ -297,6 +300,35 @@ M.status_flags &= ~FAKEDEATH return ..() +/datum/reagent/toxin/lichpowder + name = "Lich Powder" + id = "lichpowder" + description = "A stablized nerve agent that puts the subject into a strange state of un-death." + reagent_state = SOLID + color = "#666666" + metabolism = REM * 0.75 + strength = 2 + mrate_static = TRUE + +/datum/reagent/toxin/lichpowder/affect_touch(var/mob/living/carbon/M, var/alien, var/removed) + ..() + if(alien == IS_DIONA) + return + M.status_flags |= FAKEDEATH + M.adjustOxyLoss(1 * removed) + M.silent = max(M.silent, 10) + M.tod = stationtime2text() + + if(prob(1)) + M.visible_message("[M] wheezes.", "You wheeze sharply... it's cold.") + M.bodytemperature = max(M.bodytemperature - 10 * TEMPERATURE_DAMAGE_COEFFICIENT, T0C - 10) + +/datum/reagent/toxin/lichpowder/Destroy() + if(holder && holder.my_atom && ismob(holder.my_atom)) + var/mob/M = holder.my_atom + M.status_flags &= ~FAKEDEATH + return ..() + /datum/reagent/toxin/fertilizer //Reagents used for plant fertilizers. name = "fertilizer" id = "fertilizer" @@ -392,6 +424,16 @@ power = 10 meltdose = 4 +/datum/reagent/acid/digestive + name = "Digestive acid" + id = "stomacid" + description = "Some form of digestive slurry." + taste_description = "vomit" + reagent_state = LIQUID + color = "#664330" + power = 2 + meltdose = 30 + /datum/reagent/thermite/venom name = "Pyrotoxin" id = "thermite_v" @@ -420,6 +462,7 @@ description = "A biological agent that acts similarly to pepperspray. This compound seems to be particularly cruel, however, capable of permeating the barriers of blood vessels." taste_description = "fire" color = "#B31008" + filtered_organs = list(O_SPLEEN) /datum/reagent/condensedcapsaicin/venom/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_DIONA) @@ -718,6 +761,7 @@ id = "serotrotium_v" description = "A chemical compound that promotes concentrated production of the serotonin neurotransmitter in humans. This appears to be a biologically produced form, resulting in a specifically toxic nature." taste_description = "chalky bitterness" + filtered_organs = list(O_SPLEEN) /datum/reagent/serotrotium/venom/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_DIONA) @@ -760,6 +804,7 @@ reagent_state = LIQUID color = "#C8A5DC" overdose = REAGENTS_OVERDOSE + filtered_organs = list(O_SPLEEN) /datum/reagent/impedrezene/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) if(alien == IS_DIONA) @@ -965,7 +1010,7 @@ datum/reagent/talum_quem/affect_blood(var/mob/living/carbon/M, var/alien, var/re metabolism = REM * 4 /datum/reagent/irradiated_nanites/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) - radiation_repository.radiate(get_turf(M), 20) // Irradiate people around you. + SSradiation.radiate(get_turf(M), 20) // Irradiate people around you. M.radiation = max(M.radiation + 5 * removed, 0) // Irradiate you. Because it's inside you. /datum/reagent/neurophage_nanites @@ -976,6 +1021,7 @@ datum/reagent/talum_quem/affect_blood(var/mob/living/carbon/M, var/alien, var/re reagent_state = SOLID color = "#555555" metabolism = REM * 4 + filtered_organs = list(O_SPLEEN) /datum/reagent/neurophage_nanites/affect_blood(var/mob/living/carbon/M, var/alien, var/removed) M.adjustBrainLoss(2 * removed) // Their job is to give you a bad time. diff --git a/code/modules/reagents/Chemistry-Recipes.dm b/code/modules/reagents/Chemistry-Recipes.dm index 01de315c2d..b2bb2ec8c3 100644 --- a/code/modules/reagents/Chemistry-Recipes.dm +++ b/code/modules/reagents/Chemistry-Recipes.dm @@ -150,18 +150,18 @@ catalysts = list("phoron" = 1) result_amount = 2 -/datum/chemical_reaction/tramadol - name = "Tramadol" - id = "tramadol" - result = "tramadol" - required_reagents = list("inaprovaline" = 1, "ethanol" = 1, "oxygen" = 1) - result_amount = 3 - /datum/chemical_reaction/paracetamol name = "Paracetamol" id = "paracetamol" result = "paracetamol" - required_reagents = list("tramadol" = 1, "sugar" = 1, "water" = 1) + required_reagents = list("inaprovaline" = 1, "nitrogen" = 1, "water" = 1) + result_amount = 2 + +/datum/chemical_reaction/tramadol + name = "Tramadol" + id = "tramadol" + result = "tramadol" + required_reagents = list("paracetamol" = 1, "ethanol" = 1, "oxygen" = 1) result_amount = 3 /datum/chemical_reaction/oxycodone @@ -465,6 +465,13 @@ required_reagents = list("oxygen" = 1, "anti_toxin" = 1, "carbon" = 1) result_amount = 3 +/datum/chemical_reaction/calciumcarbonate + name = "Calcium Carbonate" + id = "calciumcarbonate" + result = "calciumcarbonate" + required_reagents = list("oxygen" = 3, "calcium" = 1, "carbon" = 1) + result_amount = 2 + /datum/chemical_reaction/soporific name = "Soporific" id = "stoxin" diff --git a/code/modules/reagents/Chemistry-Recipes_vr.dm b/code/modules/reagents/Chemistry-Recipes_vr.dm index eb9ad42d93..7d9805730c 100644 --- a/code/modules/reagents/Chemistry-Recipes_vr.dm +++ b/code/modules/reagents/Chemistry-Recipes_vr.dm @@ -59,6 +59,7 @@ if(H.stat == DEAD && (/mob/living/carbon/human/proc/reconstitute_form in H.verbs)) //no magical regen for non-regenners, and can't force the reaction on live ones if(H.hasnutriment()) // make sure it actually has the conditions to revive if(H.revive_ready >= 1) // if it's not reviving, start doing so + H.revive_ready = REVIVING_READY // overrides the normal cooldown H.visible_message("[H] shudders briefly, then relaxes, faint movements stirring within.") H.chimera_regenerate() else if (/mob/living/carbon/human/proc/hatch in H.verbs)// already reviving, check if they're ready to hatch diff --git a/code/modules/reagents/dispenser/cartridge_presets.dm b/code/modules/reagents/dispenser/cartridge_presets.dm index 40181b81c4..9f7ddc071e 100644 --- a/code/modules/reagents/dispenser/cartridge_presets.dm +++ b/code/modules/reagents/dispenser/cartridge_presets.dm @@ -30,6 +30,7 @@ ethanol spawn_reagent = "ethanol" sacid spawn_reagent = "sacid" tungsten spawn_reagent = "tungsten" + calcium spawn_reagent = "calcium" // Bar, alcoholic beer spawn_reagent = "beer" diff --git a/code/modules/reagents/dispenser/dispenser_presets.dm b/code/modules/reagents/dispenser/dispenser_presets.dm index 08741412f1..d3aa3c0133 100644 --- a/code/modules/reagents/dispenser/dispenser_presets.dm +++ b/code/modules/reagents/dispenser/dispenser_presets.dm @@ -21,7 +21,8 @@ /obj/item/weapon/reagent_containers/chem_disp_cartridge/ethanol, /obj/item/weapon/reagent_containers/chem_disp_cartridge/sugar, /obj/item/weapon/reagent_containers/chem_disp_cartridge/sacid, - /obj/item/weapon/reagent_containers/chem_disp_cartridge/tungsten + /obj/item/weapon/reagent_containers/chem_disp_cartridge/tungsten, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/calcium ) /obj/machinery/chemical_dispenser/ert @@ -111,7 +112,7 @@ /obj/item/weapon/reagent_containers/chem_disp_cartridge/tequila, /obj/item/weapon/reagent_containers/chem_disp_cartridge/vermouth, /obj/item/weapon/reagent_containers/chem_disp_cartridge/cognac, - /obj/item/weapon/reagent_containers/chem_disp_cartridge/cider, + /obj/item/weapon/reagent_containers/chem_disp_cartridge/cider, /obj/item/weapon/reagent_containers/chem_disp_cartridge/ale, /obj/item/weapon/reagent_containers/chem_disp_cartridge/mead ) diff --git a/code/modules/reagents/dispenser/supply.dm b/code/modules/reagents/dispenser/supply.dm index e6488d9d7e..228c5dfeef 100644 --- a/code/modules/reagents/dispenser/supply.dm +++ b/code/modules/reagents/dispenser/supply.dm @@ -192,6 +192,7 @@ SEC_PACK(radium, /obj/item/weapon/reagent_containers/chem_disp_cartridge/radi SEC_PACK(ethanol, /obj/item/weapon/reagent_containers/chem_disp_cartridge/ethanol, "Reagent refill - Ethanol", "ethanol reagent cartridge crate", 15, access_chemistry) SEC_PACK(sacid, /obj/item/weapon/reagent_containers/chem_disp_cartridge/sacid, "Reagent refill - Sulfuric Acid", "sulfuric acid reagent cartridge crate", 15, access_chemistry) SEC_PACK(tungsten, /obj/item/weapon/reagent_containers/chem_disp_cartridge/tungsten, "Reagent refill - Tungsten", "tungsten reagent cartridge crate", 15, access_chemistry) +SEC_PACK(calcium, /obj/item/weapon/reagent_containers/chem_disp_cartridge/calcium, "Reagent refill - Calcium", "calcium reagent cartridge crate", 15, access_chemistry) // Bar-restricted (alcoholic drinks) // Datum path Contents type Supply pack name Container name Cost Container access diff --git a/code/modules/reagents/distilling/Distilling-Recipes.dm b/code/modules/reagents/distilling/Distilling-Recipes.dm index f7fae18178..d610e32e9b 100644 --- a/code/modules/reagents/distilling/Distilling-Recipes.dm +++ b/code/modules/reagents/distilling/Distilling-Recipes.dm @@ -104,6 +104,28 @@ temp_range = list(T0C + 115, T0C + 130) +/datum/chemical_reaction/distilling/spacomycaze + name = "Distilling Spacomycaze" + id = "distill_spacomycaze" + result = "spacomycaze" + required_reagents = list("paracetamol" = 1, "spaceacillin" = 1, "foaming_agent" = 1) + result_amount = 2 + + reaction_rate = HALF_LIFE(10) + + temp_range = list(T0C + 100, T0C + 120) + +/datum/chemical_reaction/distilling/tricorlidaze + name = "Distilling Tricorlidaze" + id = "distill_tricorlidaze" + result = "tricorlidaze" + required_reagents = list("tricordrazine" = 1, "sterilizine" = 1, "foaming_agent" = 1) + result_amount = 2 + + reaction_rate = HALF_LIFE(10) + + temp_range = list(T0C + 100, T0C + 120) + // Alcohol /datum/chemical_reaction/distilling/beer name = "Distilling Beer" @@ -168,3 +190,27 @@ F.set_up(6, 0, T) F.start() return + +/datum/chemical_reaction/distilling/lichpowder + name = "Distilling Lichpowder" + id = "distill_lichpowder" + result = "lichpowder" + required_reagents = list("zombiepowder" = 2, "leporazine" = 1) + result_amount = 2 + + reaction_rate = HALF_LIFE(8) + + temp_range = list(T0C + 100, T0C + 150) + +/datum/chemical_reaction/distilling/necroxadone + name = "Distilling Necroxadone" + id = "distill_necroxadone" + result = "necroxadone" + required_reagents = list("lichpowder" = 1, "cryoxadone" = 1, "carthatoline" = 1) + result_amount = 2 + + catalysts = list("phoron" = 5) + + reaction_rate = HALF_LIFE(20) + + temp_range = list(T0C + 90, T0C + 95) diff --git a/code/modules/reagents/reagent_containers/glass.dm b/code/modules/reagents/reagent_containers/glass.dm index 3c9fdcba6f..a22257a8e2 100644 --- a/code/modules/reagents/reagent_containers/glass.dm +++ b/code/modules/reagents/reagent_containers/glass.dm @@ -132,6 +132,9 @@ update_name_label() if(istype(W,/obj/item/weapon/storage/bag)) ..() + if(W && W.w_class <= w_class && (flags & OPENCONTAINER)) + to_chat(user, "You dip \the [W] into \the [src].") + reagents.touch_obj(W, reagents.total_volume) /obj/item/weapon/reagent_containers/glass/proc/update_name_label() if(label_text == "") diff --git a/code/modules/reagents/reagent_containers/syringes.dm b/code/modules/reagents/reagent_containers/syringes.dm index 092070e0a4..c68cc402cf 100644 --- a/code/modules/reagents/reagent_containers/syringes.dm +++ b/code/modules/reagents/reagent_containers/syringes.dm @@ -183,8 +183,8 @@ if(H.wear_suit) if(istype(H.wear_suit, /obj/item/clothing/suit/space)) injtime = injtime * 2 - else if(!H.can_inject(user, 1)) - return + if(!H.can_inject(user, 1)) + return else if(isliving(target)) diff --git a/code/modules/research/designs/medical.dm b/code/modules/research/designs/medical.dm index 4ac131b863..13c7307d70 100644 --- a/code/modules/research/designs/medical.dm +++ b/code/modules/research/designs/medical.dm @@ -43,6 +43,24 @@ build_path = /obj/item/weapon/surgical/scalpel/manager sort_string = "KAAAD" +/datum/design/item/medical/saw_manager + name = "Energetic Bone Diverter" + desc = "A strange development following the I.M.S., this heavy tool can split and open, or close and shut, intentional holes in bones." + id = "advanced_saw" + req_tech = list(TECH_BIO = 4, TECH_MATERIAL = 7, TECH_MAGNET = 6, TECH_DATA = 5) + materials = list (DEFAULT_WALL_MATERIAL = 12500, MAT_PLASTIC = 800, "silver" = 1500, "gold" = 1500, MAT_OSMIUM = 1000) + build_path = /obj/item/weapon/surgical/circular_saw/manager + sort_string = "KAAAE" + +/datum/design/item/medical/organ_ripper + name = "Organ Ripper" + desc = "A modern and horrifying take on an ancient practice, this tool is capable of rapidly removing an organ from a hopefully willing patient, without damaging it." + id = "organ_ripper" + req_tech = list(TECH_BIO = 3, TECH_MATERIAL = 5, TECH_MAGNET = 4, TECH_ILLEGAL = 3) + materials = list (DEFAULT_WALL_MATERIAL = 12500, MAT_PLASTIC = 8000, MAT_OSMIUM = 2500) + build_path = /obj/item/weapon/surgical/scalpel/ripper + sort_string = "KAAAF" + /datum/design/item/medical/bone_clamp name = "Bone Clamp" desc = "A miracle of modern science, this tool rapidly knits together bone, without the need for bone gel." @@ -52,8 +70,6 @@ build_path = /obj/item/weapon/surgical/bone_clamp sort_string = "KAABA" -// Other medical equipment - /datum/design/item/medical/medical_analyzer name = "health analyzer" desc = "A hand-held body scanner able to distinguish vital signs of the subject." @@ -90,6 +106,14 @@ materials = list(DEFAULT_WALL_MATERIAL = 2000, "glass" = 1000, "silver" = 1500, "gold" = 2000, "uranium" = 1250, "diamond" = 750, "phoron" = 500, "plastic" = 1000, "osmium" = 500) build_path = /obj/item/device/healthanalyzer/phasic sort_string = "KBAAD" + +/datum/design/item/medical/large_bodybag + desc = "A massive body bag made with bluespace tech." + id = "large_bodybag" + req_tech = list( TECH_ENGINEERING = 3, TECH_BIO = 5, TECH_BLUESPACE = 3) + materials = list(DEFAULT_WALL_MATERIAL = 3500, "glass" = 500, "phoron" = 4000, "plastic" = 18000) //2 phoron and 9 plastic sheets. + build_path = /obj/item/bodybag/large + sort_string = "KCAAB" //To be under the roller bed //End of YAWN changes /datum/design/item/medical/advanced_roller diff --git a/code/modules/research/designs/power_cells.dm b/code/modules/research/designs/power_cells.dm index a387f7cc4c..e0f531f654 100644 --- a/code/modules/research/designs/power_cells.dm +++ b/code/modules/research/designs/power_cells.dm @@ -61,11 +61,41 @@ category = "Misc" sort_string = "BAABA" -/datum/design/item/powercell/weapon - name = "weapon" +//Yawn changes +/datum/design/item/powercell/advance_device + name = "device, advanced" build_type = PROTOLATHE - id = "weapon" + id = "advance_device" materials = list(DEFAULT_WALL_MATERIAL = 700, "glass" = 50) build_path = /obj/item/weapon/cell/device/weapon category = "Misc" - sort_string = "BAABB" \ No newline at end of file + sort_string = "BAABB" + +/datum/design/item/powercell/super_device + name = "device, super" + id = "super_device" + req_tech = list(TECH_POWER = 3, TECH_MATERIAL = 2) + materials = list(DEFAULT_WALL_MATERIAL = 700, "glass" = 70, "gold" = 50, "silver" = 20,) + build_path = /obj/item/weapon/cell/device/super + category = "Misc" + sort_string = "BAABC" + +/datum/design/item/powercell/hype_device + name = "device, hyper" + id = "hyper_device" + req_tech = list(TECH_POWER = 5, TECH_MATERIAL = 4) + materials = list(DEFAULT_WALL_MATERIAL = 1400, "glass" = 1400, "gold" = 150, "silver" = 150) + build_path = /obj/item/weapon/cell/device/hyper + category = "Misc" + sort_string = "BAABD" + +/datum/design/item/powercell/omni_device + name = "device, omni" + req_tech = list(TECH_POWER = 8, TECH_MATERIAL = 7, TECH_ARCANE = 2, TECH_PHORON = 4, TECH_PRECURSOR = 2) + build_type = PROTOLATHE + id = "omni-device" + materials = list(DEFAULT_WALL_MATERIAL = 1700, "glass" = 550, MAT_DURASTEEL = 230, MAT_MORPHIUM = 320, MAT_METALHYDROGEN = 600, MAT_URANIUM = 60, MAT_VERDANTIUM = 150, MAT_PHORON = 900) + build_path = /obj/item/weapon/cell/device/weapon/recharge/alien/omni + category = "Misc" + sort_string = "BAABE" +//End of Yawn add diff --git a/code/modules/research/designs/weapons_vr.dm b/code/modules/research/designs/weapons_vr.dm index 0cde7758c4..2b81ce34ce 100644 --- a/code/modules/research/designs/weapons_vr.dm +++ b/code/modules/research/designs/weapons_vr.dm @@ -146,14 +146,15 @@ build_path = /obj/item/ammo_casing/microbattery/combat/xray sort_string = "MAVCF" -/datum/design/item/nsfw_cell/stripper +// Who the fuck thought this was a good idea? -RadiantFlash +/*/datum/design/item/nsfw_cell/stripper name = "STRIPPER" id = "nsfw_cell_stripper" req_tech = list(TECH_MATERIAL = 7, TECH_BIO = 4, TECH_POWER = 4, TECH_COMBAT = 4, TECH_ILLEGAL = 5) materials = list(DEFAULT_WALL_MATERIAL = 5000, "glass" = 5000, "uranium" = 2000, "phoron" = 2000, "diamond" = 500) build_path = /obj/item/ammo_casing/microbattery/combat/stripper sort_string = "MAVCG" - +*/ /* /datum/design/item/nsfw_cell/final name = "FINAL OPTION" diff --git a/code/modules/research/mechfab_designs.dm b/code/modules/research/mechfab_designs.dm index 199acd42fb..0fdd3df5be 100644 --- a/code/modules/research/mechfab_designs.dm +++ b/code/modules/research/mechfab_designs.dm @@ -570,6 +570,30 @@ materials = list(DEFAULT_WALL_MATERIAL = 8000, "gold" = 2000, "silver" = 3000, "phoron" = 5000, "glass" = 3750) build_path = /obj/item/mecha_parts/mecha_equipment/combat_shield +/datum/design/item/mecha/crisis_drone + name = "Crisis Drone" + desc = "Deploys a small medical drone capable of patching small wounds in order to stabilize nearby patients." + id = "mech_med_droid" + req_tech = list(TECH_PHORON = 3, TECH_MAGNET = 6, TECH_BIO = 5, TECH_DATA = 4, TECH_ARCANE = 1) + materials = list(DEFAULT_WALL_MATERIAL = 8000, MAT_GOLD = 2000, MAT_SILVER = 3000, MAT_VERDANTIUM = 2500, MAT_GLASS = 3000) + build_path = /obj/item/mecha_parts/mecha_equipment/crisis_drone + +/datum/design/item/mecha/rad_drone + name = "Hazmat Drone" + desc = "Deploys a small hazmat drone capable of purging minor radiation damage in order to stabilize nearby patients." + id = "mech_rad_droid" + req_tech = list(TECH_PHORON = 4, TECH_MAGNET = 5, TECH_BIO = 6, TECH_DATA = 4, TECH_ARCANE = 1) + materials = list(DEFAULT_WALL_MATERIAL = 8000, MAT_GOLD = 2000, MAT_URANIUM = 3000, MAT_VERDANTIUM = 2500, MAT_GLASS = 3000) + build_path = /obj/item/mecha_parts/mecha_equipment/crisis_drone/rad + +/datum/design/item/mecha/medanalyzer + name = "Mounted Body Scanner" + desc = "An advanced mech-mounted device that is not quite as powerful as a stationary body scanner, though still suitably powerful." + id = "mech_med_analyzer" + req_tech = list(TECH_PHORON = 4, TECH_MAGNET = 5, TECH_BIO = 5, TECH_DATA = 4) + materials = list(MAT_PLASTEEL = 4500, MAT_GOLD = 2000, MAT_URANIUM = 3000, MAT_GLASS = 3000) + build_path = /obj/item/mecha_parts/mecha_equipment/tool/powertool/medanalyzer + /datum/design/item/mecha/jetpack name = "Ion Jetpack" desc = "Using directed ion bursts and cunning solar wind reflection technique, this device enables controlled space flight." diff --git a/code/modules/research/prosfab_designs.dm b/code/modules/research/prosfab_designs.dm index 305bae7df2..75c691dbd8 100644 --- a/code/modules/research/prosfab_designs.dm +++ b/code/modules/research/prosfab_designs.dm @@ -202,6 +202,21 @@ materials = list(DEFAULT_WALL_MATERIAL = 5625, "glass" = 1000) // req_tech = list(TECH_ENGINEERING = 2, TECH_MATERIAL = 2) +/datum/design/item/prosfab/pros/internal/spleen + name = "Prosthetic Spleen" + id = "pros_spleen" + build_path = /obj/item/organ/internal/spleen + time = 15 + materials = list(DEFAULT_WALL_MATERIAL = 3000, MAT_GLASS = 750) +// req_tech = list(TECH_ENGINEERING = 2, TECH_MATERIAL = 2) + +/datum/design/item/prosfab/pros/internal/larynx + name = "Prosthetic Larynx" + id = "pros_larynx" + build_path = /obj/item/organ/internal/voicebox + time = 15 + materials = list(DEFAULT_WALL_MATERIAL = 2000, MAT_GLASS = 750, MAT_PLASTIC = 500) + //////////////////// Cyborg Parts //////////////////// /datum/design/item/prosfab/cyborg category = "Cyborg Parts" diff --git a/code/modules/resleeving/infomorph.dm b/code/modules/resleeving/infomorph.dm index 6166bb6456..099f3c0a95 100644 --- a/code/modules/resleeving/infomorph.dm +++ b/code/modules/resleeving/infomorph.dm @@ -154,7 +154,7 @@ var/list/infomorph_emotions = list( // 20% chance to kill src.silence_time = world.timeofday + 120 * 10 // Silence for 2 minutes - src << "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete." + to_chat(src, "Communication circuit overload. Shutting down and reloading communication circuits - speech and messaging functionality will be unavailable until the reboot is complete.") if(prob(20)) var/turf/T = get_turf_or_move(src.loc) for (var/mob/M in viewers(T)) @@ -337,7 +337,7 @@ var/list/infomorph_emotions = list( resting = !resting icon_state = resting ? "[chassis]_rest" : "[chassis]" - src << "You are now [resting ? "resting" : "getting up"]" + to_chat(src, "You are now [resting ? "resting" : "getting up"]") canmove = !resting @@ -384,11 +384,11 @@ var/list/infomorph_emotions = list( if(idaccessible == 0) idaccessible = 1 - src << "You allow access modifications." + to_chat(src, "You allow access modifications.") else idaccessible = 0 - src << "You block access modfications." + to_chat(src, "You block access modfications.") /mob/living/silicon/infomorph/verb/wipe_software() set name = "Suspend Self" @@ -423,7 +423,7 @@ var/list/infomorph_emotions = list( /mob/living/silicon/infomorph/say(var/msg) if(silence_time) - src << "Communication circuits remain uninitialized." + to_chat(src, "Communication circuits remain uninitialized.") else ..(msg) @@ -594,7 +594,7 @@ var/global/list/default_infomorph_software = list() if(silence_time) if(world.timeofday >= silence_time) silence_time = null - src << "Communication circuit reinitialized. Speech and messaging functionality restored." + to_chat(src, "Communication circuit reinitialized. Speech and messaging functionality restored.") handle_statuses() diff --git a/code/modules/resleeving/machines.dm b/code/modules/resleeving/machines.dm index 769735baa4..07c63911e7 100644 --- a/code/modules/resleeving/machines.dm +++ b/code/modules/resleeving/machines.dm @@ -85,7 +85,7 @@ H.add_modifier(modifier_type) //Apply damage - H.adjustCloneLoss((H.getMaxHealth() - config.health_threshold_dead)*0.75) + H.adjustCloneLoss((H.getMaxHealth() - config.health_threshold_dead)*-0.75) H.Paralyse(4) H.updatehealth() diff --git a/code/modules/surgery/encased.dm b/code/modules/surgery/encased.dm index 3513691706..4e03024a01 100644 --- a/code/modules/surgery/encased.dm +++ b/code/modules/surgery/encased.dm @@ -134,7 +134,7 @@ if (!hasorgans(target)) return var/obj/item/organ/external/affected = target.get_organ(target_zone) - return ..() && affected && affected.open == 3 + return (..() && affected && affected.open == 3) /datum/surgery_step/open_encased/close/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool) if (!hasorgans(target)) @@ -214,4 +214,94 @@ var/self_msg = "You applied \the [tool] to [target]'s [affected.encased]." user.visible_message(msg, self_msg) - affected.open = 2 \ No newline at end of file + affected.open = 2 + +/////////////////////////////////////////////////////////////// +// Saw/Retractor/Gel Combi-open and close. +/////////////////////////////////////////////////////////////// +/datum/surgery_step/open_encased/advancedsaw_open + allowed_tools = list( + /obj/item/weapon/surgical/circular_saw/manager = 100 + ) + + priority = 3 + + min_duration = 60 + max_duration = 90 + +/datum/surgery_step/open_encased/advancedsaw_open/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + return ..() && affected && affected.open >= 2 && affected.open < 3 + +/datum/surgery_step/open_encased/advancedsaw_open/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + + user.visible_message("[user] begins to open [target]'s [affected.encased] with \the [tool].", \ + "You begin to open [target]'s [affected.encased] with \the [tool].") + target.custom_pain("Something hurts horribly in your [affected.name]!", 60) + ..() + +/datum/surgery_step/open_encased/advancedsaw_open/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + + user.visible_message("[user] has cut [target]'s [affected.encased] wide open with \the [tool].", \ + "You have cut [target]'s [affected.encased] wide open with \the [tool].") + affected.open = 3 + +/datum/surgery_step/open_encased/advancedsaw_open/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + + user.visible_message("[user]'s hand slips, searing [target]'s [affected.encased] with \the [tool]!" , \ + "Your hand slips, searing [target]'s [affected.encased] with \the [tool]!" ) + + affected.createwound(CUT, 20) + affected.createwound(BURN, 15) + if(prob(affected.damage)) + affected.fracture() + + +/datum/surgery_step/open_encased/advancedsaw_mend + allowed_tools = list( + /obj/item/weapon/surgical/circular_saw/manager = 100 + ) + + priority = 3 + + min_duration = 30 + max_duration = 60 + +/datum/surgery_step/open_encased/advancedsaw_mend/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + return (..() && affected && affected.open == 3) + +/datum/surgery_step/open_encased/advancedsaw_mend/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + + var/msg = "[user] starts sealing \the [target]'s [affected.encased] with \the [tool]." + var/self_msg = "You start sealing \the [target]'s [affected.encased] with \the [tool]." + user.visible_message(msg, self_msg) + target.custom_pain("Something hurts horribly in your [affected.name]!", 100) + ..() + +/datum/surgery_step/open_encased/advancedsaw_mend/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!hasorgans(target)) + return + var/obj/item/organ/external/affected = target.get_organ(target_zone) + + var/msg = "[user] sealed \the [target]'s [affected.encased] with \the [tool]." + var/self_msg = "You sealed \the [target]'s [affected.encased] with \the [tool]." + user.visible_message(msg, self_msg) + + affected.open = 2 diff --git a/code/modules/surgery/organs_internal.dm b/code/modules/surgery/organs_internal.dm index 2f2e1cb44a..8d261f7535 100644 --- a/code/modules/surgery/organs_internal.dm +++ b/code/modules/surgery/organs_internal.dm @@ -394,6 +394,65 @@ "Your hand slips, damaging the flesh in [target]'s [affected.name] with \the [tool]!") affected.createwound(BRUISE, 20) +/////////////////////////////////////////////////////////////// +// Organ Ripping Surgery +/////////////////////////////////////////////////////////////// + +/datum/surgery_step/internal/rip_organ + + allowed_tools = list( + /obj/item/weapon/surgical/scalpel/ripper = 100 + ) + + priority = 3 + + blood_level = 3 + + min_duration = 60 + max_duration = 80 + +/datum/surgery_step/internal/rip_organ/can_use(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + if (!..()) + return 0 + + target.op_stage.current_organ = null + + var/list/removable_organs = list() + for(var/organ in target.internal_organs_by_name) + var/obj/item/organ/internal/I = target.internal_organs_by_name[organ] + if(istype(I) && I.parent_organ == target_zone) + removable_organs |= organ + + var/organ_to_remove = input(user, "Which organ do you want to remove?") as null|anything in removable_organs + if(!organ_to_remove) + return 0 + + target.op_stage.current_organ = organ_to_remove + return ..() + +/datum/surgery_step/internal/rip_organ/begin_step(mob/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + user.visible_message("[user] starts ripping [target]'s [target.op_stage.current_organ] out with \the [tool].", \ + "You start ripping [target]'s [target.op_stage.current_organ] out with \the [tool].") + target.custom_pain("Someone's ripping out your [target.op_stage.current_organ]!", 100) + ..() + +/datum/surgery_step/internal/rip_organ/end_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + user.visible_message("[user] has ripped [target]'s [target.op_stage.current_organ] out with \the [tool].", \ + "You have ripped [target]'s [target.op_stage.current_organ] out with \the [tool].") + + // Extract the organ! + if(target.op_stage.current_organ) + var/obj/item/organ/O = target.internal_organs_by_name[target.op_stage.current_organ] + if(O && istype(O)) + O.removed(user) + target.op_stage.current_organ = null + +/datum/surgery_step/internal/rip_organ/fail_step(mob/living/user, mob/living/carbon/human/target, target_zone, obj/item/tool) + var/obj/item/organ/external/affected = target.get_organ(target_zone) + user.visible_message("[user]'s hand slips, damaging [target]'s [affected.name] with \the [tool]!", \ + "Your hand slips, damaging [target]'s [affected.name] with \the [tool]!") + affected.createwound(BRUISE, 20) + ////////////////////////////////////////////////////////////////// // HEART SURGERY // ////////////////////////////////////////////////////////////////// diff --git a/code/modules/tension/tension.dm b/code/modules/tension/tension.dm index 841d691037..aa95662849 100644 --- a/code/modules/tension/tension.dm +++ b/code/modules/tension/tension.dm @@ -24,7 +24,7 @@ will_point_blank = ai_holder.pointblank var/potential_damage = 0 - if(!projectiletype || ( get_dist(src, threatened >= 1) && !will_point_blank ) ) // Melee damage. + if(!projectiletype || ( ( get_dist(src, threatened) >= 1) && !will_point_blank ) ) // Melee damage. potential_damage = (melee_damage_lower + melee_damage_upper) / 2 // Treat potential_damage as estimated DPS. If the enemy attacks twice as fast as usual, it will double the number. diff --git a/code/modules/vore/appearance/spider_taur_powers_vr.dm b/code/modules/vore/appearance/spider_taur_powers_vr.dm index 9535c91f19..e0ca52b711 100644 --- a/code/modules/vore/appearance/spider_taur_powers_vr.dm +++ b/code/modules/vore/appearance/spider_taur_powers_vr.dm @@ -15,7 +15,8 @@ icon = 'icons/obj/clothing/web.dmi' icon_state = "web_bindings" icon_override = 'icons/mob/vore/web.dmi' - item_state = "web_bindings_mob" + item_state = "web_bindings" + override = 1 body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|FEET|ARMS|HANDS flags_inv = HIDEGLOVES|HIDESHOES|HIDEJUMPSUIT|HIDETAIL @@ -30,7 +31,7 @@ mob/proc/weaveWeb() spawn(30) //3 seconds to form new /obj/effect/spider/stickyweb(src.loc) else - src << "You do not have enough nutrition to create webbing!" + to_chat(src, "You do not have enough nutrition to create webbing!") */ /mob/proc/weaveWebBindings() @@ -43,4 +44,4 @@ mob/proc/weaveWeb() var/obj/item/clothing/suit/straight_jacket/web_bindings/bindings = new() //This sprite is amazing, I must say. src.put_in_hands(bindings) else - src << "You do not have enough nutrition to create webbing!" //CK~ + to_chat(src, "You do not have enough nutrition to create webbing!") //CK~ diff --git a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm index d4fd1f13dc..aeabec0c5b 100644 --- a/code/modules/vore/appearance/sprite_accessories_taur_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_taur_vr.dm @@ -157,14 +157,27 @@ clip_mask_icon = 'icons/mob/vore/taurs_vr.dmi' clip_mask_state = "taur_clip_mask_def" //Used to clip off the lower part of suits & uniforms. -/datum/sprite_accessory/tail/taur/roiz_long_lizard // Not ACTUALLY a taur, but it uses 32x64 so it wouldn't fit in tails.dmi, and having it as a tail bugs up the sprite. - name = "Long Lizard Tail (Roiz Lizden)" - icon_state = "roiz_tail_s" - do_colouration = 0 - ckeys_allowed = list("spoopylizz") +// Species-unique long tails/taurhalves + +/datum/sprite_accessory/tail/taur/shadekin_tail + name = "Shadekin Tail (Shadekin)" + icon_state = "shadekin_s" + can_ride = 0 hide_body_parts = null clip_mask_icon = null clip_mask_state = null + apply_restrictions = TRUE + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + +/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_2c + name = "Shadekin Tail dual-color (Shadekin)" + extra_overlay = "shadekin_markings" + +/datum/sprite_accessory/tail/taur/shadekin_tail/shadekin_tail_long + name = "Shadekin Long Tail (Shadekin)" + icon_state = "shadekin_long_s" + +// Tails/taurhalves for everyone /datum/sprite_accessory/tail/taur/wolf name = "Wolf (Taur)" @@ -402,6 +415,49 @@ icon_state = "otie_s" extra_overlay = "otie_markings" +/datum/sprite_accessory/tail/taur/alraune/alraune_2c + name = "Alraune (dual color)" + icon_state = "alraunecolor_s" + ani_state = "alraunecolor_closed_s" + ckeys_allowed = null + do_colouration = 1 + extra_overlay = "alraunecolor_markings" + extra_overlay_w = "alraunecolor_closed_markings" + clip_mask_state = "taur_clip_mask_alraune" + +/datum/sprite_accessory/tail/taur/wasp + name = "Wasp (dual color)" + icon_state = "wasp_s" + extra_overlay = "wasp_markings" + clip_mask_state = "taur_clip_mask_wasp" + + msg_owner_disarm_run = "You quickly push %prey to the ground with your leg!" + msg_prey_disarm_run = "%owner pushes you down to the ground with their leg!" + + msg_owner_disarm_walk = "You firmly push your leg down on %prey, painfully but harmlessly pinning them to the ground!" + msg_prey_disarm_walk = "%owner firmly pushes their leg down on you, quite painfully but harmlessly pinning you to the ground!" + + msg_owner_harm_walk = "You methodically place your leg down upon %prey's body, slowly applying pressure, crushing them against the floor!" + msg_prey_harm_walk = "%owner methodically places their leg upon your body, slowly applying pressure, crushing you against the floor!" + + msg_owner_grab_success = "You pin %prey down on the ground with your front leg before using your other leg to pick them up, trapping them between two of your front legs!" + msg_prey_grab_success = "%owner pins you down on the ground with their front leg before using their other leg to pick you up, trapping you between two of their front legs!" + + msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!" + msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!" + +// Special snowflake tails/taurhalves + +//spoopylizz: Roiz Lizden +/datum/sprite_accessory/tail/taur/roiz_long_lizard // Not ACTUALLY a taur, but it uses 32x64 so it wouldn't fit in tails.dmi, and having it as a tail bugs up the sprite. + name = "Long Lizard Tail (Roiz Lizden)" + icon_state = "roiz_tail_s" + do_colouration = 0 + ckeys_allowed = list("spoopylizz") + hide_body_parts = null + clip_mask_icon = null + clip_mask_state = null + //wickedtemp: Chakat Tempest /datum/sprite_accessory/tail/taur/feline/tempest name = "Feline (wickedtemp) (Taur)" @@ -436,7 +492,7 @@ msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!" msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!" -//liquidfirefly: Ariana Scol +//natje: /datum/sprite_accessory/tail/taur/alraune name = "Alraune (natje) (Taur)" icon_state = "alraune_s" @@ -466,35 +522,4 @@ msg_prey_grab_success = "%owner slides over you with their vines, smushing you against the ground before wrapping one up around you, trapping you within the tight confines of their vines!" msg_owner_grab_fail = "You step down onto %prey with one of your vines, forcing them onto the ground!" - msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!" - -/datum/sprite_accessory/tail/taur/alraune/alraune_2c - name = "Alraune (dual color)" - icon_state = "alraunecolor_s" - ani_state = "alraunecolor_closed_s" - ckeys_allowed = null - do_colouration = 1 - extra_overlay = "alraunecolor_markings" - extra_overlay_w = "alraunecolor_closed_markings" - clip_mask_state = "taur_clip_mask_alraune" - -/datum/sprite_accessory/tail/taur/wasp - name = "Wasp (dual color)" - icon_state = "wasp_s" - extra_overlay = "wasp_markings" - clip_mask_state = "taur_clip_mask_wasp" - - msg_owner_disarm_run = "You quickly push %prey to the ground with your leg!" - msg_prey_disarm_run = "%owner pushes you down to the ground with their leg!" - - msg_owner_disarm_walk = "You firmly push your leg down on %prey, painfully but harmlessly pinning them to the ground!" - msg_prey_disarm_walk = "%owner firmly pushes their leg down on you, quite painfully but harmlessly pinning you to the ground!" - - msg_owner_harm_walk = "You methodically place your leg down upon %prey's body, slowly applying pressure, crushing them against the floor!" - msg_prey_harm_walk = "%owner methodically places their leg upon your body, slowly applying pressure, crushing you against the floor!" - - msg_owner_grab_success = "You pin %prey down on the ground with your front leg before using your other leg to pick them up, trapping them between two of your front legs!" - msg_prey_grab_success = "%owner pins you down on the ground with their front leg before using their other leg to pick you up, trapping you between two of their front legs!" - - msg_owner_grab_fail = "You step down onto %prey, squishing them and forcing them down to the ground!" - msg_prey_grab_fail = "%owner steps down and squishes you with their leg, forcing you down to the ground!" + msg_prey_grab_fail = "%owner steps down onto you with one of their vines, squishing you and forcing you onto the ground!" \ No newline at end of file diff --git a/code/modules/vore/appearance/sprite_accessories_vr.dm b/code/modules/vore/appearance/sprite_accessories_vr.dm index 1298155cdd..8ff0a201e5 100644 --- a/code/modules/vore/appearance/sprite_accessories_vr.dm +++ b/code/modules/vore/appearance/sprite_accessories_vr.dm @@ -12,6 +12,7 @@ /datum/sprite_accessory // Ckey of person allowed to use this, if defined. var/list/ckeys_allowed = null + var/apply_restrictions = FALSE //whether to apply restrictions for specific tails/ears/wings /* //////////////////////////// @@ -29,6 +30,17 @@ var/extra_overlay // Icon state of an additional overlay to blend in. var/desc = "You should not see this..." +// Species-unique ears + +/datum/sprite_accessory/ears/shadekin + name = "Shadekin Ears, colorable" + desc = "" + icon_state = "shadekin" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + apply_restrictions = TRUE + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + // Ears avaliable to anyone /datum/sprite_accessory/ears/squirrel_orange @@ -386,6 +398,14 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "tesharilowinner" +/datum/sprite_accessory/ears/inkling + name = "colorable mature inkling hair" + desc = "" + icon = 'icons/mob/human_face_vr.dmi' + icon_state = "inkling-colorable" + color_blend_mode = ICON_MULTIPLY + do_colouration = 1 + // Special snowflake ears go below here. @@ -467,6 +487,12 @@ icon_state = "alurane-ears" ckeys_allowed = list("natje") +/datum/sprite_accessory/ears/frost + name = "Frost antenna" + desc = "" + icon_state = "frosted_tips" + ckeys_allowed = list("tucker0666") + /* //////////////////////////// / =--------------------= / @@ -657,6 +683,19 @@ var/icon/clip_mask_icon = null //Icon file used for clip mask. var/clip_mask_state = null //Icon state to generate clip mask. Clip mask is used to 'clip' off the lower part of clothing such as jumpsuits & full suits. +// Species-unique tails + +/datum/sprite_accessory/tail/shadekin_short + name = "Shadekin Short Tail, colorable" + desc = "" + icon_state = "shadekin-short" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + apply_restrictions = TRUE + species_allowed = list(SPECIES_SHADEKIN, SPECIES_SHADEKIN_YW)//YW edits + +// Everyone tails + /datum/sprite_accessory/tail/invisible name = "hide species-sprite tail" icon = null @@ -915,6 +954,18 @@ icon_state = "aronai" ckeys_allowed = list("arokha") +/datum/sprite_accessory/tail/cabletail + name = "cabletail" + desc = "cabletail" + icon_state = "cabletail" + ckeys_allowed = list("tucker0666") + +/datum/sprite_accessory/tail/featherfluff_tail + name = "featherfluff_tail" + desc = "" + icon_state = "featherfluff_tail" + ckeys_allowed = list("tucker0666") + /datum/sprite_accessory/tail/ketrai_wag name = "fennix tail (vwag)" desc = "" @@ -982,6 +1033,17 @@ do_colouration = 1 color_blend_mode = ICON_MULTIPLY +/datum/sprite_accessory/tail/sneptail + name = "Snep/Furry Tail (vwag)" + desc = "" + icon_state = "sneptail" + ani_state = "sneptail_w" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "sneptail_mark" + extra_overlay_w = "sneptail_mark_w" + + /datum/sprite_accessory/tail/tiger_new name = "tiger tail (vwag)" desc = "" diff --git a/code/modules/vore/appearance/sprite_accessories_yw.dm b/code/modules/vore/appearance/sprite_accessories_yw.dm index 931b4e46d8..89ccde1ed1 100644 --- a/code/modules/vore/appearance/sprite_accessories_yw.dm +++ b/code/modules/vore/appearance/sprite_accessories_yw.dm @@ -100,3 +100,30 @@ color_blend_mode = ICON_MULTIPLY extra_overlay = "ninekitsune-tips" +/datum/sprite_accessory/tail/vulpkanin_alt_color + icon = 'icons/mob/vore/tails_yw.dmi' + name = "Vulpkanin alt" + desc = "" + icon_state = "vulpkanin_alt_color" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "vulpkanin_alt_color_tips" + ani_state = "vulpkanin_alt_color_w" + extra_overlay_w = "vulpkanin_alt_color_tips_w" + +/datum/sprite_accessory/tail/raccoon_tail + icon = 'icons/mob/vore/tails_yw.dmi' + name = "Raccoon gray tail" + desc = "" + icon_state = "raccoon_tail" + do_colouration = 0 + color_blend_mode = ICON_MULTIPLY + +/datum/sprite_accessory/tail/striped_tail + icon = "icons/mob/vore/tails_yw.dmi" + name = "Striped tail, colorable" + desc = "" + icon_state = "stripedtail_colorable" + do_colouration = 1 + color_blend_mode = ICON_MULTIPLY + extra_overlay = "stripedtail_colorable_w" \ No newline at end of file diff --git a/code/modules/vore/eating/belly_obj_vr.dm b/code/modules/vore/eating/belly_obj_vr.dm index d7559ce66c..0afa43f649 100644 --- a/code/modules/vore/eating/belly_obj_vr.dm +++ b/code/modules/vore/eating/belly_obj_vr.dm @@ -1,4 +1,5 @@ #define VORE_SOUND_FALLOFF 0.1 +#define VORE_SOUND_RANGE 3 // // Belly system 2.0, now using objects instead of datums because EH at datums. @@ -20,19 +21,22 @@ var/emote_time = 60 SECONDS // How long between stomach emotes at prey var/digest_brute = 2 // Brute damage per tick in digestion mode var/digest_burn = 2 // Burn damage per tick in digestion mode - var/immutable = 0 // Prevents this belly from being deleted - var/escapable = 0 // Belly can be resisted out of at any time + var/immutable = FALSE // Prevents this belly from being deleted + var/escapable = FALSE // Belly can be resisted out of at any time var/escapetime = 60 SECONDS // Deciseconds, how long to escape this belly var/digestchance = 0 // % Chance of stomach beginning to digest if prey struggles var/absorbchance = 0 // % Chance of stomach beginning to absorb if prey struggles var/escapechance = 0 // % Chance of prey beginning to escape if prey struggles. var/transferchance = 0 // % Chance of prey being - var/can_taste = 0 // If this belly prints the flavor of prey when it eats someone. + var/can_taste = FALSE // If this belly prints the flavor of prey when it eats someone. var/bulge_size = 0.25 // The minimum size the prey has to be in order to show up on examine. var/shrink_grow_size = 1 // This horribly named variable determines the minimum/maximum size it will shrink/grow prey to. var/transferlocation // Location that the prey is released if they struggle and get dropped off. - var/release_sound = TRUE // Boolean for now, maybe replace with something else later + var/release_sound = "Splatter" // Sound for letting someone out. Replaced from True/false var/mode_flags = 0 // Stripping, numbing, etc. + var/fancy_vore = FALSE // Using the new sounds? + var/is_wet = TRUE // Is this belly's insides made of slimy parts? + var/wet_loop = TRUE // Does the belly have a fleshy loop playing? //I don't think we've ever altered these lists. making them static until someone actually overrides them somewhere. //Actual full digest modes @@ -54,6 +58,7 @@ var/tmp/list/items_preserved = list() // Stuff that wont digest so we shouldn't process it again. var/tmp/next_emote = 0 // When we're supposed to print our next emote, as a belly controller tick # var/tmp/recent_sound = FALSE // Prevent audio spam + var/tmp/list/hearing_mobs // Don't forget to watch your commas at the end of each line if you change these. var/list/struggle_messages_outside = list( @@ -147,7 +152,11 @@ "item_digest_mode", "contaminates", "contamination_flavor", - "contamination_color" + "contamination_color", + "release_sound", + "fancy_vore", + "is_wet", + "wet_loop" ) /obj/belly/New(var/newloc) @@ -175,7 +184,11 @@ //Sound w/ antispam flag setting if(vore_sound && !recent_sound) - var/soundfile = vore_sounds[vore_sound] + var/soundfile + if(!fancy_vore) + soundfile = classic_vore_sounds[vore_sound] + else + soundfile = fancy_vore_sounds[vore_sound] if(soundfile) playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises) recent_sound = TRUE @@ -196,7 +209,7 @@ //Don't bother if we don't have contents if(!contents.len) - return 0 + return FALSE //Find where we should drop things into (certainly not the owner) var/count = 0 @@ -212,14 +225,19 @@ //Clean up our own business items_preserved.Cut() - if(isanimal(owner)) + if(!ishuman(owner)) owner.update_icons() //Print notifications/sound if necessary if(!silent) owner.visible_message("[owner] expels everything from their [lowertext(name)]!") - if(release_sound) - playsound(src, 'sound/effects/splat.ogg', vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises) + var/soundfile + if(!fancy_vore) + soundfile = classic_release_sounds[release_sound] + else + soundfile = fancy_release_sounds[release_sound] + if(soundfile) + playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises) return count @@ -232,12 +250,15 @@ //Place them into our drop_location M.forceMove(drop_location()) + items_preserved -= M //Special treatment for absorbed prey - if(istype(M,/mob/living)) + if(isliving(M)) var/mob/living/ML = M var/mob/living/OW = owner + if(ML.client) + ML.stop_sound_channel(CHANNEL_PREYLOOP) //Stop the internal loop, it'll restart if the isbelly check on next tick anyway if(ML.muffled) ML.muffled = 0 if(ML.absorbed) @@ -252,14 +273,19 @@ Pred.bloodstr.trans_to(Prey, Pred.reagents.total_volume / absorbed_count) //Clean up our own business - if(isanimal(owner)) + if(!ishuman(owner)) owner.update_icons() //Print notifications/sound if necessary if(!silent) owner.visible_message("[owner] expels [M] from their [lowertext(name)]!") - if(release_sound) - playsound(src, 'sound/effects/splat.ogg', vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises) + var/soundfile + if(!fancy_vore) + soundfile = classic_release_sounds[release_sound] + else + soundfile = fancy_release_sounds[release_sound] + if(soundfile) + playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/eating_noises) return 1 @@ -403,6 +429,8 @@ else if(M.reagents) M.reagents.trans_to_holder(Pred.bloodstr, M.reagents.total_volume, 0.5, TRUE) + //Incase they have the loop going, let's double check to stop it. + M.stop_sound_channel(CHANNEL_PREYLOOP) // Delete the digested mob qdel(M) @@ -515,9 +543,17 @@ M.show_message(struggle_outer_message, 2) // hearable to_chat(R,struggle_user_message) - var/strpick = pick(struggle_sounds) - var/strsound = struggle_sounds[strpick] - playsound(src, strsound, vary = 1, vol = 100, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises) + var/sound/struggle_snuggle + var/sound/struggle_rustle = sound(get_sfx("rustle")) + + if(is_wet) + if(!fancy_vore) + struggle_snuggle = sound(get_sfx("classic_struggle_sounds")) + else + struggle_snuggle = sound(get_sfx("fancy_prey_struggle")) + playsound(src, struggle_snuggle, vary = 1, vol = 75, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises) + else + playsound(src, struggle_rustle, vary = 1, vol = 75, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises) if(escapable) //If the stomach has escapable enabled. if(prob(escapechance)) //Let's have it check to see if the prey escapes first. @@ -601,7 +637,11 @@ I.gurgle_contaminate(target.contents, target.contamination_flavor, target.contamination_color) items_preserved -= content if(!silent && target.vore_sound && !recent_sound) - var/soundfile = vore_sounds[target.vore_sound] + var/soundfile + if(!fancy_vore) + soundfile = classic_vore_sounds[target.vore_sound] + else + soundfile = fancy_vore_sounds[target.vore_sound] if(soundfile) playsound(src, soundfile, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, preference = /datum/client_preference/digestion_noises) owner.updateVRPanel() @@ -639,6 +679,10 @@ dupe.contaminates = contaminates dupe.contamination_flavor = contamination_flavor dupe.contamination_color = contamination_color + dupe.release_sound = release_sound + dupe.fancy_vore = fancy_vore + dupe.is_wet = is_wet + dupe.wet_loop = wet_loop //// Object-holding variables //struggle_messages_outside - strings diff --git a/code/modules/vore/eating/bellymodes_vr.dm b/code/modules/vore/eating/bellymodes_vr.dm index d7c4061871..e7d58903cd 100644 --- a/code/modules/vore/eating/bellymodes_vr.dm +++ b/code/modules/vore/eating/bellymodes_vr.dm @@ -24,6 +24,35 @@ if(M.digestable || digest_mode != DM_DIGEST) // don't give digesty messages to indigestible people to_chat(M,"[pick(EL)]") +///////////////////// Prey Loop Refresh/hack ////////////////////// + for(var/mob/living/M in contents) + M.stop_sound_channel(CHANNEL_PREYLOOP) // sanity just in case, because byond is whack and you can't trust it + if(isbelly(M.loc)) //sanity check + if(world.time > M.next_preyloop) //We don't want it to overlap, but we also want it to replay. + if(is_wet && wet_loop) // Is it a fleshy environment, and does the pred have a fleshy heartbeat loop to play? + if(!M.client) + continue + if(M.is_preference_enabled(/datum/client_preference/digestion_noises)) //then we check if the mob has sounds enabled at all + var/sound/preyloop = sound('sound/vore/sunesound/prey/loop.ogg') + M.playsound_local(get_turf(src),preyloop, 80,0, channel = CHANNEL_PREYLOOP) + M.next_preyloop = (world.time + (52 SECONDS)) + +/////////////////////////// Sound Selections /////////////////////////// + var/sound/prey_digest + var/sound/prey_death + var/sound/pred_digest + var/sound/pred_death + if(!fancy_vore) + prey_digest = sound(get_sfx("classic_digestion_sounds")) + prey_death = sound(get_sfx("classic_death_sounds")) + pred_digest = sound(get_sfx("classic_digestion_sounds")) + pred_death = sound(get_sfx("classic_death_sounds")) + else + prey_digest = sound(get_sfx("fancy_digest_prey")) + prey_death = sound(get_sfx("fancy_death_prey")) + pred_digest = sound(get_sfx("fancy_digest_pred")) + pred_death = sound(get_sfx("fancy_death_pred")) + /////////////////////////// Exit Early //////////////////////////// var/list/touchable_atoms = contents - items_preserved if(!length(touchable_atoms)) @@ -47,7 +76,7 @@ else items_preserved |= I if(prob(25)) //Less often than with normal digestion - play_sound = pick(digestion_sounds) + play_sound = pick(pred_digest) else if(item_digest_mode == IM_DIGEST) if(I.digest_stage && I.digest_stage > 0) digest_item(I) @@ -56,7 +85,7 @@ did_an_item = TRUE to_update = TRUE if(prob(25)) //Less often than with normal digestion - play_sound = pick(digestion_sounds) + play_sound = pick(pred_digest) //Handle eaten mobs else if(isliving(A)) @@ -96,11 +125,15 @@ else items_preserved |= I if(prob(25)) //Less often than with normal digestion - play_sound = pick(digestion_sounds) + if(L && L.client && L.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(L,prey_digest) + play_sound = pick(pred_digest) else if(item_digest_mode == IM_DIGEST) digest_item(I) if(prob(25)) //Less often than with normal digestion - play_sound = pick(digestion_sounds) + if(L && L.client && L.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(L,prey_digest) + play_sound = pick(pred_digest) to_update = TRUE break //get rid of things like blood drops and gibs that end up in there @@ -115,7 +148,10 @@ else if(digest_mode == DM_DIGEST) if(prob(50)) //Was SO OFTEN. AAAA. - play_sound = pick(digestion_sounds) + for(var/mob/M in contents) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) for (var/target in touchable_mobs) var/mob/living/M = target @@ -142,11 +178,16 @@ to_chat(owner,"" + digest_alert_owner + "") to_chat(M,"" + digest_alert_prey + "") - play_sound = pick(death_sounds) + play_sound = pick(pred_death) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_death) if((mode_flags & DM_FLAG_LEAVEREMAINS) && M.digest_leave_remains) handle_remains_leaving(M) digestion_death(M) - owner.update_icons() + if(!ishuman(owner)) + owner.update_icons() + if(compensation == 0) //Slightly sloppy way at making sure certain mobs don't give ZERO nutrition (fish and so on) + compensation = 21 //This reads as 20*4.5 due to the calculations afterward, making the backup nutrition value 94.5 per mob. Not op compared to regular prey. if(compensation > 0) if(isrobot(owner)) var/mob/living/silicon/robot/R = owner @@ -183,7 +224,9 @@ for (var/target in touchable_mobs) var/mob/living/M = target if(prob(10)) //Less often than gurgles. People might leave this on forever. - play_sound = pick(digestion_sounds) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) if(M.absorbed) continue @@ -216,7 +259,9 @@ var/mob/living/M = target if(prob(10)) //Less often than gurgles. People might leave this on forever. - play_sound = pick(digestion_sounds) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) if(M.nutrition >= 100) //Drain them until there's no nutrients left. var/oldnutrition = (M.nutrition * 0.05) @@ -230,7 +275,9 @@ var/mob/living/M = target if(prob(10)) //Infinite gurgles! - play_sound = pick(digestion_sounds) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) if(M.size_multiplier > shrink_grow_size) //Shrink until smol. M.resize(M.size_multiplier-0.01) //Shrink by 1% per tick. @@ -247,7 +294,9 @@ var/mob/living/M = target if(prob(10)) - play_sound = pick(digestion_sounds) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) if(M.size_multiplier < shrink_grow_size) //Grow until large. M.resize(M.size_multiplier+0.01) //Grow by 1% per tick. @@ -261,7 +310,9 @@ var/mob/living/M = target if(prob(10)) - play_sound = pick(digestion_sounds) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) if(M.size_multiplier > shrink_grow_size && owner.size_multiplier < 2) //Grow until either pred is large or prey is small. owner.resize(owner.size_multiplier+0.01) //Grow by 1% per tick. @@ -276,7 +327,10 @@ else if(digest_mode == DM_HEAL) if(prob(50)) //Wet heals! The secret is you can leave this on for gurgle noises for fun. - play_sound = pick(digestion_sounds) + for(var/mob/M in contents) + if(M && M.client && M.is_preference_enabled(/datum/client_preference/digestion_noises)) + SEND_SOUND(M,prey_digest) + play_sound = pick(pred_digest) for (var/target in touchable_mobs) var/mob/living/M = target @@ -303,7 +357,18 @@ /////////////////////////// Make any noise /////////////////////////// if(play_sound) - playsound(src, play_sound, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF, ignore_walls = TRUE, preference = /datum/client_preference/digestion_noises) + LAZYCLEARLIST(hearing_mobs) + for(var/mob/M in hearers(VORE_SOUND_RANGE, owner)) + if(!M.client || !(M.is_preference_enabled(/datum/client_preference/digestion_noises))) + continue + LAZYADD(hearing_mobs, M) + for(var/mob/M in hearing_mobs) //so we don't fill the whole room with the sound effect + if(M && M.client && (isturf(M.loc) || (M.loc != src.contents))) //to avoid people on the inside getting the outside sounds and their direct sounds + built in sound pref check + if(fancy_vore) + M.playsound_local(owner.loc, play_sound, vol = 75, vary = 1, falloff = VORE_SOUND_FALLOFF) + else + M.playsound_local(owner.loc, play_sound, vol = 100, vary = 1, falloff = VORE_SOUND_FALLOFF) + //these are all external sound triggers now, so it's ok. if(to_update) for(var/mob/living/M in contents) if(M.client) diff --git a/code/modules/vore/eating/digest_act_vr.dm b/code/modules/vore/eating/digest_act_vr.dm index 2467f5aaa2..e9cf239e66 100644 --- a/code/modules/vore/eating/digest_act_vr.dm +++ b/code/modules/vore/eating/digest_act_vr.dm @@ -108,9 +108,9 @@ if((. = ..())) if(isbelly(item_storage)) var/obj/belly/B = item_storage - . += 5 * (B.digest_brute + B.digest_burn) + . += 2 * (B.digest_brute + B.digest_burn) else - . += 70 //Organs give a little more + . += 30 //Organs give a little more /obj/item/weapon/storage/digest_act(var/atom/movable/item_storage = null) for(var/obj/item/I in contents) diff --git a/code/modules/vore/eating/living_vr.dm b/code/modules/vore/eating/living_vr.dm index 1b666c8fe8..fd361677cc 100644 --- a/code/modules/vore/eating/living_vr.dm +++ b/code/modules/vore/eating/living_vr.dm @@ -1,12 +1,14 @@ ///////////////////// Mob Living ///////////////////// /mob/living - var/digestable = 1 // Can the mob be digested inside a belly? - var/digest_leave_remains = 0 // Will this mob leave bones/skull/etc after the melty demise? - var/allowmobvore = 1 // Will simplemobs attempt to eat the mob? - var/showvoreprefs = 1 // Determines if the mechanical vore preferences button will be displayed on the mob or not. + var/digestable = TRUE // Can the mob be digested inside a belly? + var/devourable = TRUE // Can the mob be devoured at all? + var/feeding = TRUE // Can the mob be vorishly force fed or fed to others? + var/digest_leave_remains = FALSE // Will this mob leave bones/skull/etc after the melty demise? + var/allowmobvore = TRUE // Will simplemobs attempt to eat the mob? + var/showvoreprefs = TRUE // Determines if the mechanical vore preferences button will be displayed on the mob or not. var/obj/belly/vore_selected // Default to no vore capability. var/list/vore_organs = list() // List of vore containers inside a mob - var/absorbed = 0 // If a mob is absorbed into another + var/absorbed = FALSE // If a mob is absorbed into another var/weight = 137 // Weight for mobs for weightgain system var/weight_gain = 1 // How fast you gain weight var/weight_loss = 0.5 // How fast you lose weight @@ -15,16 +17,18 @@ var/revive_ready = REVIVING_READY // Only used for creatures that have the xenochimera regen ability, so far. var/metabolism = 0.0015 var/vore_taste = null // What the character tastes like - var/no_vore = 0 // If the character/mob can vore. - var/openpanel = 0 // Is the vore panel open? - var/noisy = 0 // Toggle audible hunger. + var/no_vore = FALSE // If the character/mob can vore. + var/openpanel = FALSE // Is the vore panel open? + var/noisy = FALSE // Toggle audible hunger. var/absorbing_prey = 0 // Determines if the person is using the succubus drain or not. See station_special_abilities_vr. var/drain_finalized = 0 // Determines if the succubus drain will be KO'd/absorbed. Can be toggled on at any time. var/fuzzy = 1 // Preference toggle for sharp/fuzzy icon. var/tail_alt = 0 // Tail layer toggle. var/permit_healbelly = TRUE - var/can_be_drop_prey = 0 - var/can_be_drop_pred = 1 // Mobs are pred by default. + var/can_be_drop_prey = FALSE + var/can_be_drop_pred = TRUE // Mobs are pred by default. + var/next_preyloop // For Fancy sound internal loop + var/adminbus_trash = FALSE // For abusing trash eater for event shenanigans. // // Hook for generic creation of stuff on new creatures @@ -34,7 +38,7 @@ M.verbs += /mob/living/proc/lick M.verbs += /mob/living/proc/switch_scaling if(M.no_vore) //If the mob isn't supposed to have a stomach, let's not give it an insidepanel so it can make one for itself, or a stomach. - return 1 + return TRUE M.verbs += /mob/living/proc/insidePanel //Tries to load prefs if a client is present otherwise gives freebie stomach @@ -42,8 +46,8 @@ if(M) M.init_vore() - //Return 1 to hook-caller - return 1 + //return TRUE to hook-caller + return TRUE /mob/living/proc/init_vore() //Something else made organs, meanwhile. @@ -64,10 +68,10 @@ LAZYINITLIST(vore_organs) var/obj/belly/B = new /obj/belly(src) vore_selected = B - B.immutable = 1 + B.immutable = TRUE B.name = "Stomach" B.desc = "It appears to be rather warm and wet. Makes sense, considering it's inside \the [name]." - B.can_taste = 1 + B.can_taste = TRUE return TRUE // @@ -92,29 +96,45 @@ var/mob/living/attacker = user // Typecast to living - // src is the mob clicked on + // src is the mob clicked on and attempted predator - ///// If grab clicked on grabber + ///// If user clicked on themselves if((src == G.assailant) && (is_vore_predator(src))) - if (src.feed_grabbed_to_self(src, G.affecting)) + if(!(G.affecting.devourable)) + to_chat(user, "They aren't able to be devoured.") + return FALSE + if(src.feed_grabbed_to_self(src, G.affecting)) qdel(G) - return 1 + return TRUE else log_debug("[attacker] attempted to feed [G.affecting] to [user] ([user.type]) but it failed.") - ///// If grab clicked on grabbed + ///// If user clicked on their grabbed target else if((src == G.affecting) && (attacker.a_intent == I_GRAB) && (attacker.zone_sel.selecting == BP_TORSO) && (is_vore_predator(G.affecting))) + if(!(G.affecting.feeding)) + to_chat(user, "[G.affecting] isn't willing to be fed.") + return FALSE if (attacker.feed_self_to_grabbed(attacker, G.affecting)) qdel(G) - return 1 + return TRUE else log_debug("[attacker] attempted to feed [user] to [G.affecting] ([G.affecting.type]) but it failed.") - ///// If grab clicked on anyone else + ///// If user clicked on anyone else but their grabbed target else if((src != G.affecting) && (src != G.assailant) && (is_vore_predator(src))) + if(!(src.feeding)) + to_chat(user, "[src] isn't willing to be fed.") + return FALSE + if(!(G.affecting.devourable)) + to_chat(user, "[G.affecting] isn't able to be devoured.") + return FALSE + if(!(G.affecting.feeding)) + to_chat(user, "[src] isn't able to be fed to someone.") + return FALSE + if (attacker.feed_grabbed_to_other(attacker, G.affecting, src)) qdel(G) - return 1 + return TRUE else log_debug("[attacker] attempted to feed [G.affecting] to [src] ([src.type]) but it failed.") @@ -122,7 +142,7 @@ else if(istype(I,/obj/item/weapon/holder)) var/obj/item/weapon/holder/H = I - if(!isliving(user)) return 0 // Return 0 to continue upper procs + if(!isliving(user)) return FALSE // return FALSE to continue upper procs var/mob/living/attacker = user // Typecast to living if (is_vore_predator(src)) @@ -130,7 +150,7 @@ if (attacker.eat_held_mob(attacker, M, src)) if (H.held_mob == M) H.held_mob = null - return 1 //Return 1 to exit upper procs + return TRUE //return TRUE to exit upper procs else log_debug("[attacker] attempted to feed [H.contents] to [src] ([src.type]) but it failed.") @@ -140,16 +160,16 @@ if(confirm == "Yes!") var/obj/belly/B = input("Which belly?","Select A Belly") as null|anything in vore_organs if(!istype(B)) - return 1 + return TRUE visible_message("[user] is trying to stuff a beacon into [src]'s [lowertext(B.name)]!","[user] is trying to stuff a beacon into you!") if(do_after(user,30,src)) user.drop_item() I.forceMove(B) - return 1 + return TRUE else - return 1 //You don't get to hit someone 'later' + return TRUE //You don't get to hit someone 'later' - return 0 + return FALSE // // Our custom resist catches for /mob/living @@ -164,39 +184,41 @@ //Other overridden resists go here - return 0 + return FALSE // // Verb for saving vore preferences to save file // /mob/living/proc/save_vore_prefs() if(!client || !client.prefs_vr) - return 0 + return FALSE if(!copy_to_prefs_vr()) - return 0 + return FALSE if(!client.prefs_vr.save_vore()) - return 0 + return FALSE - return 1 + return TRUE /mob/living/proc/apply_vore_prefs() if(!client || !client.prefs_vr) - return 0 + return FALSE if(!client.prefs_vr.load_vore()) - return 0 + return FALSE if(!copy_from_prefs_vr()) - return 0 + return FALSE - return 1 + return TRUE /mob/living/proc/copy_to_prefs_vr() if(!client || !client.prefs_vr) to_chat(src,"You attempted to save your vore prefs but somehow you're in this character without a client.prefs_vr variable. Tell a dev.") - return 0 + return FALSE var/datum/vore_preferences/P = client.prefs_vr P.digestable = src.digestable + P.devourable = src.devourable + P.feeding = src.feeding P.digest_leave_remains = src.digest_leave_remains P.allowmobvore = src.allowmobvore P.vore_taste = src.vore_taste @@ -211,7 +233,7 @@ P.belly_prefs = serialized - return 1 + return TRUE // // Proc for applying vore preferences, given bellies @@ -219,11 +241,13 @@ /mob/living/proc/copy_from_prefs_vr() if(!client || !client.prefs_vr) to_chat(src,"You attempted to apply your vore prefs but somehow you're in this character without a client.prefs_vr variable. Tell a dev.") - return 0 + return FALSE var/datum/vore_preferences/P = client.prefs_vr digestable = P.digestable + devourable = P.devourable + feeding = P.feeding digest_leave_remains = P.digest_leave_remains allowmobvore = P.allowmobvore vore_taste = P.vore_taste @@ -236,7 +260,7 @@ for(var/entry in P.belly_prefs) list_to_object(entry,src) - return 1 + return TRUE // // Release everything in every vore organ @@ -304,7 +328,7 @@ /mob/living/proc/get_taste_message(allow_generic = 1) if(!vore_taste && !allow_generic) - return 0 + return FALSE var/taste_message = "" if(vore_taste && (vore_taste != "")) @@ -343,9 +367,8 @@ SA.prey_excludes[src] = world.time log_and_message_admins("[key_name(src)] used the OOC escape button to get out of [key_name(B.owner)] ([B.owner ? "JMP" : "null"])") - if(isanimal(B.owner)) - var/mob/living/simple_mob/SA = B.owner - SA.update_icons() + if(!ishuman(B.owner)) + B.owner.update_icons() //You're in a dogborg! else if(istype(loc, /obj/item/device/dogborg/sleeper)) @@ -410,7 +433,7 @@ var/user_to_prey = get_dist(get_turf(user),get_turf(prey)) if(user_to_pred > 1 || user_to_prey > 1) - return 0 + return FALSE // Prepare messages if(user == pred) //Feeding someone to yourself @@ -432,7 +455,7 @@ //Timer and progress bar if(!do_after(user, swallow_time, prey)) - return 0 // Prey escpaed (or user disabled) before timer expired. + return FALSE // Prey escpaed (or user disabled) before timer expired. // If we got this far, nom successful! Announce it! user.visible_message(success_msg) @@ -451,7 +474,7 @@ add_attack_logs(pred,prey,"Eaten via [belly.name]") else add_attack_logs(user,pred,"Forced to eat [key_name(prey)]") - return 1 + return TRUE // // Magical pred-air breathing for inside preds @@ -566,7 +589,7 @@ to_chat(src, "You are not allowed to eat this.") return - if(is_type_in_list(I,edible_trash)) + if(is_type_in_list(I,edible_trash) | adminbus_trash) if(I.hidden_uplink) to_chat(src, "You really should not be eating this.") message_admins("[key_name(src)] has attempted to ingest an uplink item. ([src ? "JMP" : "null"])") @@ -684,11 +707,13 @@ if("CHAT_LOOC" in client.prefs.preferences_disabled) dispvoreprefs += "LOOC DISABLED
" dispvoreprefs += "Digestable: [digestable ? "Enabled" : "Disabled"]
" + dispvoreprefs += "Devourable: [devourable ? "Enabled" : "Disabled"]
" + dispvoreprefs += "Feedable: [feeding ? "Enabled" : "Disabled"]
" dispvoreprefs += "Leaves Remains: [digest_leave_remains ? "Enabled" : "Disabled"]
" dispvoreprefs += "Mob Vore: [allowmobvore ? "Enabled" : "Disabled"]
" dispvoreprefs += "Healbelly permission: [permit_healbelly ? "Allowed" : "Disallowed"]
" - dispvoreprefs += "Drop-nom prey: [can_be_drop_prey ? "Enabled" : "Disabled"]
" - dispvoreprefs += "Drop-nom pred: [can_be_drop_pred ? "Enabled" : "Disabled"]
" + dispvoreprefs += "Spontaneous vore prey: [can_be_drop_prey ? "Enabled" : "Disabled"]
" + dispvoreprefs += "Spontaneous vore pred: [can_be_drop_pred ? "Enabled" : "Disabled"]
" user << browse("Vore prefs: [src]
[dispvoreprefs]
", "window=[name];size=200x300;can_resize=0;can_minimize=0") onclose(user, "[name]") return diff --git a/code/modules/vore/eating/silicon_vr.dm b/code/modules/vore/eating/silicon_vr.dm index ef8b089777..65400c7707 100644 --- a/code/modules/vore/eating/silicon_vr.dm +++ b/code/modules/vore/eating/silicon_vr.dm @@ -78,7 +78,7 @@ return hologram.visible_message("[hologram] starts engulfing [prey] in hardlight holograms!") - src << "You begin engulfing [prey] in hardlight holograms." //Can't be part of the above, because the above is from the hologram. + to_chat(src, "You begin engulfing [prey] in hardlight holograms.") //Can't be part of the above, because the above is from the hologram. if(do_after(user=eyeobj,delay=50,target=prey,needhand=0) && holo && hologram && !hologram.bellied) //Didn't move and still projecting and effect exists and no other bellied people hologram.get_prey(prey) diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index d5eb653d99..11e5035099 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -1,6 +1,6 @@ ///////////////////// Simple Animal ///////////////////// /mob/living/simple_mob - var/swallowTime = 30 //How long it takes to eat its prey in 1/10 of a second. The default is 3 seconds. + var/swallowTime = (3 SECONDS) //How long it takes to eat its prey in 1/10 of a second. The default is 3 seconds. var/list/prey_excludes = list() //For excluding people from being eaten. // @@ -42,13 +42,24 @@ var/confirm = alert(user, "Enabling digestion on [name] will cause it to digest all stomach contents. Using this to break OOC prefs is against the rules. Digestion will reset after 20 minutes.", "Enabling [name]'s Digestion", "Enable", "Cancel") if(confirm == "Enable") vore_selected.digest_mode = DM_DIGEST - spawn(12000) //12000=20 minutes + spawn(20 MINUTES) if(src) vore_selected.digest_mode = vore_default_mode else var/confirm = alert(user, "This mob is currently set to process all stomach contents. Do you want to disable this?", "Disabling [name]'s Digestion", "Disable", "Cancel") if(confirm == "Disable") vore_selected.digest_mode = DM_HOLD +/mob/living/simple_mob/verb/toggle_fancygurgle() + set name = "Toggle Animal's Gurgle sounds" + set desc = "Switches between Fancy and Classic sounds on this mob." + set category = "OOC" + set src in oview(1) + + var/mob/living/user = usr //I mean, At least ghosts won't use it. + if(!istype(user) || user.stat) return + + vore_selected.fancy_vore = !vore_selected.fancy_vore + to_chat(user, "[src] is now using [vore_selected.fancy_vore ? "Fancy" : "Classic"] vore sounds.") /mob/living/simple_mob/attackby(var/obj/item/O, var/mob/user) if (istype(O, /obj/item/weapon/newspaper) && !(ckey || (ai_holder.hostile && faction != user.faction)) && isturf(user.loc)) @@ -70,7 +81,7 @@ for(var/mob/living/L in living_mobs(0)) //add everyone on the tile to the do-not-eat list for a while if(!(L in prey_excludes)) // Unless they're already on it, just to avoid fuckery. prey_excludes += L - spawn(3600) + spawn(5 MINUTES) if(src && L) prey_excludes -= L else diff --git a/code/modules/vore/eating/vore_vr.dm b/code/modules/vore/eating/vore_vr.dm index 2b4a82da6c..168ec9ccfa 100644 --- a/code/modules/vore/eating/vore_vr.dm +++ b/code/modules/vore/eating/vore_vr.dm @@ -19,12 +19,14 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE -Aro <3 */ +#define VORE_VERSION 2 //This is a Define so you don't have to worry about magic numbers. + // // Overrides/additions to stock defines go here, as well as hooks. Sort them by // the object they are overriding. So all /mob/living together, etc. // /datum/configuration - var/items_survive_digestion = 1 //For configuring if the important_items survive digestion + var/items_survive_digestion = TRUE //For configuring if the important_items survive digestion // // The datum type bolted onto normal preferences datums for storing Virgo stuff @@ -35,13 +37,15 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE /hook/client_new/proc/add_prefs_vr(client/C) C.prefs_vr = new/datum/vore_preferences(C) if(C.prefs_vr) - return 1 + return TRUE - return 0 + return FALSE /datum/vore_preferences //Actual preferences var/digestable = TRUE + var/devourable = TRUE + var/feeding = TRUE var/digest_leave_remains = FALSE var/allowmobvore = TRUE var/list/belly_prefs = list() @@ -68,9 +72,9 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE /proc/is_vore_predator(var/mob/living/O) if(istype(O,/mob/living)) if(O.vore_organs.len > 0) - return 1 + return TRUE - return 0 + return FALSE // // Belly searching for simplifying other procs @@ -89,27 +93,29 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE /datum/vore_preferences/proc/load_vore() if(!client || !client_ckey) - return 0 //No client, how can we save? + return FALSE //No client, how can we save? if(!client.prefs || !client.prefs.default_slot) - return 0 //Need to know what character to load! + return FALSE //Need to know what character to load! slot = client.prefs.default_slot load_path(client_ckey,slot) - if(!path) return 0 //Path couldn't be set? + if(!path) return FALSE //Path couldn't be set? if(!fexists(path)) //Never saved before save_vore() //Make the file first - return 1 + return TRUE var/list/json_from_file = json_decode(file2text(path)) if(!json_from_file) - return 0 //My concern grows + return FALSE //My concern grows var/version = json_from_file["version"] json_from_file = patch_version(json_from_file,version) digestable = json_from_file["digestable"] + devourable = json_from_file["devourable"] + feeding = json_from_file["feeding"] digest_leave_remains = json_from_file["digest_leave_remains"] allowmobvore = json_from_file["allowmobvore"] vore_taste = json_from_file["vore_taste"] @@ -121,6 +127,10 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE //Quick sanitize if(isnull(digestable)) digestable = TRUE + if(isnull(devourable)) + devourable = TRUE + if(isnull(feeding)) + feeding = TRUE if(isnull(digest_leave_remains)) digest_leave_remains = FALSE if(isnull(allowmobvore)) @@ -134,15 +144,17 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE if(isnull(belly_prefs)) belly_prefs = list() - return 1 + return TRUE /datum/vore_preferences/proc/save_vore() - if(!path) return 0 + if(!path) return FALSE - var/version = 1 //For "good times" use in the future + var/version = VORE_VERSION //For "good times" use in the future var/list/settings_list = list( "version" = version, "digestable" = digestable, + "devourable" = devourable, + "feeding" = feeding, "digest_leave_remains" = digest_leave_remains, "allowmobvore" = allowmobvore, "vore_taste" = vore_taste, @@ -156,7 +168,7 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE var/json_to_file = json_encode(settings_list) if(!json_to_file) log_debug("Saving: [path] failed jsonencode") - return 0 + return FALSE //Write it out #ifdef RUST_G @@ -169,9 +181,9 @@ V::::::V V::::::VO:::::::OOO:::::::ORR:::::R R:::::REE::::::EEEEEE #endif if(!fexists(path)) log_debug("Saving: [path] failed file write") - return 0 + return FALSE - return 1 + return TRUE //Can do conversions here /datum/vore_preferences/proc/patch_version(var/list/json_from_file,var/version) diff --git a/code/modules/vore/eating/vorepanel_vr.dm b/code/modules/vore/eating/vorepanel_vr.dm index 4bd8a7bc58..32fa61a28d 100644 --- a/code/modules/vore/eating/vorepanel_vr.dm +++ b/code/modules/vore/eating/vorepanel_vr.dm @@ -4,8 +4,8 @@ #define BELLIES_MAX 30 #define BELLIES_NAME_MIN 2 -#define BELLIES_NAME_MAX 12 -#define BELLIES_DESC_MAX 1024 +#define BELLIES_NAME_MAX 20 +#define BELLIES_DESC_MAX 2048 #define FLAVOR_MAX 40 /mob/living/proc/insidePanel() @@ -189,6 +189,13 @@ dat += "Name:" dat += " '[selected.name]'" + //Belly Type button + dat += "
Is this belly fleshy:" + dat += "[selected.is_wet ? "Yes" : "No"]" + if(selected.is_wet) + dat += "
Internal loop for prey?:" + dat += "[selected.wet_loop ? "Yes" : "No"]" + //Digest Mode Button dat += "
Belly Mode:" var/mode = selected.digest_mode @@ -229,10 +236,18 @@ dat += "
Flavor Text:" dat += " '[selected.desc]'" + //Belly Sound Fanciness + dat += "
Use Fancy Sounds:" + dat += "[selected.fancy_vore ? "Yes" : "No"]" + //Belly sound - dat += "
Set Vore Sound" + dat += "
Vore Sound: [selected.vore_sound]" dat += "Test" + //Release sound + dat += "
Release Sound: [selected.release_sound]" + dat += "Test" + //Belly messages dat += "
Belly Messages" @@ -293,31 +308,48 @@ dat += "
" switch(user.digestable) - if(1) - dat += "Toggle Digestable" - if(0) - dat += "Toggle Digestable" - + if(TRUE) + dat += "Toggle Digestable (Currently: ON)" + if(FALSE) + dat += "Toggle Digestable (Currently: OFF)" + switch(user.devourable) + if(TRUE) + dat += "Toggle Devourable (Currently: ON)" + if(FALSE) + dat += "Toggle Devourable (Currently: OFF)" + switch(user.feeding) + if(TRUE) + dat += "
Toggle Feeding (Currently: ON)" + if(FALSE) + dat += "
Toggle Feeding (Currently: OFF)" switch(user.digest_leave_remains) - if(1) - dat += "Toggle Leaving Remains" - if(0) - dat += "Toggle Leaving Remains" - + if(TRUE) + dat += "Toggle Leaving Remains (Currently: ON)" + if(FALSE) + dat += "Toggle Leaving Remains (Currently: OFF)" switch(user.allowmobvore) - if(1) - dat += "
Toggle Mob Vore" - if(0) - dat += "
Toggle Mob Vore" - + if(TRUE) + dat += "
Toggle Mob Vore (Currently: ON)" + if(FALSE) + dat += "
Toggle Mob Vore (Currently: OFF)" switch(user.permit_healbelly) - if(1) - dat += "Toggle Healbelly Permission" - if(0) - dat += "Toggle Healbelly Permission" + if(TRUE) + dat += "Toggle Healbelly Permission (Currently: ON)" + if(FALSE) + dat += "Toggle Healbelly Permission (Currently: OFF)" + + switch(user.can_be_drop_prey) + if(TRUE) + dat += "
Toggle Prey Spontaneous Vore (Currently: ON)" + if(FALSE) + dat += "
Toggle Prey Spontaneous Vore (Currently: OFF)" + + switch(user.can_be_drop_pred) + if(TRUE) + dat += "Toggle Pred Spontaneous Vore (Currently: ON)" + if(FALSE) + dat += "Toggle Pred Spontaneous Vore (Currently: OFF)" - dat += "
Toggle Drop-nom Prey" //These two get their own, custom row, too. - dat += "Toggle Drop-nom Pred" dat += "
Set Your Taste" dat += "Toggle Hunger Noises" @@ -342,7 +374,7 @@ if(href_list["show_int"]) show_interacts = !show_interacts - return 1 //Force update + return TRUE //Force update if(href_list["int_help"]) alert("These control how your belly responds to someone using 'resist' while inside you. The percent chance to trigger each is listed below, \ @@ -350,13 +382,13 @@ These only function as long as interactions are turned on in general. Keep in mind, the 'belly mode' interactions (digest/absorb) \ will affect all prey in that belly, if one resists and triggers digestion/absorption. If multiple trigger at the same time, \ only the first in the order of 'Escape > Transfer > Absorb > Digest' will occur.","Interactions Help") - return 0 //Force update + return FALSE //Force update if(href_list["outsidepick"]) var/atom/movable/tgt = locate(href_list["outsidepick"]) var/obj/belly/OB = locate(href_list["outsidebelly"]) if(!(tgt in OB)) //Aren't here anymore, need to update menu. - return 1 + return TRUE var/intent = "Examine" if(istype(tgt,/mob/living)) @@ -369,7 +401,7 @@ if("Help Out") //Help the inside-mob out if(user.stat || user.absorbed || M.absorbed) to_chat(user,"You can't do that in your state!") - return 1 + return TRUE to_chat(user,"You begin to push [M] to freedom!") to_chat(M,"[usr] begins to push you to freedom!") @@ -388,11 +420,11 @@ if("Devour") //Eat the inside mob if(user.absorbed || user.stat) to_chat(user,"You can't do that in your state!") - return 1 + return TRUE if(!user.vore_selected) to_chat(user,"Pick a belly on yourself first!") - return 1 + return TRUE var/obj/belly/TB = user.vore_selected to_chat(user,"You begin to [lowertext(TB.vore_verb)] [M] into your [lowertext(TB.name)]!") @@ -410,7 +442,7 @@ var/obj/item/T = tgt if(!(tgt in OB)) //Doesn't exist anymore, update. - return 1 + return TRUE intent = alert("What do you want to do to that?","Query","Examine","Use Hand") switch(intent) if("Examine") @@ -419,7 +451,7 @@ if("Use Hand") if(user.stat) to_chat(user,"You can't do that in your state!") - return 1 + return TRUE user.ClickOn(T) sleep(5) //Seems to exit too fast for the panel to update @@ -432,23 +464,23 @@ intent = alert("Eject all, Move all?","Query","Eject all","Cancel","Move all") switch(intent) if("Cancel") - return 0 + return FALSE if("Eject all") if(user.stat) to_chat(user,"You can't do that in your state!") - return 0 + return FALSE selected.release_all_contents() if("Move all") if(user.stat) to_chat(user,"You can't do that in your state!") - return 0 + return FALSE var/obj/belly/choice = input("Move all where?","Select Belly") as null|anything in user.vore_organs if(!choice) - return 0 + return FALSE for(var/atom/movable/tgt in selected) to_chat(tgt,"You're squished from [user]'s [lowertext(selected)] to their [lowertext(choice.name)]!") @@ -456,7 +488,7 @@ var/atom/movable/tgt = locate(href_list["insidepick"]) if(!(tgt in selected)) //Old menu, needs updating because they aren't really there. - return 1 //Forces update + return TRUE //Forces update intent = "Examine" intent = alert("Examine, Eject, Move? Examine if you want to leave this box.","Query","Examine","Eject","Move") switch(intent) @@ -466,25 +498,25 @@ if("Eject") if(user.stat) to_chat(user,"You can't do that in your state!") - return 0 + return FALSE selected.release_specific_contents(tgt) if("Move") if(user.stat) to_chat(user,"You can't do that in your state!") - return 0 + return FALSE var/obj/belly/choice = input("Move [tgt] where?","Select Belly") as null|anything in user.vore_organs if(!choice || !(tgt in selected)) - return 0 + return FALSE to_chat(tgt,"You're squished from [user]'s [lowertext(selected.name)] to their [lowertext(choice.name)]!") selected.transfer_contents(tgt, choice) if(href_list["newbelly"]) if(user.vore_organs.len >= BELLIES_MAX) - return 0 + return FALSE var/new_name = html_encode(input(usr,"New belly's name:","New Belly") as text|null) @@ -501,7 +533,7 @@ if(failure_msg) //Something went wrong. alert(user,failure_msg,"Error!") - return 0 + return FALSE var/obj/belly/NB = new(user) NB.name = new_name @@ -530,10 +562,16 @@ if(failure_msg) //Something went wrong. alert(user,failure_msg,"Error!") - return 0 + return FALSE selected.name = new_name + if(href_list["b_wetness"]) + selected.is_wet = !selected.is_wet + + if(href_list["b_wetloop"]) + selected.wet_loop = !selected.wet_loop + if(href_list["b_mode"]) var/list/menu_list = selected.digest_modes.Copy() if(istype(usr,/mob/living/carbon/human)) @@ -541,13 +579,13 @@ var/new_mode = input("Choose Mode (currently [selected.digest_mode])") as null|anything in menu_list if(!new_mode) - return 0 + return FALSE if(new_mode == DM_TRANSFORM) //Snowflek submenu var/list/tf_list = selected.transform_modes var/new_tf_mode = input("Choose TF Mode (currently [selected.tf_mode])") as null|anything in tf_list if(!new_tf_mode) - return 0 + return FALSE selected.tf_mode = new_tf_mode selected.digest_mode = new_mode @@ -557,7 +595,7 @@ var/list/menu_list = selected.mode_flag_list.Copy() var/toggle_addon = input("Toggle Addon") as null|anything in menu_list if(!toggle_addon) - return 0 + return FALSE selected.mode_flags ^= selected.mode_flag_list[toggle_addon] selected.items_preserved.Cut() //Re-evaltuate all items in belly on addon toggle @@ -566,7 +604,7 @@ var/new_mode = input("Choose Mode (currently [selected.item_digest_mode])") as null|anything in menu_list if(!new_mode) - return 0 + return FALSE selected.item_digest_mode = new_mode selected.items_preserved.Cut() //Re-evaltuate all items in belly on belly-mode change @@ -578,14 +616,14 @@ var/list/menu_list = contamination_flavors.Copy() var/new_flavor = input("Choose Contamination Flavor Text Type (currently [selected.contamination_flavor])") as null|anything in menu_list if(!new_flavor) - return 0 + return FALSE selected.contamination_flavor = new_flavor if(href_list["b_contamination_color"]) var/list/menu_list = contamination_colors.Copy() var/new_color = input("Choose Contamination Color (currently [selected.contamination_color])") as null|anything in menu_list if(!new_color) - return 0 + return FALSE selected.contamination_color = new_color selected.items_preserved.Cut() //To re-contaminate for new color @@ -596,10 +634,10 @@ new_desc = readd_quotes(new_desc) if(length(new_desc) > BELLIES_DESC_MAX) alert("Entered belly desc too long. [BELLIES_DESC_MAX] character limit.","Error") - return 0 + return FALSE selected.desc = new_desc else //Returned null - return 0 + return FALSE if(href_list["b_msgs"]) var/list/messages = list( @@ -654,21 +692,58 @@ if(length(new_verb) > BELLIES_NAME_MAX || length(new_verb) < BELLIES_NAME_MIN) alert("Entered verb length invalid (must be longer than [BELLIES_NAME_MIN], no longer than [BELLIES_NAME_MAX]).","Error") - return 0 + return FALSE selected.vore_verb = new_verb - if(href_list["b_sound"]) - var/choice = input(user,"Currently set to [selected.vore_sound]","Select Sound") as null|anything in vore_sounds + if(href_list["b_fancy_sound"]) + selected.fancy_vore = !selected.fancy_vore + selected.vore_sound = "Gulp" + selected.release_sound = "Splatter" + // defaults as to avoid potential bugs + + if(href_list["b_release"]) + var/choice + if(selected.fancy_vore) + choice = input(user,"Currently set to [selected.release_sound]","Select Sound") as null|anything in fancy_release_sounds + else + choice = input(user,"Currently set to [selected.release_sound]","Select Sound") as null|anything in classic_release_sounds + if(!choice) - return 0 + return FALSE + + selected.release_sound = choice + + if(href_list["b_releasesoundtest"]) + var/sound/releasetest + if(selected.fancy_vore) + releasetest = fancy_release_sounds[selected.release_sound] + else + releasetest = classic_release_sounds[selected.release_sound] + + if(releasetest) + SEND_SOUND(user, releasetest) + + if(href_list["b_sound"]) + var/choice + if(selected.fancy_vore) + choice = input(user,"Currently set to [selected.vore_sound]","Select Sound") as null|anything in fancy_vore_sounds + else + choice = input(user,"Currently set to [selected.vore_sound]","Select Sound") as null|anything in classic_vore_sounds + + if(!choice) + return FALSE selected.vore_sound = choice if(href_list["b_soundtest"]) - var/soundfile = vore_sounds[selected.vore_sound] - if(soundfile) - user << soundfile + var/sound/voretest + if(selected.fancy_vore) + voretest = fancy_vore_sounds[selected.vore_sound] + else + voretest = classic_vore_sounds[selected.vore_sound] + if(voretest) + SEND_SOUND(user, voretest) if(href_list["b_tastes"]) selected.can_taste = !selected.can_taste @@ -742,7 +817,7 @@ var/obj/belly/choice = input("Where do you want your [lowertext(selected.name)] to lead if prey resists?","Select Belly") as null|anything in (user.vore_organs + "None - Remove" - selected) if(!choice) //They cancelled, no changes - return 0 + return FALSE else if(choice == "None - Remove") selected.transferlocation = null else @@ -761,7 +836,7 @@ if(href_list["b_del"]) var/alert = alert("Are you sure you want to delete your [lowertext(selected.name)]?","Confirmation","Delete","Cancel") if(!(alert == "Delete")) - return 0 + return FALSE var/failure_msg = "" @@ -782,7 +857,7 @@ if(failure_msg) alert(user,failure_msg,"Error!") - return 0 + return FALSE qdel(selected) selected = user.vore_organs[1] @@ -797,7 +872,7 @@ if(href_list["applyprefs"]) var/alert = alert("Are you sure you want to reload character slot preferences? This will remove your current vore organs and eject their contents.","Confirmation","Reload","Cancel") if(!alert == "Reload") - return 0 + return FALSE if(!user.apply_vore_prefs()) alert("ERROR: Virgo-specific preferences failed to apply!","Error") else @@ -806,29 +881,29 @@ if(href_list["setflavor"]) var/new_flavor = html_encode(input(usr,"What your character tastes like (40ch limit). This text will be printed to the pred after 'X tastes of...' so just put something like 'strawberries and cream':","Character Flavor",user.vore_taste) as text|null) if(!new_flavor) - return 0 + return FALSE new_flavor = readd_quotes(new_flavor) if(length(new_flavor) > FLAVOR_MAX) alert("Entered flavor/taste text too long. [FLAVOR_MAX] character limit.","Error!") - return 0 + return FALSE user.vore_taste = new_flavor if(href_list["toggle_dropnom_pred"]) - var/choice = alert(user, "You are currently [user.can_be_drop_pred ? " able to eat prey that fall from above or that you fall onto" : "not able to eat prey that fall from above or that you fall onto."]", "", "Be Pred", "Cancel", "Don't be Pred") + var/choice = alert(user, "This toggle is for spontaneous, environment related vore as a predator, including drop-noms, teleporters, etc. You are currently [user.can_be_drop_pred ? " able to eat prey that you encounter by environmental actions." : "avoiding eating prey encountered in the environment."]", "", "Be Pred", "Cancel", "Don't be Pred") switch(choice) if("Cancel") - return 0 + return FALSE if("Be Pred") user.can_be_drop_pred = TRUE if("Don't be Pred") user.can_be_drop_pred = FALSE if(href_list["toggle_dropnom_prey"]) - var/choice = alert(user, "You are currently [user.can_be_drop_prey ? "able to be eaten." : "not able to be eaten."]", "", "Be Prey", "Cancel", "Don't Be Prey") + var/choice = alert(user, "This toggle is for spontaneous, environment related vore as a prey, including drop-noms, teleporters, etc. You are currently [user.can_be_drop_prey ? "able to be eaten by environmental actions." : "not able to be eaten by environmental actions."]", "", "Be Prey", "Cancel", "Don't Be Prey") switch(choice) if("Cancel") - return 0 + return FALSE if("Be Prey") user.can_be_drop_prey = TRUE if("Don't Be Prey") @@ -838,7 +913,7 @@ var/choice = alert(user, "This button is for those who don't like being digested. It can make you undigestable. Messages admins when changed, so don't try to use it for mechanical benefit. Set it once and save it. Digesting you is currently: [user.digestable ? "Allowed" : "Prevented"]", "", "Allow Digestion", "Cancel", "Prevent Digestion") switch(choice) if("Cancel") - return 0 + return FALSE if("Allow Digestion") user.digestable = TRUE if("Prevent Digestion") @@ -849,11 +924,37 @@ if(user.client.prefs_vr) user.client.prefs_vr.digestable = user.digestable + if(href_list["toggleddevour"]) + var/choice = alert(user, "This button is to toggle your ability to be devoured by others. Devouring is currently: [user.devourable ? "Allowed" : "Prevented"]", "", "Be Devourable", "Cancel", "Prevent being Devoured") + switch(choice) + if("Cancel") + return FALSE + if("Be Devourable") + user.devourable = TRUE + if("Prevent being Devoured") + user.devourable = FALSE + + if(user.client.prefs_vr) + user.client.prefs_vr.devourable = user.devourable + + if(href_list["toggledfeed"]) + var/choice = alert(user, "This button is to toggle your ability to be fed to or by others vorishly. Force Feeding is currently: [user.feeding ? "Allowed" : "Prevented"]", "", "Allow Feeding", "Cancel", "Prevent Feeding") + switch(choice) + if("Cancel") + return FALSE + if("Allow Feeding") + user.feeding = TRUE + if("Prevent Feeding") + user.feeding = FALSE + + if(user.client.prefs_vr) + user.client.prefs_vr.feeding = user.feeding + if(href_list["toggledlm"]) var/choice = alert(user, "This button allows preds to have your remains be left in their belly after you are digested. This will only happen if pred sets their belly to do so. Remains consist of skeletal parts. Currently you are [user.digest_leave_remains? "" : "not"] leaving remains.", "", "Allow Post-digestion Remains", "Cancel", "Disallow Post-digestion Remains") switch(choice) if("Cancel") - return 0 + return FALSE if("Allow Post-digestion Remains") user.digest_leave_remains = TRUE if("Disallow Post-digestion Remains") @@ -866,7 +967,7 @@ var/choice = alert(user, "This button is for those who don't like being eaten by mobs. Messages admins when changed, so don't try to use it for mechanical benefit. Set it once and save it. Mobs are currently: [user.allowmobvore ? "Allowed to eat" : "Prevented from eating"] you.", "", "Allow Mob Predation", "Cancel", "Prevent Mob Predation") switch(choice) if("Cancel") - return 0 + return FALSE if("Allow Mob Predation") user.allowmobvore = TRUE if("Prevent Mob Predation") @@ -881,7 +982,7 @@ var/choice = alert(user, "This button is for those who don't like healbelly used on them as a mechanic. It does not affect anything, but is displayed under mechanical prefs for ease of quick checks. You are currently: [user.allowmobvore ? "Okay" : "Not Okay"] with players using healbelly on you.", "", "Allow Healing Belly", "Cancel", "Disallow Healing Belly") switch(choice) if("Cancel") - return 0 + return FALSE if("Allow Healing Belly") user.permit_healbelly = TRUE if("Disallow Healing Belly") @@ -894,11 +995,11 @@ var/choice = alert(user, "Toggle audible hunger noises. Currently: [user.noisy ? "Enabled" : "Disabled"]", "", "Enable audible hunger", "Cancel", "Disable audible hunger") switch(choice) if("Cancel") - return 0 + return FALSE if("Enable audible hunger") user.noisy = TRUE if("Disable audible hunger") user.noisy = FALSE //Refresh when interacted with, returning 1 makes vore_look.Topic update - return 1 + return TRUE diff --git a/code/modules/vore/fluffstuff/custom_boxes_vr.dm b/code/modules/vore/fluffstuff/custom_boxes_vr.dm index 07e018f7a6..489cab17f5 100644 --- a/code/modules/vore/fluffstuff/custom_boxes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_boxes_vr.dm @@ -60,9 +60,7 @@ desc = "A kit containing Tasald's equipment." has_items = list( /obj/item/clothing/suit/storage/det_suit/fluff/tasald, - /obj/item/clothing/suit/storage/det_suit/fluff/tas_coat, - /obj/item/clothing/under/det/fluff/tasald, - /obj/item/weapon/implanter/loyalty) + /obj/item/clothing/under/det/fluff/tasald) //bwoincognito:Octavious Ward /obj/item/weapon/storage/box/fluff/octavious diff --git a/code/modules/vore/fluffstuff/custom_clothes_vr.dm b/code/modules/vore/fluffstuff/custom_clothes_vr.dm index 35b205f982..713baa1c99 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_vr.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_vr.dm @@ -502,22 +502,6 @@ body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS armor = list(melee = 40, bullet = 30, laser = 30, energy = 10, bomb = 10, bio = 0, rad = 0) -// bwoincognito:Tasald Corlethian -/obj/item/clothing/suit/storage/det_suit/fluff/tas_coat - name = "Armored Colony coat" - desc = "Dark green and grey colored sleeveless long coat with two thick metal shoulder pads. has seen some wear and tear, with noticeable patches in the fabric, scratches on the shoulder pads, but with a clean patch on the left upper chest. It has a red NT marked on the right shoulder pad and red Security on the left. " - allowed = list(/obj/item/weapon/gun,/obj/item/weapon/reagent_containers/spray/pepper,/obj/item/ammo_magazine,/obj/item/ammo_casing,/obj/item/weapon/melee/baton,/obj/item/weapon/handcuffs,/obj/item/device/flashlight/maglight,/obj/item/clothing/head/helmet) - - icon = 'icons/vore/custom_clothes_vr.dmi' - icon_state = "tasaldcoat" - - icon_override = 'icons/vore/custom_clothes_vr.dmi' - item_state = "tasaldcoat_mob" - - blood_overlay_type = "coat" - body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS - armor = list(melee = 60, bullet = 60, laser = 60, energy = 40, bomb = 40, bio = 0, rad = 0) - //Event Costumes Below /obj/item/clothing/head/helmet/fluff/freddy name = "Animatronic Suit Helmet" @@ -1917,3 +1901,19 @@ Departamental Swimsuits, for general use /obj/item/clothing/under/fluff/slime_skeleton/digest_act(var/atom/movable/item_storage = null) return FALSE //Indigestible + +//Bacon12366:Elly Brown +/obj/item/clothing/accessory/sweater/fluff/star + name = "Star Sweater" + desc = "It's a white long sweater with a big yellow star at the chest. It seems like it's made of a soft material." + + icon = 'icons/vore/custom_clothes_vr.dmi' + icon_state = "star_sweater" + + icon_override = 'icons/vore/custom_clothes_vr.dmi' + item_state = "star_sweater" + + slot_flags = SLOT_OCLOTHING | SLOT_TIE + body_parts_covered = UPPER_TORSO|LOWER_TORSO|ARMS + w_class = ITEMSIZE_NORMAL + slot = ACCESSORY_SLOT_OVER \ No newline at end of file diff --git a/code/modules/vore/fluffstuff/custom_clothes_yw.dm b/code/modules/vore/fluffstuff/custom_clothes_yw.dm index e953c4005c..ab49029cb9 100644 --- a/code/modules/vore/fluffstuff/custom_clothes_yw.dm +++ b/code/modules/vore/fluffstuff/custom_clothes_yw.dm @@ -228,6 +228,16 @@ icon_override = 'icons/vore/custom_clothes_yw.dmi' item_state = "koreihelmet_mob" +/obj/item/clothing/accessory/medal/silver/fluff/kaeninmedal + name = "Kaenin Qerrlar\'s medal of valor" + desc = "A silver medal, polished to a shine. On it, it says \"For Honorable Service, Kaenin Qerrlar, among the first to volunteer to save the world of Virgo-Erigone Four, homeworld of the zorren. Qerrlar piloted a combat exosuit to combat a hostile lifeform until it simply ran out of power, after this, he continued on foot.\" It is adorned with a purple ribbon." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "valormedal" + icon_override = 'icons/vore/custom_clothes_yw.dmi' + item_state = "valormedal_mob" + overlay_state = "valormedal_mob" + + // ************* // CynicalTester // ************* @@ -725,6 +735,27 @@ "Teshari" = 'icons/vore/custom_onmob_yw.dmi' ) +/obj/item/clothing/suit/storage/seromi/cloak/fluff/strix_cco + name = "Central Command Cloak" + desc = "It drapes over a Avali's shoulders and closes at the neck with pockets convienently placed inside. It bears the Central Command's colors. The name 'Strix Hades' is embroilled in gold lettering around a golden embroilled outline on the neck collar." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "tesh_cloak_cco" + icon_override = 'icons/vore/custom_clothes_yw.dmi' + override = 1 + item_state = "tesh_cloak_cco" + +/obj/item/clothing/under/seromi/undercoat/fluff/strix_cco + name = "Central Command Undercoat" + desc = "Made of carbon nanofiber, it is light and billowy, perfect for going fast and stylishly!" + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_override = 'icons/vore/custom_onmob_yw.dmi' + icon_state = "tesh_uniform_cco" + override = 1 + item_state = "tesh_uniform_cco" + sprite_sheets = list( + "Teshari" = 'icons/vore/custom_onmob_yw.dmi' + ) + // ******* // Dawidoe // ******* @@ -1429,3 +1460,91 @@ icon_override = 'icons/vore/custom_clothes_yw.dmi' item_state = "tp_gloves_onmob" +// ****** +// RisingStarSlash +// ****** +//Stellar Wolf +/obj/item/clothing/accessory/collar/fluff/stellar_collar + name = "Heart Collar" + desc = "The collar appears to have a heart shaped pin on the front, the medical logo on visible from a distance. Closer inspection shows that the heart can be opened, revealing a picture. On the picture you can see Stellar and Reyna close together, paws locked and facing the picture slightly sideways with beaming smiles." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "stellarcollar" + icon_override = 'icons/vore/custom_clothes_yw.dmi' + item_state = "stellarcollar_mob" + overlay_state = "stellarcollar_mob" + slot_flags = SLOT_TIE | SLOT_OCLOTHING + w_class = 2 + +// ****** +// CheekyCrenando +// ****** +//Srusu Rskuzu-Ahslru +/obj/item/clothing/under/fluff/srususoviet + name = "Soviet Uniform" + desc = "A standard issue Soviet Dress uniform" + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "srusuuniform" + icon_override = 'icons/vore/custom_clothes_yw.dmi' + item_state = "srusuuniform" + +// ****** +// Hagawaga +// ****** +//Lana Xavier +/obj/item/clothing/under/fluff/romanarmor + name = "Roman Legionary Armor" + desc = "Basically looks like what you would expect a segmented plated armor from the early Roman Empire to look like." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "hagawaga_romanarmor" + icon_override = "icons/vore/custom_clothes_yw.dmi" + item_state = "hagawaga_romanarmor" + +// ****** +// Moca_The_Porg1 +// ****** +//Mocha +/obj/item/clothing/under/fluff/mocha_uniform + name = "Winterized Explorer Jumpsuit" + desc = "A Greenish-white uniform for operating in hazardous environments. This one is suited for colder environments." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "mocha_uniform" + icon_override = "icons/vore/custom_clothes_yw.dmi" + item_state = "mocha_uniform" + +/obj/item/clothing/suit/storage/hooded/fluff/mocha_suit + name = "Winterized Explorer Suit" + desc = "An armoured suit for exploring harsh environments. This one seems more suited for winter." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "mocha_suit" + icon_override = "icons/vore/custom_clothes_yw.dmi" + item_state = "mocha_suit_s" + slot_flags = SLOT_OCLOTHING + flags = THICKMATERIAL + body_parts_covered = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE + cold_protection = UPPER_TORSO|LOWER_TORSO|LEGS|ARMS + hoodtype = /obj/item/clothing/head/hood/mocha_hood + siemens_coefficient = 0.9 + armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) // Inferior to sec vests in bullet/laser but better for environmental protection. + allowed = list( + /obj/item/device/flashlight, + /obj/item/weapon/gun, + /obj/item/ammo_magazine, + /obj/item/weapon/melee, + /obj/item/weapon/material/knife, + /obj/item/weapon/tank, + /obj/item/device/radio, + /obj/item/weapon/pickaxe + ) + +/obj/item/clothing/head/hood/mocha_hood + name = "Winterized Explorer Hood" + desc = "An armoured hood for exploring harsh environments. This one seems fluffier." + icon = 'icons/vore/custom_clothes_yw.dmi' + icon_state = "mocha_hood" + icon_override = "icons/vore/custom_clothes_yw.dmi" + item_state = "mocha_hood_s" + flags = THICKMATERIAL + min_cold_protection_temperature = SPACE_SUIT_MIN_COLD_PROTECTION_TEMPERATURE + siemens_coefficient = 0.9 + armor = list(melee = 30, bullet = 20, laser = 20, energy = 20, bomb = 35, bio = 75, rad = 35) diff --git a/code/modules/vore/fluffstuff/custom_items_vr.dm b/code/modules/vore/fluffstuff/custom_items_vr.dm index ea12ad403d..bb7e0a9e0d 100644 --- a/code/modules/vore/fluffstuff/custom_items_vr.dm +++ b/code/modules/vore/fluffstuff/custom_items_vr.dm @@ -249,7 +249,7 @@ name = "Mouse Plushie" desc = "A plushie of a delightful mouse! What was once considered a vile rodent is now your very best friend." slot_flags = SLOT_HEAD - icon_state = "mouse_brown" + icon_state = "mouse_brown" //TFF 12/11/19 - Change sprite to not look dead. Heck you for that choice! >:C item_state = "mouse_brown_head" icon = 'icons/vore/custom_items_vr.dmi' icon_override = 'icons/vore/custom_items_vr.dmi' diff --git a/code/modules/vore/fluffstuff/custom_items_yw.dm b/code/modules/vore/fluffstuff/custom_items_yw.dm index f9a394dbd0..293874b276 100644 --- a/code/modules/vore/fluffstuff/custom_items_yw.dm +++ b/code/modules/vore/fluffstuff/custom_items_yw.dm @@ -538,4 +538,32 @@ . = ..() if (M == user) M.resize(3) - M.drop_from_inventory(src) \ No newline at end of file + M.drop_from_inventory(src) + qdel(src) + + +// ************** +// NESgamer190 +// ************** + +//Lucy Price +/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask/fluff/lucyprice + name = "Cryostasis Thermos" + desc = " A thermos that has been designed to look something akin to a mix between a cryostasis beaker and a thermos. Does NOT keep the drinks cold, surprisingly enough." + icon_state = "cryothermos" + icon = 'icons/vore/custom_items_yw.dmi' + +// ************** +// Moca_The_Porg1 +// ************** + +//Mocha +/obj/item/device/modkit_conversion/fluff/mocha_suit_kit + name = "Mocha's modkit" + desc = "A kit containing all the needed tools and parts to modify a Explorer Suit" + + icon = 'icons/vore/custom_items_vr.dmi' + icon_state = "modkit" + + from_suit = /obj/item/clothing/suit/storage/hooded/explorer + to_suit = /obj/item/clothing/suit/storage/hooded/fluff/mocha_suit \ No newline at end of file diff --git a/code/modules/xenoarcheaology/effects/radiate.dm b/code/modules/xenoarcheaology/effects/radiate.dm index a083cdddbc..e38540eb04 100644 --- a/code/modules/xenoarcheaology/effects/radiate.dm +++ b/code/modules/xenoarcheaology/effects/radiate.dm @@ -15,10 +15,10 @@ /datum/artifact_effect/radiate/DoEffectAura() if(holder) - radiation_repository.flat_radiate(holder, radiation_amount, src.effectrange) + SSradiation.flat_radiate(holder, radiation_amount, src.effectrange) return 1 /datum/artifact_effect/radiate/DoEffectPulse() if(holder) - radiation_repository.radiate(holder, ((radiation_amount * 3) * (sqrt(src.effectrange)))) //Need to get feedback on this //VOREStation Edit - Was too crazy-strong. + SSradiation.radiate(holder, ((radiation_amount * 3) * (sqrt(src.effectrange)))) //Need to get feedback on this //VOREStation Edit - Was too crazy-strong. return 1 diff --git a/code/modules/xenoarcheaology/tools/geosample_scanner.dm b/code/modules/xenoarcheaology/tools/geosample_scanner.dm index b97a34e48f..5b31f88400 100644 --- a/code/modules/xenoarcheaology/tools/geosample_scanner.dm +++ b/code/modules/xenoarcheaology/tools/geosample_scanner.dm @@ -198,7 +198,7 @@ radiation = rand() * 15 + 85 if(!rad_shield) //irradiate nearby mobs - radiation_repository.radiate(src, radiation / 25) + SSradiation.radiate(src, radiation / 25) else t_left_radspike = pick(10,15,25) @@ -244,6 +244,7 @@ scanner_temperature = max(scanner_temperature - 5 - 10 * rand(), 0) if(prob(0.75)) src.visible_message("\icon[src] [pick("plinks","hisses")][pick(" quietly"," softly"," sadly"," plaintively")].", 2) + playsound(loc, 'sound/effects/ding.ogg', 25) last_process_worldtime = world.time /obj/machinery/radiocarbon_spectrometer/proc/stop_scanning() diff --git a/config/alienwhitelist.txt b/config/alienwhitelist.txt index 7bddbedf10..f7de728072 100644 --- a/config/alienwhitelist.txt +++ b/config/alienwhitelist.txt @@ -22,6 +22,7 @@ killerdragn - Xenomorph Hybrid ktccd - Diona mewchild - Diona mewchild - Vox +mrsebbi - Xenochimera natje - Xenochimera oreganovulgaris - Xenochimera paradoxspace - Xenochimera diff --git a/config/custom_items.txt b/config/custom_items.txt index 1b75c12c2d..7b3256785f 100644 --- a/config/custom_items.txt +++ b/config/custom_items.txt @@ -155,6 +155,11 @@ character_name: Dameon Owen item_path: /obj/item/weapon/reagent_containers/food/snacks/cookie/mysterious } { +ckey: dameonowen +character_name: Amber Owen +item_path: /obj/item/weapon/reagent_containers/food/snacks/cookie/mysterious +} +{ ckey: dawidoe character_name: Melissa Krutz item_path: /obj/item/weapon/storage/box/fluff/melissa diff --git a/html/changelogs/Mechoid - Medical Expansion.yml b/html/changelogs/Mechoid - Medical Expansion.yml new file mode 100644 index 0000000000..5d9b3b6aed --- /dev/null +++ b/html/changelogs/Mechoid - Medical Expansion.yml @@ -0,0 +1,59 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Mechoid + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Multiple new organs added. Humans and Skrell received spleens, all species expected to have a stomach and intestine organ have them." + - tweak: "Augment 'slots' organized." + - rscadd: "Multiple augments added, currently only available in the Traitor / Mercenary uplinks as easy-to-install implants." + - rscadd: "Anesthetic / Oxygen pumps added. A mobile stabilizer has been added. All three are available in Cargo." + - rscadd: "Medical MRE rations added to Cargo." + - tweak: "Roundstart implants now become invisible until being handled." + - rscadd: "Neural implant added to loadout, makes the brain of the user count as an assisted organ. Does not affect MMIs or their subtypes." + - rscadd: "Bioprinters now unlock more organs upon being upgraded, once they pass the anomalous tier, they unlock quite probably illegal organs." + - rscadd: "Three medical exosuit components have been added. Crisis and Hazmat response drones, and a mounted advanced medical analyzer." + - tweak: "Medical analyzers now detect on-skin reagents." + - rscadd: "Multiple new chemicals added, two used for upgrading bandage kits." + - rscadd: "Brute-based medical stacks can be upgraded." + - rscadd: "Crude brute kits can be made with cloth." + - tweak: "Stacks can now pass their colors onto objects produced by them. (Colored cloth, painted wood, etcetera.)" + - rscadd: "Two combined surgical tools added, for opening / closing ribcages and skulls, and removing organs respectively." + - rscadd: "Two dud implants added to the loadout. They do literally nothing but hurt you if you're EMP'd." + - experiment: "The larynx now controls the ability to speak. Damage to it will stop you from being able to speak anything but non-verbal languages." + - tweak: "Damage to the brain can now affect the pulse." + - tweak: "Only the critical blood level causes toxin damage, meaning individuals who die of standard oxygen loss from bloodloss can possibly be saved, but exsanguinated persons are unlikely." + - tweak: "Bioaugment.dm is now just augment.dm" + - tweak: "Robotic hearts do not have a pulse." + - tweak: "Brain damage can now cause loss of breath." + - tweak: "Paracetamol is now the precursor to tramadol." + - rscadd: "Calcium is now in the chemical vendor." diff --git a/html/changelogs/Poojawa - Sunesoundsntoggles.yml b/html/changelogs/Poojawa - Sunesoundsntoggles.yml new file mode 100644 index 0000000000..ed329d766e --- /dev/null +++ b/html/changelogs/Poojawa - Sunesoundsntoggles.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Poojawa + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - soundadd: "Added my fancy vore sounds." + - rscadd: "Porting of a few QoL Citadel changes to vore menu related to sounds." \ No newline at end of file diff --git a/html/changelogs/Poojawa - devourfeedprefs.yml b/html/changelogs/Poojawa - devourfeedprefs.yml new file mode 100644 index 0000000000..5fe418cc80 --- /dev/null +++ b/html/changelogs/Poojawa - devourfeedprefs.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Poojawa + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Applies Feeding and Devourable prefs." + - bugfix: "Made VoreUI toggles a lot more clear of what mode they're in." \ No newline at end of file diff --git a/html/changelogs/TheFurryFeline - Mouse_Plushie_Sprite_Change.yml b/html/changelogs/TheFurryFeline - Mouse_Plushie_Sprite_Change.yml new file mode 100644 index 0000000000..4bcfd9862d --- /dev/null +++ b/html/changelogs/TheFurryFeline - Mouse_Plushie_Sprite_Change.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: TheFurryFeline + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - imageadd: "Changes mouse plushie sprite to be cuter and not break the hearts of rodent lovers. :3 Seriously, the change is from a dead mouse duplicate to one of a brown mouse resting in place." \ No newline at end of file diff --git a/html/changelogs/novacat - teshariplush.yml b/html/changelogs/novacat - teshariplush.yml new file mode 100644 index 0000000000..2e55ba5a83 --- /dev/null +++ b/html/changelogs/novacat - teshariplush.yml @@ -0,0 +1,36 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Novacat + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscadd: "Adds a teshari plush." \ No newline at end of file diff --git a/html/changelogs/woodrat - mapbugfixes.yml b/html/changelogs/woodrat - mapbugfixes.yml new file mode 100644 index 0000000000..1a27913216 --- /dev/null +++ b/html/changelogs/woodrat - mapbugfixes.yml @@ -0,0 +1,39 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Woodrat + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - maptweak: "Minor movement of the mining vendor." + - maptweak: "Adjustment of the kitchen and bar." + - bugfix: "Area in the coffee shop." + - bugfix: "Missing Ducky in the codelab." \ No newline at end of file diff --git a/html/changelogs/woodrat - mobsizeport.yml b/html/changelogs/woodrat - mobsizeport.yml new file mode 100644 index 0000000000..47acc87c40 --- /dev/null +++ b/html/changelogs/woodrat - mobsizeport.yml @@ -0,0 +1,37 @@ +################################ +# Example Changelog File +# +# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb. +# +# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.) +# When it is, any changes listed below will disappear. +# +# Valid Prefixes: +# bugfix +# wip (For works in progress) +# tweak +# soundadd +# sounddel +# rscadd (general adding of nice things) +# rscdel (general deleting of nice things) +# imageadd +# imagedel +# maptweak +# spellcheck (typo fixes) +# experiment +################################# + +# Your name. +author: Woodrat + +# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again. +delete-after: True + +# Any changes you've made. See valid prefix list above. +# INDENT WITH TWO SPACES. NOT TABS. SPACES. +# SCREW THIS UP AND IT WON'T WORK. +# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries. +# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog. +changes: + - rscdel: "Removed the old size modifier traits for mobs." + - rscadd: "Port and tweak of the size modifiers from World Server for mobs." \ No newline at end of file diff --git a/icons/mecha/mecha_equipment.dmi b/icons/mecha/mecha_equipment.dmi index 2f15024c6a..cba863ea47 100644 Binary files a/icons/mecha/mecha_equipment.dmi and b/icons/mecha/mecha_equipment.dmi differ diff --git a/icons/mob/64x64robot_vr.dmi b/icons/mob/64x64robot_vr.dmi index b631aa61df..8bcd665ea4 100644 Binary files a/icons/mob/64x64robot_vr.dmi and b/icons/mob/64x64robot_vr.dmi differ diff --git a/icons/mob/alien.dmi b/icons/mob/alien.dmi index 63f2d47b24..f00110275d 100644 Binary files a/icons/mob/alien.dmi and b/icons/mob/alien.dmi differ diff --git a/icons/mob/back.dmi b/icons/mob/back.dmi index 129db87f03..f3e7e10b85 100644 Binary files a/icons/mob/back.dmi and b/icons/mob/back.dmi differ diff --git a/icons/mob/belt.dmi b/icons/mob/belt.dmi index 1ed8e7cf12..c3f0f0d956 100644 Binary files a/icons/mob/belt.dmi and b/icons/mob/belt.dmi differ diff --git a/icons/mob/chimerahud.dmi b/icons/mob/chimerahud.dmi new file mode 100644 index 0000000000..890ee10ceb Binary files /dev/null and b/icons/mob/chimerahud.dmi differ diff --git a/icons/mob/demon_vr.dmi b/icons/mob/demon_vr.dmi new file mode 100644 index 0000000000..5ad0c6e550 Binary files /dev/null and b/icons/mob/demon_vr.dmi differ diff --git a/icons/mob/feet.dmi b/icons/mob/feet.dmi index 52a443cdc8..65899f8ad5 100644 Binary files a/icons/mob/feet.dmi and b/icons/mob/feet.dmi differ diff --git a/icons/mob/hands.dmi b/icons/mob/hands.dmi index 18f20899d2..32008f190b 100644 Binary files a/icons/mob/hands.dmi and b/icons/mob/hands.dmi differ diff --git a/icons/mob/hud.dmi b/icons/mob/hud.dmi index c497e7c73d..18d5ce6984 100644 Binary files a/icons/mob/hud.dmi and b/icons/mob/hud.dmi differ diff --git a/icons/mob/human_face_or_vr.dmi b/icons/mob/human_face_or_vr.dmi index 3642b50afb..920f63cf09 100644 Binary files a/icons/mob/human_face_or_vr.dmi and b/icons/mob/human_face_or_vr.dmi differ diff --git a/icons/mob/human_face_vr.dmi b/icons/mob/human_face_vr.dmi index dbca0876a0..fa90d462e3 100644 Binary files a/icons/mob/human_face_vr.dmi and b/icons/mob/human_face_vr.dmi differ diff --git a/icons/mob/human_face_vr_add.dmi b/icons/mob/human_face_vr_add.dmi index bcca31d011..78d1b60e4c 100644 Binary files a/icons/mob/human_face_vr_add.dmi and b/icons/mob/human_face_vr_add.dmi differ diff --git a/icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi b/icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi new file mode 100644 index 0000000000..6ff7e90517 Binary files /dev/null and b/icons/mob/human_races/cyberlimbs/_fluff_vr/Frosty.dmi differ diff --git a/icons/mob/human_races/cyberlimbs/einstein/einstein_main.dmi b/icons/mob/human_races/cyberlimbs/einstein/einstein_main.dmi new file mode 100644 index 0000000000..f7521505dd Binary files /dev/null and b/icons/mob/human_races/cyberlimbs/einstein/einstein_main.dmi differ diff --git a/icons/mob/human_races/markings_vr.dmi b/icons/mob/human_races/markings_vr.dmi index d776a68b67..87c59161e6 100644 Binary files a/icons/mob/human_races/markings_vr.dmi and b/icons/mob/human_races/markings_vr.dmi differ diff --git a/icons/mob/human_races/r_def_werebeast.dmi b/icons/mob/human_races/r_def_werebeast.dmi new file mode 100644 index 0000000000..27d09ddc52 Binary files /dev/null and b/icons/mob/human_races/r_def_werebeast.dmi differ diff --git a/icons/mob/human_races/r_shadekin_vr.dmi b/icons/mob/human_races/r_shadekin_vr.dmi new file mode 100644 index 0000000000..bc29b48cec Binary files /dev/null and b/icons/mob/human_races/r_shadekin_vr.dmi differ diff --git a/icons/mob/human_races/r_werebeast.dmi b/icons/mob/human_races/r_werebeast.dmi new file mode 100644 index 0000000000..27d09ddc52 Binary files /dev/null and b/icons/mob/human_races/r_werebeast.dmi differ diff --git a/icons/mob/items/lefthand_melee.dmi b/icons/mob/items/lefthand_melee.dmi index dbef5acf99..92199228ca 100644 Binary files a/icons/mob/items/lefthand_melee.dmi and b/icons/mob/items/lefthand_melee.dmi differ diff --git a/icons/mob/items/righthand_melee.dmi b/icons/mob/items/righthand_melee.dmi index 5cfed3c119..e2f1b7ee47 100644 Binary files a/icons/mob/items/righthand_melee.dmi and b/icons/mob/items/righthand_melee.dmi differ diff --git a/icons/mob/pai_vr.dmi b/icons/mob/pai_vr.dmi index cb494851af..09b8504915 100644 Binary files a/icons/mob/pai_vr.dmi and b/icons/mob/pai_vr.dmi differ diff --git a/icons/mob/robots_vr.dmi b/icons/mob/robots_vr.dmi index 2d6a4f2648..cdf2fd6a86 100644 Binary files a/icons/mob/robots_vr.dmi and b/icons/mob/robots_vr.dmi differ diff --git a/icons/mob/shadekin_hud.dmi b/icons/mob/shadekin_hud.dmi index cf7259cb5c..707feea2a9 100644 Binary files a/icons/mob/shadekin_hud.dmi and b/icons/mob/shadekin_hud.dmi differ diff --git a/icons/mob/species/shadekin/tail.dmi b/icons/mob/species/shadekin/tail.dmi new file mode 100644 index 0000000000..51ac9d79ca Binary files /dev/null and b/icons/mob/species/shadekin/tail.dmi differ diff --git a/icons/mob/species/werebeast/back.dmi b/icons/mob/species/werebeast/back.dmi new file mode 100644 index 0000000000..f35e6d8ea4 Binary files /dev/null and b/icons/mob/species/werebeast/back.dmi differ diff --git a/icons/mob/species/werebeast/belt.dmi b/icons/mob/species/werebeast/belt.dmi new file mode 100644 index 0000000000..a50ac3601a Binary files /dev/null and b/icons/mob/species/werebeast/belt.dmi differ diff --git a/icons/mob/species/werebeast/belt_mirror.dmi b/icons/mob/species/werebeast/belt_mirror.dmi new file mode 100644 index 0000000000..a50ac3601a Binary files /dev/null and b/icons/mob/species/werebeast/belt_mirror.dmi differ diff --git a/icons/mob/species/werebeast/ears.dmi b/icons/mob/species/werebeast/ears.dmi new file mode 100644 index 0000000000..5710e58cdc Binary files /dev/null and b/icons/mob/species/werebeast/ears.dmi differ diff --git a/icons/mob/species/werebeast/eyes.dmi b/icons/mob/species/werebeast/eyes.dmi new file mode 100644 index 0000000000..0e14a8daac Binary files /dev/null and b/icons/mob/species/werebeast/eyes.dmi differ diff --git a/icons/mob/species/werebeast/feet.dmi b/icons/mob/species/werebeast/feet.dmi new file mode 100644 index 0000000000..1993dc67ff Binary files /dev/null and b/icons/mob/species/werebeast/feet.dmi differ diff --git a/icons/mob/species/werebeast/handcuffs.dmi b/icons/mob/species/werebeast/handcuffs.dmi new file mode 100644 index 0000000000..5710e58cdc Binary files /dev/null and b/icons/mob/species/werebeast/handcuffs.dmi differ diff --git a/icons/mob/species/werebeast/hands.dmi b/icons/mob/species/werebeast/hands.dmi new file mode 100644 index 0000000000..7b14f5bf96 Binary files /dev/null and b/icons/mob/species/werebeast/hands.dmi differ diff --git a/icons/mob/species/werebeast/head.dmi b/icons/mob/species/werebeast/head.dmi new file mode 100644 index 0000000000..19dc069089 Binary files /dev/null and b/icons/mob/species/werebeast/head.dmi differ diff --git a/icons/mob/species/werebeast/id.dmi b/icons/mob/species/werebeast/id.dmi new file mode 100644 index 0000000000..5710e58cdc Binary files /dev/null and b/icons/mob/species/werebeast/id.dmi differ diff --git a/icons/mob/species/werebeast/masks.dmi b/icons/mob/species/werebeast/masks.dmi new file mode 100644 index 0000000000..5710e58cdc Binary files /dev/null and b/icons/mob/species/werebeast/masks.dmi differ diff --git a/icons/mob/species/werebeast/pilot_helmet.dmi b/icons/mob/species/werebeast/pilot_helmet.dmi new file mode 100644 index 0000000000..5710e58cdc Binary files /dev/null and b/icons/mob/species/werebeast/pilot_helmet.dmi differ diff --git a/icons/mob/species/werebeast/suit.dmi b/icons/mob/species/werebeast/suit.dmi new file mode 100644 index 0000000000..215320ef62 Binary files /dev/null and b/icons/mob/species/werebeast/suit.dmi differ diff --git a/icons/mob/species/werebeast/ties.dmi b/icons/mob/species/werebeast/ties.dmi new file mode 100644 index 0000000000..5710e58cdc Binary files /dev/null and b/icons/mob/species/werebeast/ties.dmi differ diff --git a/icons/mob/species/werebeast/uniform.dmi b/icons/mob/species/werebeast/uniform.dmi new file mode 100644 index 0000000000..8fee0b5d99 Binary files /dev/null and b/icons/mob/species/werebeast/uniform.dmi differ diff --git a/icons/mob/species/werebeast/werebeast_markings.dmi b/icons/mob/species/werebeast/werebeast_markings.dmi new file mode 100644 index 0000000000..de6bf40347 Binary files /dev/null and b/icons/mob/species/werebeast/werebeast_markings.dmi differ diff --git a/icons/mob/uniform.dmi b/icons/mob/uniform.dmi index ec0759bef5..fa1989ec5f 100644 Binary files a/icons/mob/uniform.dmi and b/icons/mob/uniform.dmi differ diff --git a/icons/mob/vore/ears_vr.dmi b/icons/mob/vore/ears_vr.dmi index 9121d94d4d..338c7ee96e 100644 Binary files a/icons/mob/vore/ears_vr.dmi and b/icons/mob/vore/ears_vr.dmi differ diff --git a/icons/mob/vore/tails_vr.dmi b/icons/mob/vore/tails_vr.dmi index 134e4e9f31..b07cc7118b 100644 Binary files a/icons/mob/vore/tails_vr.dmi and b/icons/mob/vore/tails_vr.dmi differ diff --git a/icons/mob/vore/tails_yw.dmi b/icons/mob/vore/tails_yw.dmi index 8fffea214e..613bb0ef3a 100644 Binary files a/icons/mob/vore/tails_yw.dmi and b/icons/mob/vore/tails_yw.dmi differ diff --git a/icons/mob/vore/taurs_vr.dmi b/icons/mob/vore/taurs_vr.dmi index 88fceac238..2edbe8561b 100644 Binary files a/icons/mob/vore/taurs_vr.dmi and b/icons/mob/vore/taurs_vr.dmi differ diff --git a/icons/mob/werebeast_face_vr.dmi b/icons/mob/werebeast_face_vr.dmi new file mode 100644 index 0000000000..9d6fca724b Binary files /dev/null and b/icons/mob/werebeast_face_vr.dmi differ diff --git a/icons/mob/widerobot_vr.dmi b/icons/mob/widerobot_vr.dmi index 49e60d2c1d..529dd7231d 100644 Binary files a/icons/mob/widerobot_vr.dmi and b/icons/mob/widerobot_vr.dmi differ diff --git a/icons/obj/atmos.dmi b/icons/obj/atmos.dmi index 4ea2e6a2ea..13f177d300 100644 Binary files a/icons/obj/atmos.dmi and b/icons/obj/atmos.dmi differ diff --git a/icons/obj/bodybag.dmi b/icons/obj/bodybag.dmi index a1f9903128..db2ab61815 100644 Binary files a/icons/obj/bodybag.dmi and b/icons/obj/bodybag.dmi differ diff --git a/icons/obj/cigarettes_yw.dmi b/icons/obj/cigarettes_yw.dmi new file mode 100644 index 0000000000..1573c4df6c Binary files /dev/null and b/icons/obj/cigarettes_yw.dmi differ diff --git a/icons/obj/clothing/ranger.dmi b/icons/obj/clothing/ranger.dmi new file mode 100644 index 0000000000..5f810d2ea4 Binary files /dev/null and b/icons/obj/clothing/ranger.dmi differ diff --git a/icons/obj/custom_books.dmi b/icons/obj/custom_books.dmi new file mode 100644 index 0000000000..2be098e848 Binary files /dev/null and b/icons/obj/custom_books.dmi differ diff --git a/icons/obj/food.dmi b/icons/obj/food.dmi index de2f69b813..aef2ea318f 100644 Binary files a/icons/obj/food.dmi and b/icons/obj/food.dmi differ diff --git a/icons/obj/items.dmi b/icons/obj/items.dmi index e3de287a99..62df172136 100644 Binary files a/icons/obj/items.dmi and b/icons/obj/items.dmi differ diff --git a/icons/obj/kitchen.dmi b/icons/obj/kitchen.dmi index 92ac55f966..6c5a251283 100644 Binary files a/icons/obj/kitchen.dmi and b/icons/obj/kitchen.dmi differ diff --git a/icons/obj/power.dmi b/icons/obj/power.dmi index e5db3aeb3e..173746d036 100644 Binary files a/icons/obj/power.dmi and b/icons/obj/power.dmi differ diff --git a/icons/obj/stacks.dmi b/icons/obj/stacks.dmi index 2d51ed3634..5fd362c7cb 100644 Binary files a/icons/obj/stacks.dmi and b/icons/obj/stacks.dmi differ diff --git a/icons/obj/stock_parts.dmi b/icons/obj/stock_parts.dmi index 2bab59a487..2c6f880e66 100644 Binary files a/icons/obj/stock_parts.dmi and b/icons/obj/stock_parts.dmi differ diff --git a/icons/obj/structures.dmi b/icons/obj/structures.dmi index 908c2981dd..89a5e9071d 100644 Binary files a/icons/obj/structures.dmi and b/icons/obj/structures.dmi differ diff --git a/icons/obj/surgery.dmi b/icons/obj/surgery.dmi index 5d28658eed..6f318cff60 100644 Binary files a/icons/obj/surgery.dmi and b/icons/obj/surgery.dmi differ diff --git a/icons/obj/toy.dmi b/icons/obj/toy.dmi index 8cce2e7f15..0e462a51f0 100644 Binary files a/icons/obj/toy.dmi and b/icons/obj/toy.dmi differ diff --git a/icons/obj/toy_yw.dmi b/icons/obj/toy_yw.dmi new file mode 100644 index 0000000000..f72e860422 Binary files /dev/null and b/icons/obj/toy_yw.dmi differ diff --git a/icons/obj/trash.dmi b/icons/obj/trash.dmi index 2fe1a91c98..e55d92293d 100644 Binary files a/icons/obj/trash.dmi and b/icons/obj/trash.dmi differ diff --git a/icons/obj/vending_vr.dmi b/icons/obj/vending_vr.dmi index 8609b76e42..45e8edb78d 100644 Binary files a/icons/obj/vending_vr.dmi and b/icons/obj/vending_vr.dmi differ diff --git a/icons/obj/weapons.dmi b/icons/obj/weapons.dmi index da2754d04b..213b884a33 100644 Binary files a/icons/obj/weapons.dmi and b/icons/obj/weapons.dmi differ diff --git a/icons/turf/wall_masks.dmi b/icons/turf/wall_masks.dmi index bda615cd5c..916d230ffd 100644 Binary files a/icons/turf/wall_masks.dmi and b/icons/turf/wall_masks.dmi differ diff --git a/icons/vore/custom_clothes_vr.dmi b/icons/vore/custom_clothes_vr.dmi index 2a487aab35..c3619ebf96 100644 Binary files a/icons/vore/custom_clothes_vr.dmi and b/icons/vore/custom_clothes_vr.dmi differ diff --git a/icons/vore/custom_clothes_yw.dmi b/icons/vore/custom_clothes_yw.dmi index 798ffe9412..089bd8d36c 100644 Binary files a/icons/vore/custom_clothes_yw.dmi and b/icons/vore/custom_clothes_yw.dmi differ diff --git a/icons/vore/custom_items_vr.dmi b/icons/vore/custom_items_vr.dmi index ce38b5318d..daf6b0895a 100644 Binary files a/icons/vore/custom_items_vr.dmi and b/icons/vore/custom_items_vr.dmi differ diff --git a/icons/vore/custom_items_yw.dmi b/icons/vore/custom_items_yw.dmi index 3e228fee3b..aeb5726f29 100644 Binary files a/icons/vore/custom_items_yw.dmi and b/icons/vore/custom_items_yw.dmi differ diff --git a/icons/vore/custom_onmob_yw.dmi b/icons/vore/custom_onmob_yw.dmi index 2f2fd1ba49..717bac51df 100644 Binary files a/icons/vore/custom_onmob_yw.dmi and b/icons/vore/custom_onmob_yw.dmi differ diff --git a/interface/interface.dm b/interface/interface.dm index 6ecfde4e7c..29a3695d33 100644 --- a/interface/interface.dm +++ b/interface/interface.dm @@ -9,11 +9,11 @@ var/output = replacetext(config.wikisearchurl, "%s", url_encode(query)) src << link(output) else - src << " The wiki search URL is not set in the server configuration." + to_chat(src, " The wiki search URL is not set in the server configuration.") else src << link(config.wikiurl) else - src << "The wiki URL is not set in the server configuration." + to_chat(src, "The wiki URL is not set in the server configuration.") return /client/verb/forum() @@ -25,7 +25,7 @@ return src << link(config.forumurl) else - src << "The forum URL is not set in the server configuration." + to_chat(src, "The forum URL is not set in the server configuration.") return /client/verb/rules() @@ -38,7 +38,7 @@ return src << link(config.rulesurl) else - src << "The rules URL is not set in the server configuration." + to_chat(src, "The rules URL is not set in the server configuration.") return /client/verb/map() @@ -51,7 +51,7 @@ return src << link(config.mapurl) else - src << "The map URL is not set in the server configuration." + to_chat(src, "The map URL is not set in the server configuration.") return /client/verb/github() @@ -64,7 +64,7 @@ return src << link(config.githuburl) else - src << "The GitHub URL is not set in the server configuration." + to_chat(src, "The GitHub URL is not set in the server configuration.") return /client/verb/hotkeys_help() diff --git a/maps/RandomZLevels/carpfarm.dmm b/maps/RandomZLevels/carpfarm.dmm index 38817753cc..6156c8b62a 100644 --- a/maps/RandomZLevels/carpfarm.dmm +++ b/maps/RandomZLevels/carpfarm.dmm @@ -1,66313 +1,261 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/space, -/area/space) -"ab" = ( -/obj/effect/blocker, -/turf/space{ - density = 1; - desc = "You can't go there!"; - name = "The 4th Wall" - }, -/area/space) -"ac" = ( -/turf/simulated/mineral, -/area/space) -"ad" = ( -/obj/effect/gibspawner/human, -/turf/space, -/area/space) -"ae" = ( -/mob/living/simple_mob/animal/space/carp, -/turf/space, -/area/space) -"af" = ( -/mob/living/simple_mob/animal/space/carp/large, -/turf/space, -/area/space) -"ag" = ( -/obj/effect/decal/mecha_wreckage/hoverpod, -/obj/effect/gibspawner/human, -/turf/space, -/area/space) -"ah" = ( -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"ai" = ( -/obj/effect/landmark{ - name = "awaystart" - }, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"aj" = ( -/obj/item/weapon/pickaxe/jackhammer, -/turf/simulated/mineral/floor/ignore_mapgen, -/area/space) -"ak" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"al" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"am" = ( -/turf/simulated/wall/iron, -/area/awaymission/carpfarm/base) -"an" = ( -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/smes/buildable, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"ao" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 8 - }, -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"ap" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/power/port_gen/pacman, -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aq" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"ar" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"as" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"at" = ( -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5 - }, -/obj/machinery/door/window, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/carpfarm/base) -"au" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"av" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aw" = ( -/obj/structure/toilet{ - dir = 8 - }, -/obj/machinery/light/small/built{ - icon_state = "bulb1"; - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"ax" = ( -/obj/structure/table/woodentable, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"ay" = ( -/obj/structure/bedsheetbin, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"az" = ( -/obj/item/weapon/storage/toolbox/electrical, -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/item/weapon/paper/awaygate/carpfarm/suicide, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aA" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aB" = ( -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aC" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aD" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aE" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aF" = ( -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aG" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aH" = ( -/obj/item/weapon/bedsheet, -/obj/structure/bed/padded, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aI" = ( -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aJ" = ( -/obj/structure/table/rack, -/obj/item/clothing/suit/space/void/mining, -/obj/item/clothing/mask/breath, -/obj/item/clothing/head/helmet/space/void/mining, -/obj/item/weapon/mining_scanner, -/obj/item/weapon/tank/jetpack/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aK" = ( -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aL" = ( -/obj/structure/closet/toolcloset, -/obj/item/weapon/pickaxe/jackhammer, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aM" = ( -/obj/machinery/gateway{ - density = 0; - dir = 10 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aN" = ( -/obj/machinery/gateway, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aO" = ( -/obj/machinery/gateway{ - density = 0; - dir = 6 - }, -/turf/simulated/floor/bluegrid, -/area/awaymission/carpfarm/base) -"aP" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - dir = 4; - pixel_x = -32; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/carpfarm/base) -"aQ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aR" = ( -/obj/structure/table/woodentable, -/obj/random/action_figure, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"aS" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/loot_spawn, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aU" = ( -/obj/structure/closet/jcloset, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aV" = ( -/obj/structure/closet/secure_closet/medical1, -/obj/random/medical, -/obj/random/medical, -/obj/random/medical, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"aW" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aX" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aY" = ( -/obj/machinery/door/airlock/silver, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"aZ" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor/lino, -/area/awaymission/carpfarm/base) -"ba" = ( -/obj/effect/wingrille_spawn/reinforced, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bb" = ( -/obj/structure/table/reinforced, -/obj/random/tech_supply, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bc" = ( -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"be" = ( -/obj/structure/closet/gimmick/russian, -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bf" = ( -/obj/structure/closet/gimmick/russian, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bg" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer, -/obj/item/trash/syndi_cakes, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bh" = ( -/obj/structure/closet/wardrobe/black, -/obj/item/clothing/under/syndicate/tacticool, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bi" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/landmark/costume, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bj" = ( -/obj/machinery/door/airlock/maintenance_hatch, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bk" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/structure/closet/crate/internals, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bl" = ( -/obj/structure/closet/crate/internals, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/weapon/tank/emergency/oxygen/engi, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/item/clothing/mask/breath, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bm" = ( -/obj/structure/closet/crate/plastic, -/obj/random/contraband, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bn" = ( -/obj/structure/closet/crate, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/random/weapon, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bo" = ( -/obj/machinery/door/airlock/mining, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bp" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bq" = ( -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"br" = ( -/obj/item/mecha_parts/mecha_equipment/tool/drill, -/obj/item/weapon/storage/toolbox/mechanical, -/obj/structure/table/steel, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bs" = ( -/obj/structure/ore_box, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bt" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bu" = ( -/obj/structure/table/rack, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bv" = ( -/obj/machinery/portable_atmospherics/canister/oxygen, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bw" = ( -/obj/structure/table, -/obj/machinery/microwave{ - pixel_x = -2; - pixel_y = 6 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bx" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"by" = ( -/obj/machinery/vending/coffee{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bz" = ( -/obj/machinery/vending/sovietsoda, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bA" = ( -/obj/machinery/vending/snack{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bB" = ( -/obj/machinery/vending/cigarette{ - prices = list() - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bC" = ( -/obj/machinery/vending/dinnerware, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bD" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bE" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bF" = ( -/obj/structure/dispenser/oxygen, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bG" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bH" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bI" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 1; - icon_state = "map"; - - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 10; - icon_state = "intact"; - - }, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1375; - master_tag = "carp_airlock"; - name = "interior access button"; - pixel_x = 26; - pixel_y = -26; - req_one_access = newlist() - }, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bK" = ( -/obj/machinery/suit_cycler/mining, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bL" = ( -/obj/structure/bed/chair, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bM" = ( -/obj/mecha/working/hoverpod/combatpod, -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bN" = ( -/obj/machinery/mech_recharger, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bO" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/air/airlock, -/turf/simulated/floor/tiled/dark, -/area/awaymission/carpfarm/base) -"bP" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; - icon_state = "space"; - layer = 4; - name = "EXTERNAL AIRLOCK"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/iron, -/area/awaymission/carpfarm/base) -"bQ" = ( -/obj/machinery/door/airlock/external{ - frequency = 1375; - icon_state = "door_locked"; - id_tag = "carp_inner"; - locked = 1; - name = "External Access"; - req_access = newlist() - }, -/obj/machinery/atmospherics/pipe/simple/hidden, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bR" = ( -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bS" = ( -/obj/item/weapon/reagent_containers/food/snacks/cubancarp, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bT" = ( -/obj/item/weapon/reagent_containers/food/snacks/carpmeat, -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/table/glass, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bU" = ( -/obj/structure/bed/chair{ - dir = 8 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bV" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1375; - id_tag = "carp_pump" - }, -/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ - frequency = 1375; - id_tag = "carp_airlock"; - pixel_x = -28; - pixel_y = 0; - req_access = null; - tag_airpump = "carp_pump"; - tag_chamber_sensor = "carp_sensor"; - tag_exterior_door = "carp_outer"; - tag_interior_door = "carp_inner" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bW" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 1; - frequency = 1375; - id_tag = "carp_pump" - }, -/obj/effect/floor_decal/industrial/warning/cee{ - icon_state = "warningcee"; - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bX" = ( -/obj/structure/closet/emcloset, -/obj/item/weapon/storage/toolbox/emergency, -/obj/machinery/airlock_sensor{ - frequency = 1375; - id_tag = "carp_sensor"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"bY" = ( -/obj/structure/closet/secure_closet/freezer/fridge, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"bZ" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/effect/floor_decal/corner/white/diagonal, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"ca" = ( -/obj/effect/floor_decal/corner/white/diagonal, -/obj/structure/closet/crate/bin, -/obj/item/trash/candy/proteinbar, -/turf/simulated/floor/tiled, -/area/awaymission/carpfarm/base) -"cb" = ( -/obj/machinery/door/airlock/external{ - frequency = 1375; - icon_state = "door_locked"; - id_tag = "carp_outer"; - locked = 1; - name = "External Access"; - req_access = newlist() - }, -/turf/simulated/floor/plating, -/area/awaymission/carpfarm/base) -"cc" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cd" = ( -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"ce" = ( -/obj/machinery/access_button{ - command = "cycle_exterior"; - frequency = 1375; - master_tag = "carp_airlock"; - name = "exterior access button"; - pixel_x = 26; - pixel_y = 26; - req_access = newlist() - }, -/turf/simulated/floor/airless, -/area/awaymission/carpfarm/base) -"cf" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/space) -"cg" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/airless, -/area/space) -"ch" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/airless, -/area/space) -"ci" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/airless, -/area/space) -"cj" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/airless, -/area/space) -"ck" = ( -/turf/simulated/floor/airless, -/area/space) -"cl" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor/airless, -/area/space) -"cm" = ( -/obj/effect/gibspawner/human, -/turf/simulated/floor/airless, -/area/space) -"cn" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/airless, -/area/space) -"co" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/airless, -/area/space) -"cp" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/airless, -/area/space) +"aa" = (/turf/space,/area/space) +"ab" = (/obj/effect/blocker,/turf/space{density = 1; desc = "You can't go there!"; name = "The 4th Wall"},/area/space) +"ac" = (/turf/simulated/mineral,/area/space) +"ad" = (/obj/effect/blocker,/turf/space,/area/space) +"ae" = (/mob/living/simple_mob/animal/space/carp,/turf/space,/area/space) +"ah" = (/turf/simulated/mineral/floor/ignore_mapgen,/area/space) +"ai" = (/obj/effect/landmark{name = "awaystart"},/turf/simulated/mineral/floor/ignore_mapgen,/area/space) +"aj" = (/obj/item/weapon/pickaxe/jackhammer,/turf/simulated/mineral/floor/ignore_mapgen,/area/space) +"ak" = (/turf/simulated/mineral,/area/mine/unexplored) +"al" = (/obj/structure/lattice,/turf/space,/area/space) +"am" = (/turf/simulated/wall/iron,/area/awaymission/carpfarm/base) +"an" = (/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/smes/buildable,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"ao" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/machinery/power/terminal{dir = 8},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"ap" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/port_gen/pacman,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aq" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"ar" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"as" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"at" = (/obj/machinery/shower{dir = 4; icon_state = "shower"; pixel_x = 5},/obj/machinery/door/window,/turf/simulated/floor/tiled/freezer,/area/awaymission/carpfarm/base) +"au" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"av" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aw" = (/obj/structure/toilet{dir = 8},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"ax" = (/obj/structure/table/woodentable,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"ay" = (/obj/structure/bedsheetbin,/obj/machinery/light{dir = 1},/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"az" = (/obj/item/weapon/storage/toolbox/electrical,/obj/structure/cable,/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/item/weapon/paper/awaygate/carpfarm/suicide,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aA" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aB" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aC" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aD" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aE" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aF" = (/obj/structure/window/basic{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aG" = (/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aH" = (/obj/item/weapon/bedsheet,/obj/structure/bed/padded,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"aI" = (/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"aJ" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/void/mining,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/mining,/obj/item/weapon/mining_scanner,/obj/item/weapon/tank/jetpack/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aK" = (/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aL" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe/jackhammer,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aM" = (/obj/machinery/gateway{density = 0; dir = 10},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aN" = (/obj/machinery/gateway,/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aO" = (/obj/machinery/gateway{density = 0; dir = 6},/turf/simulated/floor/bluegrid,/area/awaymission/carpfarm/base) +"aP" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{dir = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/carpfarm/base) +"aQ" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aR" = (/obj/structure/table/woodentable,/obj/random/action_figure,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"aS" = (/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aT" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/loot_spawn,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aU" = (/obj/structure/closet/jcloset,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aV" = (/obj/structure/closet/secure_closet/medical1,/obj/random/medical,/obj/random/medical,/obj/random/medical,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"aW" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aX" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aY" = (/obj/machinery/door/airlock/silver,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"aZ" = (/obj/machinery/door/airlock,/turf/simulated/floor/lino,/area/awaymission/carpfarm/base) +"ba" = (/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bb" = (/obj/structure/table/reinforced,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bc" = (/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bd" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"be" = (/obj/structure/closet/gimmick/russian,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bf" = (/obj/structure/closet/gimmick/russian,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer,/obj/item/trash/syndi_cakes,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bh" = (/obj/structure/closet/wardrobe/black,/obj/item/clothing/under/syndicate/tacticool,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bi" = (/obj/structure/closet/secure_closet/personal,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/landmark/costume,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bj" = (/obj/machinery/door/airlock/maintenance_hatch,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bk" = (/obj/machinery/light{dir = 8},/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bl" = (/obj/structure/closet/crate/internals,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/weapon/tank/emergency/oxygen/engi,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/item/clothing/mask/breath,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bm" = (/obj/structure/closet/crate/plastic,/obj/random/contraband,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bn" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/outline/yellow,/obj/random/weapon,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bo" = (/obj/machinery/door/airlock/mining,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bp" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bq" = (/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"br" = (/obj/item/mecha_parts/mecha_equipment/tool/drill,/obj/item/weapon/storage/toolbox/mechanical,/obj/structure/table/steel,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bs" = (/obj/structure/ore_box,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bt" = (/obj/machinery/light{dir = 1},/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bu" = (/obj/structure/table/rack,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bv" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bw" = (/obj/structure/table,/obj/machinery/microwave{pixel_x = -2; pixel_y = 6},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bx" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"by" = (/obj/machinery/vending/coffee{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bz" = (/obj/machinery/vending/sovietsoda,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bA" = (/obj/machinery/vending/snack{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bB" = (/obj/machinery/vending/cigarette{prices = list()},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bC" = (/obj/machinery/vending/dinnerware,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bD" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bE" = (/obj/structure/closet/crate/secure/weapon,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bF" = (/obj/structure/dispenser/oxygen,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bG" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bI" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bJ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1375; master_tag = "carp_airlock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = newlist()},/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bK" = (/obj/machinery/suit_cycler/mining,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bL" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bM" = (/obj/mecha/working/hoverpod/combatpod,/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bN" = (/obj/machinery/mech_recharger,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bO" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled/dark,/area/awaymission/carpfarm/base) +"bP" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/iron,/area/awaymission/carpfarm/base) +"bQ" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_inner"; locked = 1; name = "External Access"; req_access = newlist()},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bR" = (/obj/structure/bed/chair{dir = 4},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bS" = (/obj/item/weapon/reagent_containers/food/snacks/cubancarp,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bT" = (/obj/item/weapon/reagent_containers/food/snacks/carpmeat,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/table/glass,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bU" = (/obj/structure/bed/chair{dir = 8},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bV" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1375; id_tag = "carp_airlock"; pixel_x = -28; pixel_y = 0; req_access = null; tag_airpump = "carp_pump"; tag_chamber_sensor = "carp_sensor"; tag_exterior_door = "carp_outer"; tag_interior_door = "carp_inner"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 8},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bW" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1375; id_tag = "carp_pump"},/obj/effect/floor_decal/industrial/warning/cee{icon_state = "warningcee"; dir = 4},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bX" = (/obj/structure/closet/emcloset,/obj/item/weapon/storage/toolbox/emergency,/obj/machinery/airlock_sensor{frequency = 1375; id_tag = "carp_sensor"; pixel_x = 28},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"bY" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"bZ" = (/obj/structure/bed/chair{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"ca" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/candy/proteinbar,/turf/simulated/floor/tiled,/area/awaymission/carpfarm/base) +"cb" = (/obj/machinery/door/airlock/external{frequency = 1375; icon_state = "door_locked"; id_tag = "carp_outer"; locked = 1; name = "External Access"; req_access = newlist()},/turf/simulated/floor/plating,/area/awaymission/carpfarm/base) +"cc" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) +"cd" = (/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) +"ce" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1375; master_tag = "carp_airlock"; name = "exterior access button"; pixel_x = 26; pixel_y = 26; req_access = newlist()},/turf/simulated/floor/airless,/area/awaymission/carpfarm/base) +"cf" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) +"cg" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/airless,/area/space) +"ch" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/airless,/area/space) +"ci" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/airless,/area/space) +"cj" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/airless,/area/space) +"ck" = (/turf/simulated/floor/airless,/area/space) +"cl" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/airless,/area/space) +"cm" = (/obj/effect/gibspawner/human,/turf/simulated/floor/airless,/area/space) +"cn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/airless,/area/space) +"co" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space) +"cp" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/airless,/area/space) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(3,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(4,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(5,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(6,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(7,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(8,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -"} -(9,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(10,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(11,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(12,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(13,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(14,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(15,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(16,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(17,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(18,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(31,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(32,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(33,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -aj -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(34,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ai -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(35,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(36,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ah -ah -ai -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(37,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(38,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(39,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(40,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(41,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(42,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(43,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(44,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(45,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(46,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(47,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(48,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(49,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(50,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(51,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(52,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(53,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(54,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(55,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(56,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(57,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(58,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(59,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(61,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(62,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(63,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(64,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(65,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(66,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(67,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(68,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(69,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(70,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(71,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(72,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -aj -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(73,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(74,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(75,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(76,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(77,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(78,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(79,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(80,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -af -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(81,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(82,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(83,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(84,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(85,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(86,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(87,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(88,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ag -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(89,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(90,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(91,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(92,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(93,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(94,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(95,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(96,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(97,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(98,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(99,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(100,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(101,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(102,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(103,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(104,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(105,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(106,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(107,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(108,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(109,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(110,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(111,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(112,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(113,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(114,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(115,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(116,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(117,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(118,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(119,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(120,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -ak -ak -ak -aa -aa -aa -aa -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(121,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -ak -ak -ak -ak -ak -ak -aa -ak -ak -ak -am -am -am -am -am -am -am -ba -ba -ba -am -am -am -am -am -am -al -al -cf -cf -cf -cf -cf -cf -cf -cf -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(122,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ad -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -an -az -aJ -aJ -aJ -am -bb -bb -bb -am -bq -bc -bc -bM -am -al -aa -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(123,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ao -aA -aK -aK -aK -aW -bc -bc -bc -am -br -bc -bc -bN -am -al -aa -aa -al -al -al -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(124,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ap -aB -aL -aL -aL -am -bc -bc -bc -am -bs -bc -bG -bO -am -al -aa -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(125,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -bt -bc -bH -bP -am -am -cc -cg -cj -cj -cj -cj -cj -cn -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(126,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aq -aC -aM -aQ -aS -am -bc -bc -bc -am -bu -bc -bI -bQ -bV -cb -cd -ch -ck -ck -ck -ck -cm -co -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(127,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ar -aD -aN -aQ -aS -aX -bc -bc -bc -bo -bc -bc -bJ -bQ -bW -cb -ce -ch -ck -ck -ck -ck -ck -co -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(128,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -as -aE -aO -aQ -aS -am -bc -bc -bc -am -bv -bF -bK -am -bX -am -cd -ci -cl -cl -cl -cl -cl -cp -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(129,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -am -am -am -am -am -am -ak -aa -al -al -aa -al -al -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(130,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -at -aF -aP -aP -aP -am -bc -bc -bc -am -bw -bx -bx -bx -bY -am -ak -ak -al -al -al -al -al -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(131,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -au -aG -aG -aG -aG -aY -bc -bc -bc -bp -bx -bx -bx -bx -bx -am -ak -ak -ak -al -aa -al -al -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(132,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -av -am -av -am -av -am -bc -bc -bc -am -by -bx -bx -bR -bx -am -ak -ak -ak -ak -ak -ak -al -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(133,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aw -am -aw -am -aw -am -bc -bc -bc -am -bz -bx -bL -bS -bZ -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(134,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -bd -bc -bc -am -bA -bx -bL -bT -bZ -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(135,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ax -aH -aI -aR -aH -am -bc -bc -bc -am -bB -bx -bx -bU -bx -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(136,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ay -aI -aI -aI -aI -aZ -bc -bc -bc -bp -bx -bx -bx -bx -bx -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(137,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -ax -aH -aI -ax -aH -am -bc -bc -bc -am -bC -bx -bx -bx -ca -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(138,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -am -bj -am -am -am -am -am -am -am -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(139,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aT -aS -be -aS -bk -aS -bD -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -aj -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aT -aS -bf -aS -bl -aS -bE -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ai -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(141,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aS -aS -aS -aS -aS -aS -aS -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(142,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aS -aS -aS -aS -aS -aS -aS -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ai -ah -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(143,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aU -aS -bg -aS -bm -aS -aT -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(144,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aV -aS -bh -aS -aT -aS -aT -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(145,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -aV -aS -bi -aS -bn -aS -aT -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ah -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(146,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -am -am -am -am -am -am -am -am -am -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(147,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(148,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(149,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(150,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(151,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(152,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(153,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(154,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(155,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(156,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(157,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(158,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(159,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(160,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(161,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(162,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(163,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(164,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(165,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(166,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(167,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(168,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ak -ak -aa -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -aa -aa -aa -ak -ak -ak -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(169,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ak -ak -ac -aa -aa -aa -aa -aa -aa -aa -aa -ak -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(170,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(171,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(172,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(173,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(174,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(175,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(176,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(177,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(178,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(179,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(180,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(181,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(182,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(183,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(184,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(185,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(186,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(187,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(188,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -ai -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(189,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(190,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(191,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(192,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -aj -ah -ai -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(193,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -ah -ah -ah -ah -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(194,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(195,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ai -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(196,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -aj -ah -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ai -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(197,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ah -ai -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ah -ah -ah -ah -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(198,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ah -ah -ah -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ah -ah -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(199,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(201,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(202,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(203,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(204,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(205,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(206,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(207,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(208,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(209,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(210,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(211,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(212,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(213,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(214,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ae -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(215,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(216,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(217,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(218,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(219,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(220,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(221,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(222,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(223,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(224,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(225,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(226,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(227,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(228,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(229,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -ac -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(230,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ac -ac -ac -ac -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(231,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(232,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(233,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(234,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(235,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(236,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(237,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(238,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(239,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(240,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(241,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(242,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(243,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(244,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(245,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(246,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(247,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -ab -aa -aa -aa -aa -aa -aa -aa -"} -(248,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -aa -aa -aa -aa -aa -aa -"} -(249,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(250,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(251,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(252,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(253,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(254,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(255,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaeaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaeaaaaacacacacacacacacacacacacacahahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahahahahahacacahahacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahaiahahahajahahahaiahahacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacahahahahahahahahahahahacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahahaiahahacacacacacacacacaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahaiahahahacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahajahahaiahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacahahahacacacacacacacacacacacacacacacaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacahahaiahahahahacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacahahahahahacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacahahacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacaaaaaaaaacacaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamamamamamamamamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamanaoapamaqarasamatauavawamaxayaxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamazaAaBamaCaDaEamaFaGamamamaHaIaHamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaMaNaOamaPaGavawamaIaIaIamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaQaQaQamaPaGamamamaRaIaxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaalamaJaKaLamaSaSaSamaPaGavawamaHaIaHamaTaTaSaSaUaVaVamakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamaWamamamaXamamamaYamamamamaZamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbdbcbcbcbdbcbcbcbcbdbcbcbcambebfaSaSbgbhbiamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcbjaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalbabbbcbcbcbcbcbcbcbcbcbcbcbcbcbcbcambkblaSaSbmaTbnamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamamamboamamambpamamamambpamamaSaSaSaSaSaSaSamakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambqbrbsbtbubcbvambwbxbybzbAbBbxbCambDbEaSaSaTaTaTamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbcbcbcbcbFambxbxbxbxbxbxbxbxamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambcbcbGbHbIbJbKambxbxbxbLbLbxbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalambMbNbObPbQbQamambxbxbRbSbTbUbxbxamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalamamamamambVbWbXambYbxbxbZbZbxbxcaamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalalalalalamcbcbamamamamamamamamamamamakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalaaaaaacccdcecdakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaaaaacgchchciaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfaaalaacjckckclaaalaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjckckclalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacfalalalcjcmckclalalalalakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaacfaaaaaacncococpaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaacfaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakakakakakakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaakakakakaaaaakaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaacaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaaaacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaaacaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaacacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaaaaaaaacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacacacaaaaaaaaaaaaacacacacacacacacaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacaaaaaaaaacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaacacacacacacacacacacacacacacacacacacacacaaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacahahahahahahahahahahahahahacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahaiahahahaiahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaacaaacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacahahahahahahahahahahahahahaiahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacahahahahahajahahahahahahahahahacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacahahahahahahahahahahacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaeaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaeaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacacacacacacacacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacacacaaaaacacacacacacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacacacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaabababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababadaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/RandomZLevels/listeningpost.dmm b/maps/RandomZLevels/listeningpost.dmm index 91d2a6bccc..aac334a339 100644 --- a/maps/RandomZLevels/listeningpost.dmm +++ b/maps/RandomZLevels/listeningpost.dmm @@ -1,10539 +1,191 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"a" = ( -/turf/space, -/area) -"b" = ( -/turf/simulated/mineral, -/area/mine/unexplored) -"c" = ( -/turf/simulated/wall/r_wall, -/area/awaymission/listeningpost) -"d" = ( -/turf/simulated/floor/plating, -/area/awaymission/listeningpost) -"e" = ( -/obj/machinery/power/smes/magical{ - desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; - name = "power storage unit" - }, -/turf/simulated/floor/plating, -/area/awaymission/listeningpost) -"f" = ( -/obj/machinery/door/airlock, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"g" = ( -/turf/simulated/wall, -/area/awaymission/listeningpost) -"h" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper/monitorkey, -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/obj/item/clothing/glasses/regular, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"i" = ( -/obj/structure/table/standard, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"j" = ( -/turf/simulated/floor, -/area/awaymission/listeningpost) -"k" = ( -/obj/machinery/door/airlock/external, -/turf/simulated/floor/plating, -/area/awaymission/listeningpost) -"l" = ( -/turf/simulated/floor/plating/airless/asteroid, -/area/mine/explored) -"m" = ( -/obj/machinery/computer/message_monitor, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"n" = ( -/obj/structure/stool/bed/chair{ - dir = 4 - }, -/mob/living/simple_mob/hostile/syndicate{ - desc = "A weary looking syndicate operative."; - faction = "syndicate" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"o" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "november report" - }, -/obj/item/weapon/pen, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"p" = ( -/obj/item/device/radio/intercom{ - desc = "Talk through this. Evilly"; - freerange = 1; - frequency = 1213; - name = "Syndicate Intercom"; - pixel_x = 32; - subspace_transmission = 1; - syndie = 1 - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"q" = ( -/obj/structure/rack, -/obj/item/clothing/suit/space/syndicate, -/obj/item/clothing/mask/gas, -/obj/item/clothing/head/helmet/space/syndicate, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"r" = ( -/obj/machinery/door/airlock, -/obj/item/weapon/paper{ - info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; - name = "odd report" - }, -/obj/item/weapon/gun/projectile/pistol, -/obj/item/weapon/silencer, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"s" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/turf/simulated/mineral, -/area/mine/unexplored) -"t" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/mineral, -/area/mine/unexplored) -"u" = ( -/obj/structure/disposaloutlet{ - dir = 4 - }, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/turf/simulated/floor/plating/airless, -/area) -"v" = ( -/obj/structure/stool/bed, -/obj/item/weapon/bedsheet/brown, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"w" = ( -/obj/structure/table/standard, -/obj/item/device/flashlight/lamp, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"x" = ( -/obj/machinery/vending/snack, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"y" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/mineral, -/area/mine/unexplored) -"z" = ( -/obj/machinery/vending/cola, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"A" = ( -/obj/structure/closet, -/obj/item/clothing/gloves/boxing, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"B" = ( -/obj/structure/filingcabinet, -/obj/item/weapon/paper{ - info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; - name = "april report" - }, -/obj/item/weapon/paper{ - info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; - name = "may report" - }, -/obj/item/weapon/paper{ - info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; - name = "june report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "july report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "august report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "september report" - }, -/obj/item/weapon/paper{ - info = "Nothing of interest to report."; - name = "october report" - }, -/obj/item/weapon/paper{ - info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; - name = "receipt" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"C" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper{ - info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; - name = "mission briefing" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"D" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"E" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/wall/r_wall, -/area/awaymission/listeningpost) -"F" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/mineral, -/area/mine/unexplored) -"G" = ( -/obj/machinery/door/airlock{ - name = "Toilet" - }, -/turf/simulated/floor, -/area/awaymission/listeningpost) -"H" = ( -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/awaymission/listeningpost) -"I" = ( -/obj/machinery/shower{ - icon_state = "shower"; - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/awaymission/listeningpost) -"J" = ( -/obj/structure/toilet{ - icon_state = "toilet00"; - dir = 8 - }, -/turf/simulated/floor{ - icon_state = "freezerfloor" - }, -/area/awaymission/listeningpost) -"K" = ( -/turf/simulated/mineral/clown, -/area/mine/unexplored) -"L" = ( -/turf/simulated/shuttle/wall{ - icon_state = "wall3" - }, -/area/mine/explored) -"M" = ( -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"N" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 9 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"O" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 1 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"P" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 5 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"Q" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 8 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"R" = ( -/obj/machinery/gateway/centeraway, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"S" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 4 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"T" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 10 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"U" = ( -/obj/machinery/gateway, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) -"V" = ( -/obj/machinery/gateway{ - icon_state = "off"; - dir = 6 - }, -/turf/simulated/floor/airless{ - icon_state = "gcircuit" - }, -/area/mine/explored) +"a" = (/turf/space,/area) +"b" = (/obj/effect/blocker,/turf/space,/area) +"c" = (/turf/simulated/wall/r_wall,/area/awaymission/listeningpost) +"d" = (/obj/machinery/power/smes/magical{desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; name = "power storage unit"},/turf/simulated/floor,/area/awaymission/listeningpost) +"e" = (/obj/machinery/door/airlock/external,/turf/simulated/floor,/area/awaymission/listeningpost) +"f" = (/obj/machinery/door/airlock,/turf/simulated/floor,/area/awaymission/listeningpost) +"g" = (/turf/simulated/wall,/area/awaymission/listeningpost) +"h" = (/turf/simulated/mineral,/area/mine/unexplored) +"i" = (/turf/simulated/floor,/area/awaymission/listeningpost) +"j" = (/obj/structure/table/standard,/obj/item/weapon/paper/monitorkey,/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; !INVALID_VAR! = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = 32; subspace_transmission = 1; syndie = 1},/obj/item/clothing/glasses/regular,/turf/simulated/floor,/area/awaymission/listeningpost) +"k" = (/obj/structure/table/standard,/turf/simulated/floor,/area/awaymission/listeningpost) +"l" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored) +"m" = (/obj/machinery/computer/message_monitor{dir = 4},/turf/simulated/floor,/area/awaymission/listeningpost) +"n" = (/obj/structure/bed/chair{dir = 4},/mob/living/simple_mob/humanoid/merc{desc = "A weary looking syndicate operative."; faction = "syndicate"},/turf/simulated/floor,/area/awaymission/listeningpost) +"o" = (/obj/structure/table/standard,/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "november report"},/obj/item/weapon/pen,/turf/simulated/floor,/area/awaymission/listeningpost) +"p" = (/obj/item/device/radio/intercom{desc = "Talk through this. Evilly"; !INVALID_VAR! = 1; frequency = 1213; name = "Syndicate Intercom"; pixel_x = 32; subspace_transmission = 1; syndie = 1},/turf/simulated/floor,/area/awaymission/listeningpost) +"q" = (/obj/structure/table/rack,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/mask/gas,/obj/item/clothing/head/helmet/space/syndicate,/turf/simulated/floor,/area/awaymission/listeningpost) +"r" = (/obj/machinery/door/airlock,/obj/item/weapon/paper{info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; name = "odd report"},/obj/item/weapon/gun/projectile/pistol,/obj/item/weapon/silencer,/turf/simulated/floor,/area/awaymission/listeningpost) +"s" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored) +"t" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/mineral,/area/mine/unexplored) +"u" = (/obj/structure/disposaloutlet{dir = 4},/obj/structure/disposalpipe/trunk{dir = 8},/turf/simulated/floor/airless,/area) +"v" = (/obj/structure/bed,/obj/item/weapon/bedsheet/brown,/turf/simulated/floor,/area/awaymission/listeningpost) +"w" = (/obj/structure/table/standard,/obj/item/device/flashlight/lamp,/turf/simulated/floor,/area/awaymission/listeningpost) +"x" = (/obj/machinery/vending/snack,/turf/simulated/floor,/area/awaymission/listeningpost) +"y" = (/obj/structure/disposalpipe/segment,/turf/simulated/mineral,/area/mine/unexplored) +"z" = (/obj/machinery/vending/cola,/turf/simulated/floor,/area/awaymission/listeningpost) +"A" = (/obj/structure/closet,/obj/item/clothing/gloves/boxing,/turf/simulated/floor,/area/awaymission/listeningpost) +"B" = (/obj/structure/filingcabinet,/obj/item/weapon/paper{info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; name = "april report"},/obj/item/weapon/paper{info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; name = "may report"},/obj/item/weapon/paper{info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; name = "june report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "july report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "august report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "september report"},/obj/item/weapon/paper{info = "Nothing of interest to report."; name = "october report"},/obj/item/weapon/paper{info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; name = "receipt"},/turf/simulated/floor,/area/awaymission/listeningpost) +"C" = (/obj/structure/table/standard,/obj/item/weapon/paper{info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; name = "mission briefing"},/turf/simulated/floor,/area/awaymission/listeningpost) +"D" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor,/area/awaymission/listeningpost) +"E" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/wall/r_wall,/area/awaymission/listeningpost) +"F" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/mineral,/area/mine/unexplored) +"G" = (/obj/machinery/door/airlock{name = "Toilet"},/turf/simulated/floor,/area/awaymission/listeningpost) +"H" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost) +"I" = (/obj/machinery/shower{icon_state = "shower"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost) +"J" = (/obj/structure/toilet{icon_state = "toilet00"; dir = 8},/turf/simulated/floor/tiled/freezer,/area/awaymission/listeningpost) +"K" = (/turf/simulated/mineral/floor,/area/mine/unexplored) +"L" = (/turf/simulated/floor/greengrid,/area/mine/explored) +"M" = (/turf/simulated/mineral/floor,/area/mine/explored) +"N" = (/obj/machinery/gateway{icon_state = "off"; dir = 9},/turf/simulated/floor/greengrid,/area/mine/explored) +"O" = (/obj/machinery/gateway{icon_state = "off"; dir = 1},/turf/simulated/floor/greengrid,/area/mine/explored) +"P" = (/obj/machinery/gateway{icon_state = "off"; dir = 5},/turf/simulated/floor/greengrid,/area/mine/explored) +"Q" = (/obj/machinery/gateway{icon_state = "off"; dir = 8},/turf/simulated/floor/greengrid,/area/mine/explored) +"R" = (/obj/machinery/gateway/centeraway,/turf/simulated/floor/greengrid,/area/mine/explored) +"S" = (/obj/machinery/gateway{icon_state = "off"; dir = 4},/turf/simulated/floor/greengrid,/area/mine/explored) +"T" = (/obj/machinery/gateway{icon_state = "off"; dir = 10},/turf/simulated/floor/greengrid,/area/mine/explored) +"U" = (/obj/machinery/gateway,/turf/simulated/floor/greengrid,/area/mine/explored) +"V" = (/obj/machinery/gateway{icon_state = "off"; dir = 6},/turf/simulated/floor/greengrid,/area/mine/explored) (1,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(2,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(3,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(4,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(5,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(6,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(7,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(8,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(9,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(10,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(11,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(12,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(13,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(14,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(15,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(16,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(17,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(18,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(19,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(20,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(21,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(22,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(23,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(24,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(25,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(26,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(27,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(28,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(29,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(30,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(31,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(32,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(33,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(34,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(35,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(36,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(37,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(38,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -l -l -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(39,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -l -l -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(40,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(41,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(42,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(43,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(44,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(45,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(46,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(47,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(48,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(49,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(50,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(51,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(52,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -l -b -b -b -b -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(53,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -M -M -b -M -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(54,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -M -N -Q -T -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(55,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -M -O -R -U -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(56,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -K -K -b -b -b -b -K -b -b -b -b -b -b -b -L -M -P -S -V -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(57,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -K -b -b -b -b -b -b -b -b -b -b -b -b -L -M -M -M -M -M -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(58,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -L -L -L -L -L -L -L -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(59,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(60,1,1) = {" -a -a -a -a -b -b -b -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(61,1,1) = {" -a -a -a -a -b -b -b -b -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -K -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(62,1,1) = {" -a -a -a -b -b -b -b -b -a -a -b -b -b -b -a -a -a -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(63,1,1) = {" -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(64,1,1) = {" -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(65,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -K -b -K -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(66,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(67,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(68,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(69,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(70,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -l -l -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(71,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(72,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -a -a -a -b -b -b -b -b -b -b -b -b -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(73,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -b -b -b -b -b -b -b -b -b -l -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(74,1,1) = {" -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -b -b -b -b -b -b -b -b -b -b -l -a -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(75,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -l -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(76,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -l -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(77,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(78,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(79,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(80,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(81,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -c -v -j -A -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(82,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -b -c -c -c -b -c -w -j -B -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(83,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -c -c -m -c -c -c -g -f -g -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(84,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -b -b -c -h -n -p -j -r -j -j -C -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(85,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -c -c -i -o -i -j -g -j -j -j -G -H -H -c -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(86,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -d -f -j -j -j -j -g -j -j -D -g -I -J -c -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(87,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -e -g -j -j -j -q -g -x -z -E -c -c -c -c -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(88,1,1) = {" -a -a -a -a -b -b -b -b -b -b -b -c -c -c -k -k -c -c -c -c -c -E -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(89,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -c -d -d -c -b -b -b -b -t -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(90,1,1) = {" -a -a -a -a -a -b -b -b -b -b -b -b -b -c -d -d -c -b -s -y -y -F -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(91,1,1) = {" -a -a -a -a -a -a -a -b -b -b -b -b -b -c -k -k -c -b -t -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(92,1,1) = {" -a -a -a -a -a -a -a -a -a -b -b -b -b -a -a -a -a -b -t -b -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(93,1,1) = {" -a -a -a -a -a -a -a -a -a -a -b -b -b -a -a -a -a -a -u -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(94,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(95,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(96,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -a -b -b -b -b -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(97,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -a -a -a -b -b -b -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(98,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -b -b -b -b -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(99,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -"} -(100,1,1) = {" -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a -a +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhaaaaaaaaaaaaahhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhaaaaaahhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhcccchhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhcidchhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhcccfgccccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhccjkiieiieaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaalhhhhhhhhhhhhhhhhhhcmnoiieiieaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhalhhhhhhhhhhhhhhhhhhccpkiiccccaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhllhhhhhhhhhhhhhhhhhhhciiiqchhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhlhhhhhhhhhhhhhhhhccccrgggchsttuaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcvwgiiixchyhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhciifiiizchyhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcABgCiDEEtFhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcccccGgchhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcHIchhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcHJchhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhcccchhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhlllhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhllaaahhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhlllaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhlaaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhlaaaahhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhlaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhaahhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhahhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaahhhhaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaahhhhhhhaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaahhhhhhhhhhhaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhlllllhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhlaaaahhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhllhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhKKKKhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhKLLLLMMMhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhMLLLLLMhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhLNOPLLKhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhQRSLMKhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhlhhhhhhhhhhhhhhLTUVLMKhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhhllhhhhhhhhhhhhhMLLLLMhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhhhaalhhhhhhhhhhhhMMLLLMMhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaahhhhhhhhhhhhhaaaahhhhhhhhhhhhhhhKKhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaahhhhhhhhhhhaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaahhhhhhaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhlhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhllhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhalhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhaalhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahhhhhhhaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaa +aaaaaaaabbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/RandomZLevels/snowfield.dm b/maps/RandomZLevels/snowfield.dm index f53714b0ac..8cfed032f5 100644 --- a/maps/RandomZLevels/snowfield.dm +++ b/maps/RandomZLevels/snowfield.dm @@ -17,10 +17,10 @@ power_environ = 0 mobcountmax = 100 floracountmax = 7000 - /* - valid_mobs = list(/mob/living/simple_mob/hostile/samak/polar, /mob/living/simple_mob/hostile/diyaab/polar, - /mob/living/simple_mob/hostile/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, - /mob/living/simple_mob/hostile/wolf)*/ //VORESTATION AI TEMPORARY REMOVAL + + valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar, + /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, + /mob/living/simple_mob/animal/wolf) valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, @@ -86,13 +86,13 @@ desc = "This bastard sure isn't drinking Space Cola anymore." ..() -/mob/living/simple_mob/hostile/samak/polar +/mob/living/simple_mob/animal/sif/sakimm/polar faction = "polar" -/mob/living/simple_mob/hostile/diyaab/polar +/mob/living/simple_mob/animal/sif/diyaab/polar faction = "polar" -/mob/living/simple_mob/hostile/shantak/polar +/mob/living/simple_mob/animal/sif/shantak/polar faction = "polar" // -- Items -- // diff --git a/maps/RandomZLevels/snowfield.dmm b/maps/RandomZLevels/snowfield.dmm index 01fbbeebf6..5a2f3cad1a 100644 --- a/maps/RandomZLevels/snowfield.dmm +++ b/maps/RandomZLevels/snowfield.dmm @@ -1,42085 +1,389 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/unsimulated/wall/planetary/sif, -/area/awaymission/snowfield/restricted) -"ab" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/restricted) -"ac" = ( -/obj/effect/blocker, -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/restricted) -"ad" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/outside) -"ae" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield) -"af" = ( -/obj/effect/landmark/away, -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield) -"ag" = ( -/obj/machinery/light/small, -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ah" = ( -/turf/snow/snow2{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ai" = ( -/turf/simulated/wall/durasteel, -/area/awaymission/snowfield/base) -"aj" = ( -/obj/structure/sign/electricshock, -/turf/simulated/wall/durasteel, -/area/awaymission/snowfield/base) -"ak" = ( -/obj/machinery/door/airlock/hatch, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"al" = ( -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/industrial/warning/full, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"am" = ( -/obj/structure/table/standard, -/obj/machinery/cell_charger, -/obj/item/stack/cable_coil/yellow{ - amount = 2; - icon_state = "coil2" - }, -/obj/item/weapon/shovel, -/obj/machinery/light/small{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"an" = ( -/obj/machinery/power/terminal{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"ao" = ( -/obj/machinery/power/smes/buildable{ - charge = 2.5e+006; - input_attempt = 1; - input_level = 250000; - inputting = 1; - output_level = 250000; - RCon_tag = "Telecommunications Satellite" - }, -/obj/structure/cable{ - icon_state = "0-2"; - d2 = 2 - }, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"ap" = ( -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"aq" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"ar" = ( -/obj/machinery/power/apc{ - dir = 8; - name = "west bump-derelict"; - operating = 0; - pixel_x = -24 - }, -/obj/structure/cable{ - icon_state = "0-4"; - d2 = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"as" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"at" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8"; - - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"au" = ( -/obj/structure/sign/biohazard, -/turf/simulated/wall/durasteel, -/area/awaymission/snowfield/base) -"av" = ( -/obj/machinery/door/airlock/centcom, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"aw" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ax" = ( -/obj/structure/closet/secure_closet/hydroponics{ - req_access = list(47) - }, -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ay" = ( -/obj/machinery/smartfridge/drying_rack, -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"az" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/closet/crate/bin, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aA" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aB" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/machinery/atmospherics/portables_connector, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aC" = ( -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"aD" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aE" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/item/weapon/tool/wrench, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aF" = ( -/obj/machinery/biogenerator, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aG" = ( -/obj/machinery/seed_extractor, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aH" = ( -/obj/machinery/reagentgrinder, -/obj/structure/table/glass, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aI" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/beakers{ - pixel_x = 2; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aJ" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"aK" = ( -/obj/structure/closet/jcloset, -/obj/item/weapon/soap/deluxe, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"aL" = ( -/obj/structure/closet/l3closet/janitor, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"aM" = ( -/obj/structure/closet/crate/hydroponics/prespawned, -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aN" = ( -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aO" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aP" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced, -/obj/machinery/atmospherics/pipe/simple/hidden/universal{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"aQ" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Isolation to Waste" - }, -/obj/effect/floor_decal/corner/green/full, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aR" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aS" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aT" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aU" = ( -/obj/machinery/atmospherics/pipe/simple/visible{ - dir = 4 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"aV" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/machinery/atmospherics/binary/pump{ - dir = 8; - name = "Port to Isolation" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aW" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/obj/machinery/meter, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aX" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aY" = ( -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"aZ" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/obj/structure/table/glass, -/obj/item/weapon/storage/box/botanydisk, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ba" = ( -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bb" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bc" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bd" = ( -/obj/machinery/door/airlock/research{ - name = "Xenoflora Storage"; - req_access = list(55) - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"be" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bf" = ( -/obj/machinery/botany/editor, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bg" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bh" = ( -/obj/effect/floor_decal/corner/green/full, -/obj/item/device/radio/intercom{ - dir = 8; - name = "Station Intercom (General)"; - pixel_x = -21 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bi" = ( -/obj/machinery/atmospherics/unary/freezer{ - dir = 2; - icon_state = "freezer" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bj" = ( -/obj/machinery/atmospherics/unary/heater{ - dir = 2; - icon_state = "heater" - }, -/obj/effect/floor_decal/corner/green{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bk" = ( -/obj/machinery/atmospherics/portables_connector, -/obj/effect/floor_decal/corner/green/full{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bl" = ( -/obj/structure/grille, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/structure/window/reinforced, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"bm" = ( -/obj/machinery/botany/extractor, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bn" = ( -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/grenade/chem_grenade/cleaner, -/obj/item/weapon/reagent_containers/spray/cleaner, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/mousetraps, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bo" = ( -/obj/machinery/door/window/northright{ - name = "Xenoflora Containment"; - req_access = list(47) - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bp" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bq" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/visible, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"br" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/visible{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bs" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bt" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bu" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bv" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bw" = ( -/obj/effect/floor_decal/corner/green{ - dir = 5 - }, -/obj/structure/bed/chair/office/dark{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bx" = ( -/obj/effect/floor_decal/corner/green/full{ - dir = 1 - }, -/obj/structure/table/glass, -/obj/item/weapon/paper_bin{ - pixel_x = 1; - pixel_y = 9 - }, -/obj/item/weapon/pen, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"by" = ( -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bz" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bA" = ( -/obj/machinery/atmospherics/portables_connector, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bB" = ( -/obj/item/device/radio/intercom{ - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bC" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/extinguisher_cabinet{ - pixel_x = 5; - pixel_y = -32 - }, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/syringes, -/obj/item/weapon/storage/box/gloves{ - pixel_x = 4; - pixel_y = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bD" = ( -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - layer = 4; - name = "Station Intercom (General)"; - pixel_y = -21 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bE" = ( -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bF" = ( -/obj/structure/reagent_dispensers/watertank, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bG" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/closet/l3closet/scientist, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bH" = ( -/obj/effect/floor_decal/corner/green{ - dir = 9 - }, -/obj/structure/closet/medical_wall{ - pixel_y = -32 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bI" = ( -/obj/machinery/seed_storage/xenobotany, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bJ" = ( -/obj/machinery/vending/hydronutrients{ - categories = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bK" = ( -/obj/machinery/smartfridge, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bL" = ( -/obj/structure/table/glass, -/obj/item/weapon/tape_roll, -/obj/item/device/analyzer/plant_analyzer, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bM" = ( -/obj/effect/floor_decal/corner/green{ - dir = 6 - }, -/obj/structure/table/glass, -/obj/item/weapon/clipboard, -/obj/item/weapon/folder/white, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"bN" = ( -/obj/item/weapon/mop, -/obj/item/weapon/reagent_containers/glass/bucket, -/obj/structure/janitorialcart, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bO" = ( -/obj/machinery/light, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bP" = ( -/obj/machinery/portable_atmospherics/hydroponics{ - closed_system = 1; - name = "isolation tray" - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bQ" = ( -/obj/machinery/portable_atmospherics/hydroponics, -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"bS" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"bT" = ( -/obj/machinery/door/airlock/freezer, -/turf/simulated/floor/tiled/hydro, -/area/awaymission/snowfield/base) -"bU" = ( -/obj/machinery/door/airlock/maintenance, -/turf/simulated/floor/tiled/steel, -/area/awaymission/snowfield/base) -"bV" = ( -/obj/machinery/gateway{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"bW" = ( -/obj/machinery/gateway{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"bX" = ( -/obj/machinery/gateway{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 5 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"bY" = ( -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/item/seeds/random, -/obj/effect/floor_decal/industrial/outline/blue, -/obj/structure/closet/crate, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"bZ" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ca" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cb" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/cigarette, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cc" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/sink/kitchen{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cd" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ce" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/machinery/microwave{ - pixel_y = 6 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cf" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/donkpockets{ - pixel_x = 3; - pixel_y = 2 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cg" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/effect/floor_decal/corner/grey/diagonal{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ch" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ci" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cj" = ( -/obj/structure/toilet, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"ck" = ( -/obj/structure/curtain/open/shower, -/obj/machinery/door/window/southright{ - name = "Shower" - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/shower{ - pixel_y = 3 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cl" = ( -/obj/machinery/gateway{ - dir = 8 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cm" = ( -/obj/machinery/gateway/centeraway{ - calibrated = 0 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cn" = ( -/obj/machinery/gateway{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"co" = ( -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"cp" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/coffee, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cq" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/item/weapon/stool/padded, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cr" = ( -/obj/structure/sink{ - icon_state = "sink"; - dir = 8; - pixel_x = -12; - pixel_y = 2 - }, -/obj/structure/mirror{ - pixel_x = -28 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cs" = ( -/obj/machinery/gateway{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"ct" = ( -/obj/machinery/gateway, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cu" = ( -/obj/machinery/gateway{ - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 6 - }, -/turf/simulated/floor/reinforced, -/area/awaymission/snowfield/base) -"cv" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/snack, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cw" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/table/standard, -/obj/item/weapon/deck/cards, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cx" = ( -/obj/machinery/door/airlock/silver{ - name = "Restroom" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cy" = ( -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cz" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"cA" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/freezer, -/area/awaymission/snowfield/base) -"cB" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/sovietsoda, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cC" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cD" = ( -/obj/structure/closet/secure_closet/personal, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cE" = ( -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cF" = ( -/obj/structure/bed/padded, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cG" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cH" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cI" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/vending/dinnerware, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cJ" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cK" = ( -/obj/structure/table/standard, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cL" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/bed/chair/comfy/beige{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cM" = ( -/obj/machinery/door/airlock/highsecurity, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"cN" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/structure/closet/crate/bin, -/obj/item/trash/pistachios, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cO" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cP" = ( -/obj/structure/simple_door/wood, -/turf/simulated/floor/wood, -/area/awaymission/snowfield/base) -"cQ" = ( -/obj/machinery/door/airlock/freezer, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cR" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/machinery/door/firedoor/border_only, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"cS" = ( -/obj/effect/floor_decal/corner/paleblue/diagonal, -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/tiled/white, -/area/awaymission/snowfield/base) -"cT" = ( -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cU" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cV" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/derelict/d9, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cW" = ( -/obj/effect/floor_decal/derelict/d10, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cX" = ( -/obj/effect/floor_decal/derelict/d11, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cY" = ( -/obj/effect/floor_decal/derelict/d12, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"cZ" = ( -/obj/effect/floor_decal/derelict/d13, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"da" = ( -/obj/effect/floor_decal/derelict/d14, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"db" = ( -/obj/effect/floor_decal/derelict/d15, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dc" = ( -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/derelict/d16, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dd" = ( -/obj/effect/floor_decal/derelict/d1, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"de" = ( -/obj/effect/floor_decal/derelict/d2, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"df" = ( -/obj/effect/floor_decal/derelict/d3, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dg" = ( -/obj/effect/floor_decal/derelict/d4, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dh" = ( -/obj/effect/floor_decal/derelict/d5, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"di" = ( -/obj/effect/floor_decal/derelict/d6, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dj" = ( -/obj/effect/floor_decal/derelict/d7, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dk" = ( -/obj/effect/floor_decal/derelict/d8, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dl" = ( -/obj/machinery/door/airlock/security, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dm" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 8 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"dn" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/door/window/southleft, -/obj/machinery/door/window/northleft, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"do" = ( -/obj/structure/grille, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8 - }, -/obj/machinery/door/firedoor/border_only, -/obj/structure/window/reinforced{ - dir = 4; - health = 1e+006 - }, -/turf/simulated/floor/plating, -/area/awaymission/snowfield/base) -"dp" = ( -/obj/machinery/door/airlock/glass, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dq" = ( -/obj/machinery/door/airlock/maintenance{ - locked = 1; - name = "Storage Access" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dr" = ( -/obj/structure/closet/l3closet/security, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"ds" = ( -/obj/structure/closet/fireaxecabinet{ - pixel_y = 32 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dt" = ( -/obj/machinery/space_heater, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"du" = ( -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dv" = ( -/obj/structure/table/steel_reinforced, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dw" = ( -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"dx" = ( -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dy" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/gimmick/russian, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dz" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/l3closet/general, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dA" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/freezer/rations, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dB" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dC" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/loot, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dD" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/weapon, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dE" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/emcloset, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dF" = ( -/obj/structure/closet/firecloset, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dG" = ( -/obj/structure/table/steel_reinforced, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/item/device/radio/phone, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dH" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"dI" = ( -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dJ" = ( -/obj/structure/bed/chair/wood{ - dir = 8 - }, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"dK" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"dL" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dM" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dN" = ( -/obj/structure/closet/bombclosetsecurity, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dO" = ( -/obj/structure/closet/medical_wall{ - pixel_y = -32 - }, -/obj/item/weapon/storage/firstaid/toxin, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/adv, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dP" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/storage/backpack/satchel/sec, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dQ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet, -/obj/item/clothing/shoes/boots/winter, -/obj/item/clothing/suit/storage/hooded/wintercoat, -/obj/item/clothing/head/hood/winter, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dR" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/internals, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dS" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dT" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/decal/remains/human, -/mob/living/simple_mob/hostile/mimic/crate, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dU" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/gmcloset, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dV" = ( -/obj/machinery/power/port_gen/pacman, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"dW" = ( -/obj/machinery/door/airlock/highsecurity{ - locked = 1; - name = "Secure Armoury Section"; - req_access = list(150) - }, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dX" = ( -/obj/structure/closet, -/obj/item/clothing/under/soviet, -/obj/item/clothing/shoes/boots/jackboots, -/obj/item/clothing/head/ushanka, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dY" = ( -/obj/structure/closet/crate/secure/gear, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/obj/item/ammo_magazine/clip/c762, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"dZ" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate, -/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ea" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/space/syndicate, -/obj/item/clothing/head/helmet/space/syndicate, -/obj/structure/closet/crate/internals, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"eb" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/hgpirate, -/obj/item/clothing/head/hgpiratecap, -/obj/structure/closet/crate/secure/gear, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ec" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/clothing/suit/armor/combat, -/obj/structure/closet/crate/secure/gear, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ed" = ( -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/mob/living/simple_mob/hostile/viscerator, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"ee" = ( -/mob/living/simple_mob/hostile/viscerator, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"ef" = ( -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/mob/living/simple_mob/hostile/viscerator, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"eg" = ( -/obj/structure/closet/crate/secure/weapon, -/obj/item/weapon/gun/projectile/shotgun/pump/rifle/mosin, -/turf/simulated/floor/tiled/dark, -/area/awaymission/snowfield/base) -"eh" = ( -/obj/structure/coatrack, -/turf/simulated/floor/grass, -/area/awaymission/snowfield/base) -"ei" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/wardrobe/red, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ej" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/medical, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/weapon/storage/firstaid/regular, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/obj/item/device/flashlight/flare, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ek" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"el" = ( -/obj/effect/floor_decal/industrial/loading{ - icon_state = "loadingarea"; - dir = 1 - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"em" = ( -/obj/machinery/conveyor_switch{ - id = "away_soviet" - }, -/obj/effect/floor_decal/industrial/hatch/yellow, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"en" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/crate/secure/phoron, -/obj/fiftyspawner/phoron, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"eo" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/structure/closet/toolcloset, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"ep" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/door/airlock/centcom, -/turf/simulated/floor/holofloor/wood, -/area/awaymission/snowfield/base) -"eq" = ( -/obj/structure/plasticflaps/mining, -/obj/machinery/conveyor{ - dir = 2; - id = "away_soviet" - }, -/turf/simulated/floor/tiled/neutral, -/area/awaymission/snowfield/base) -"er" = ( -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"es" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"et" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eu" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ev" = ( -/obj/machinery/conveyor_switch{ - id = "away_soviet" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ew" = ( -/obj/machinery/conveyor{ - dir = 2; - id = "away_soviet" - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ex" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ey" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 4 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"ez" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eA" = ( -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eB" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eC" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - icon_state = "warning_dust"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eD" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/dust, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eE" = ( -/obj/effect/floor_decal/industrial/warning/dust/corner{ - icon_state = "warningcorner_dust"; - dir = 8 - }, -/turf/simulated/floor/tiled/asteroid_steel{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) -"eF" = ( -/turf/simulated/floor/reinforced{ - nitrogen = 93.7835; - oxygen = 20.7263; - temperature = 243.15 - }, -/area/awaymission/snowfield/base) +"aa" = (/turf/unsimulated/wall/planetary/sif,/area/awaymission/snowfield/restricted) +"ab" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) +"ac" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) +"ad" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ae" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield) +"af" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/restricted) +"ag" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ah" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base) +"ai" = (/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield) +"aj" = (/obj/effect/blocker,/obj/effect/blocker,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ak" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"al" = (/obj/effect/landmark/away,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/base) +"am" = (/obj/machinery/light/small,/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"an" = (/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) +"ao" = (/obj/structure/sign/electricshock,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) +"ap" = (/obj/machinery/door/airlock/hatch,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aq" = (/obj/structure/cable/yellow{d2 = 4; icon_state = "0-4"},/obj/effect/floor_decal/industrial/warning/full,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ar" = (/obj/structure/table/standard,/obj/machinery/cell_charger,/obj/item/stack/cable_coil/yellow{amount = 2; icon_state = "coil2"},/obj/item/weapon/shovel,/obj/machinery/light/small{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"as" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"at" = (/obj/machinery/power/smes/buildable{charge = 2.5e+006; input_attempt = 1; input_level = 250000; inputting = 1; output_level = 250000; RCon_tag = "Telecommunications Satellite"},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"au" = (/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"av" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aw" = (/obj/machinery/power/apc{dir = 8; name = "west bump-derelict"; operating = 0; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ax" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ay" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"az" = (/obj/structure/sign/biohazard,/turf/simulated/wall/durasteel,/area/awaymission/snowfield/outside) +"aA" = (/obj/machinery/door/airlock/centcom,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aB" = (/obj/structure/table/standard,/obj/item/weapon/hand_labeler,/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aC" = (/obj/structure/closet/secure_closet/hydroponics{req_access = list(47)},/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aD" = (/obj/machinery/smartfridge/drying_rack,/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aE" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/crate/bin,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aG" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/machinery/atmospherics/portables_connector,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aH" = (/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"aI" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aJ" = (/obj/machinery/atmospherics/portables_connector,/obj/item/weapon/tool/wrench,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aK" = (/obj/machinery/biogenerator,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aL" = (/obj/machinery/seed_extractor,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aM" = (/obj/machinery/reagentgrinder,/obj/structure/table/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aN" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/storage/box/beakers{pixel_x = 2; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aO" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"aP" = (/obj/structure/closet/jcloset,/obj/item/weapon/soap/deluxe,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"aQ" = (/obj/structure/closet/l3closet/janitor,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"aR" = (/obj/structure/closet/crate/hydroponics/prespawned,/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aS" = (/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aT" = (/obj/effect/floor_decal/corner/green{dir = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aU" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced,/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"aV" = (/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Isolation to Waste"},/obj/effect/floor_decal/corner/green/full,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aW" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aX" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/manifold/visible,/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aY" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"aZ" = (/obj/machinery/atmospherics/pipe/simple/visible{dir = 4},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"ba" = (/obj/effect/floor_decal/corner/green/full,/obj/machinery/atmospherics/binary/pump{dir = 8; name = "Port to Isolation"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bb" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/obj/machinery/meter,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bc" = (/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bd" = (/obj/effect/floor_decal/corner/green{dir = 10},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"be" = (/obj/effect/floor_decal/corner/green/full{dir = 4},/obj/structure/table/glass,/obj/item/weapon/storage/box/botanydisk,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bf" = (/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bg" = (/obj/effect/floor_decal/corner/green{dir = 9},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bh" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bi" = (/obj/machinery/door/airlock/research{name = "Xenoflora Storage"; req_access = list(55)},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bj" = (/obj/machinery/portable_atmospherics/hydroponics,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bk" = (/obj/machinery/botany/editor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bl" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bm" = (/obj/effect/floor_decal/corner/green/full,/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bn" = (/obj/machinery/atmospherics/unary/freezer{dir = 2; icon_state = "freezer"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bo" = (/obj/machinery/atmospherics/unary/heater{dir = 2; icon_state = "heater"},/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bp" = (/obj/machinery/atmospherics/portables_connector,/obj/effect/floor_decal/corner/green/full{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bq" = (/obj/structure/grille,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"br" = (/obj/machinery/botany/extractor,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bs" = (/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/grenade/chem_grenade/cleaner,/obj/item/weapon/reagent_containers/spray/cleaner,/obj/structure/table/steel,/obj/item/weapon/storage/box/mousetraps,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bt" = (/obj/machinery/door/window/northright{name = "Xenoflora Containment"; req_access = list(47)},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bu" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bv" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bw" = (/obj/structure/window/reinforced{dir = 1},/obj/machinery/atmospherics/pipe/simple/visible{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bx" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"by" = (/obj/effect/floor_decal/corner/green{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bz" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bA" = (/obj/effect/floor_decal/corner/green/full{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bB" = (/obj/effect/floor_decal/corner/green{dir = 5},/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bC" = (/obj/effect/floor_decal/corner/green/full{dir = 1},/obj/structure/table/glass,/obj/item/weapon/paper_bin{pixel_x = 1; pixel_y = 9},/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bD" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bF" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bG" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bH" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = 5; pixel_y = -32},/obj/structure/table/standard,/obj/item/weapon/storage/box/syringes,/obj/item/weapon/storage/box/gloves{pixel_x = 4; pixel_y = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bI" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/item/device/radio/intercom{layer = 4; name = "Station Intercom (General)"; pixel_y = -21},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bJ" = (/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bK" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bL" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/closet/l3closet/scientist,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bM" = (/obj/effect/floor_decal/corner/green{dir = 9},/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bN" = (/obj/machinery/seed_storage/xenobotany,/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bO" = (/obj/machinery/vending/hydronutrients{categories = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bP" = (/obj/machinery/smartfridge,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bQ" = (/obj/structure/table/glass,/obj/item/weapon/tape_roll,/obj/item/device/analyzer/plant_analyzer,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bR" = (/obj/effect/floor_decal/corner/green{dir = 6},/obj/structure/table/glass,/obj/item/weapon/clipboard,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"bS" = (/obj/item/weapon/mop,/obj/item/weapon/reagent_containers/glass/bucket,/obj/structure/janitorialcart,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bT" = (/obj/machinery/light,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"bU" = (/obj/machinery/portable_atmospherics/hydroponics{closed_system = 1; name = "isolation tray"},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bV" = (/obj/machinery/portable_atmospherics/hydroponics,/obj/machinery/atmospherics/portables_connector{dir = 1},/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"bX" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"bY" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/hydro,/area/awaymission/snowfield/outside) +"bZ" = (/obj/machinery/door/airlock/maintenance,/turf/simulated/floor/tiled/steel,/area/awaymission/snowfield/outside) +"ca" = (/obj/machinery/gateway{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 9},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cb" = (/obj/machinery/gateway{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cc" = (/obj/machinery/gateway{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cd" = (/obj/item/seeds/random,/obj/item/seeds/random,/obj/item/seeds/random,/obj/effect/floor_decal/industrial/outline/blue,/obj/structure/closet/crate,/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"ce" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cf" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cg" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"ch" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/sink/kitchen{pixel_y = 32},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"ci" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cj" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/machinery/microwave{pixel_y = 6},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"ck" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cl" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cm" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cn" = (/obj/structure/table/standard,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"co" = (/obj/structure/toilet,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cp" = (/obj/structure/curtain/open/shower,/obj/machinery/door/window/southright{name = "Shower"},/obj/structure/window/reinforced{dir = 8},/obj/machinery/shower{pixel_y = 3},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cq" = (/obj/machinery/gateway{dir = 8},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cr" = (/obj/machinery/gateway/centeraway{calibrated = 0},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cs" = (/obj/machinery/gateway{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"ct" = (/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"cu" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cv" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/item/weapon/stool/padded,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cw" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cx" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cy" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cz" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/reinforced,/area/awaymission/snowfield/outside) +"cA" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/snack,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cB" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/table/standard,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cC" = (/obj/machinery/door/airlock/silver{name = "Restroom"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cD" = (/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"cF" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/freezer,/area/awaymission/snowfield/outside) +"cG" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/sovietsoda,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cH" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cI" = (/obj/structure/closet/secure_closet/personal,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cJ" = (/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cK" = (/obj/structure/bed/padded,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cL" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cM" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cN" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/vending/dinnerware,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cO" = (/obj/machinery/space_heater,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cP" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cQ" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/bed/chair/comfy/beige{dir = 8},/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cR" = (/obj/machinery/door/airlock/highsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"cS" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/structure/closet/crate/bin,/obj/item/trash/pistachios,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cT" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/space_heater,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cU" = (/obj/structure/simple_door/wood,/turf/simulated/floor/wood,/area/awaymission/snowfield/outside) +"cV" = (/obj/machinery/door/airlock/freezer,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cW" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/border_only,/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"cX" = (/obj/effect/floor_decal/corner/paleblue/diagonal,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/white,/area/awaymission/snowfield/outside) +"cY" = (/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"cZ" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"da" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d9,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"db" = (/obj/effect/floor_decal/derelict/d10,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dc" = (/obj/effect/floor_decal/derelict/d11,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dd" = (/obj/effect/floor_decal/derelict/d12,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"de" = (/obj/effect/floor_decal/derelict/d13,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"df" = (/obj/effect/floor_decal/derelict/d14,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dg" = (/obj/effect/floor_decal/derelict/d15,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dh" = (/obj/machinery/light{dir = 1},/obj/effect/floor_decal/derelict/d16,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"di" = (/obj/effect/floor_decal/derelict/d1,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dj" = (/obj/effect/floor_decal/derelict/d2,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dk" = (/obj/effect/floor_decal/derelict/d3,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dl" = (/obj/effect/floor_decal/derelict/d4,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dm" = (/obj/effect/floor_decal/derelict/d5,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dn" = (/obj/effect/floor_decal/derelict/d6,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"do" = (/obj/effect/floor_decal/derelict/d7,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dp" = (/obj/effect/floor_decal/derelict/d8,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dq" = (/obj/machinery/door/airlock/security,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dr" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"ds" = (/obj/structure/table/steel_reinforced,/obj/machinery/door/window/southleft,/obj/machinery/door/window/northleft,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dt" = (/obj/structure/grille,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced{dir = 4; health = 1e+006},/turf/simulated/floor/plating,/area/awaymission/snowfield/outside) +"du" = (/obj/machinery/door/airlock/glass,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dv" = (/obj/machinery/door/airlock/maintenance{locked = 1; name = "Storage Access"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dw" = (/obj/structure/closet/l3closet/security,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dx" = (/obj/structure/closet/fireaxecabinet{pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dy" = (/obj/machinery/space_heater,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dz" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dA" = (/obj/structure/table/steel_reinforced,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dB" = (/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"dC" = (/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dD" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gimmick/russian,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dE" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/l3closet/general,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dF" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/freezer/rations,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dG" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dH" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/loot,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dI" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/weapon,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dJ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/emcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dK" = (/obj/structure/closet/firecloset,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dL" = (/obj/structure/table/steel_reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/item/device/radio/phone,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dM" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"dN" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dO" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"dP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"dQ" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dR" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dS" = (/obj/structure/closet/bombclosetsecurity,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dT" = (/turf/snow/snow2{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/shuttle/awaymission/oldengbase) +"dU" = (/obj/structure/closet/medical_wall{pixel_y = -32},/obj/item/weapon/storage/firstaid/toxin,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dV" = (/obj/structure/table/steel_reinforced,/obj/item/weapon/storage/backpack/satchel/sec,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"dW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet,/obj/item/clothing/shoes/boots/winter,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/item/clothing/head/hood/winter,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dY" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/effect/decal/remains/human,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"dZ" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/decal/remains/human,/obj/structure/closet/crate/mimic/guaranteed{name = "steel crate"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ea" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/gmcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eb" = (/obj/machinery/power/port_gen/pacman,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ec" = (/obj/machinery/door/airlock/highsecurity{locked = 1; name = "Secure Armoury Section"; req_access = list(150)},/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ed" = (/obj/structure/closet,/obj/item/clothing/under/soviet,/obj/item/clothing/shoes/boots/jackboots,/obj/item/clothing/head/ushanka,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ee" = (/obj/structure/closet/crate/secure/gear,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/obj/item/ammo_magazine/clip/c762,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ef" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate,/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eg" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/space/syndicate,/obj/item/clothing/head/helmet/space/syndicate,/obj/structure/closet/crate/internals,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eh" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/hgpirate,/obj/item/clothing/head/hgpiratecap,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ei" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/item/clothing/suit/armor/combat,/obj/structure/closet/crate/secure/gear,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ej" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"ek" = (/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"el" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/mob/living/simple_mob/mechanical/viscerator,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"em" = (/obj/structure/closet/crate/secure/weapon,/obj/item/weapon/gun/projectile/shotgun/pump/rifle,/turf/simulated/floor/tiled/dark,/area/awaymission/snowfield/outside) +"en" = (/obj/structure/coatrack,/turf/simulated/floor/grass,/area/awaymission/snowfield/outside) +"eo" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/wardrobe/red,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ep" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/medical,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/obj/item/device/flashlight/flare,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eq" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"er" = (/obj/effect/floor_decal/industrial/loading{icon_state = "loadingarea"; dir = 1},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"es" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"et" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/crate/secure/phoron,/obj/fiftyspawner/phoron,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"eu" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/closet/toolcloset,/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ev" = (/obj/effect/floor_decal/industrial/warning/dust,/obj/machinery/door/airlock/centcom,/turf/simulated/floor/holofloor/wood,/area/awaymission/snowfield/outside) +"ew" = (/obj/structure/plasticflaps/mining,/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/neutral,/area/awaymission/snowfield/outside) +"ex" = (/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ey" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"ez" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eA" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eB" = (/obj/machinery/conveyor_switch{id = "away_soviet"},/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eC" = (/obj/machinery/conveyor{dir = 2; id = "away_soviet"},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eD" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eE" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 4},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eF" = (/obj/effect/floor_decal/industrial/warning/dust/corner,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eG" = (/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eH" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 4},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eI" = (/obj/effect/floor_decal/industrial/warning/dust{icon_state = "warning_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eJ" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 1},/obj/effect/floor_decal/industrial/warning/dust,/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eK" = (/obj/effect/floor_decal/industrial/warning/dust/corner{icon_state = "warningcorner_dust"; dir = 8},/turf/simulated/floor/tiled/asteroid_steel{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) +"eL" = (/turf/simulated/floor/reinforced{nitrogen = 93.7835; oxygen = 20.7263; temperature = 243.15},/area/awaymission/snowfield/outside) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(3,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(4,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(5,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(6,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(7,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(8,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(9,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(10,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(11,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(12,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(13,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(14,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(15,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(16,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(17,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(18,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(19,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(20,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(21,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(22,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(23,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(24,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(25,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(26,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(27,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(28,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(29,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(30,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(31,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(32,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(33,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(34,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(35,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(36,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(37,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(38,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(39,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(40,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(41,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(42,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(43,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(44,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(45,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(46,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(47,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(48,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(49,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(50,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(51,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(52,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(53,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(54,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(55,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(56,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(57,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(58,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(59,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(60,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(61,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(62,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(63,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(64,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(65,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(66,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(67,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(68,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(69,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(70,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(71,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(72,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(73,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(74,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(75,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(76,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(77,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(78,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(79,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(80,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(81,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(82,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(83,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(84,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(85,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(86,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(87,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(88,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(89,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(90,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(91,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aw -aM -bb -bh -bo -bz -ai -ai -ci -cr -ai -cD -cJ -cD -ai -cT -cT -ai -dr -dF -dN -ai -dX -ed -dX -ai -er -er -ez -ey -ey -ey -ey -ey -ey -ey -ey -ey -ey -es -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(92,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ax -aN -aN -bi -bp -aC -bP -ai -cj -aN -cx -cE -cE -cE -cP -cT -cT -dl -cy -cy -cy -ai -dX -ee -dX -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(93,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ax -aN -bc -bj -bq -bA -bQ -ai -ck -aN -ai -cF -cK -cF -ai -cT -cT -ai -cy -cy -cy -ai -dX -ee -dX -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(94,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ay -aO -aO -bk -br -bB -ai -ai -ai -ai -ai -ai -ai -ai -ai -cU -cT -ai -ds -cy -cy -dW -cy -ee -cy -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(95,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -aP -bd -bl -ai -ai -ai -bV -cl -cs -cy -cG -cy -ai -cy -cT -cT -dm -dt -cy -dO -ai -dY -ee -eg -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(96,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -az -aQ -aC -aC -bs -bC -ai -bW -cm -ct -cy -cy -cy -cM -cy -cT -cT -dn -du -cy -cy -ai -dY -ee -eg -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(97,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aA -aR -aC -aC -bt -bD -ai -bX -cn -cu -cy -cH -cy -ai -cy -cT -cT -do -dv -dG -dP -ai -dY -ef -eg -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(98,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -aA -aS -aC -aC -bt -bE -ai -ai -ai -ai -ai -ai -ai -ai -ai -cV -dd -ai -ai -ai -ai -ai -ai -ai -ai -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(99,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -al -ap -ar -ai -aB -aT -be -be -bt -bF -bR -bY -co -bY -cz -bY -co -bY -bR -cW -de -ai -dw -dH -dw -dw -dw -dH -dw -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(100,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ag -aj -am -ap -as -au -aC -aU -be -be -bu -bG -bS -bY -co -bY -co -bY -co -bY -bS -cX -df -ai -dw -dI -dI -dw -dI -dI -eh -ai -es -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(101,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ah -ak -an -ap -as -av -aC -aU -be -be -aC -aC -bT -bZ -bZ -bZ -bZ -bZ -bZ -bZ -cQ -cY -dg -dp -dx -dx -dx -dx -dx -dx -dx -ep -et -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(102,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ao -aq -at -aj -aC -aU -be -be -aC -aC -bT -ca -ca -ca -ca -ca -ca -ca -cQ -cZ -dh -dp -dx -dx -dx -dx -dx -dx -dx -ep -et -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(103,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -aD -aV -be -be -bv -bH -bR -bY -co -bY -co -bY -co -bY -bR -da -di -ai -dw -dJ -dJ -dw -dJ -dJ -eh -ai -eu -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(104,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aE -aW -aC -aC -bt -bI -bS -bY -co -bY -cA -bY -co -bY -bS -db -dj -ai -dw -dK -dw -dw -dw -dK -dw -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(105,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aF -aX -aC -aC -bt -bJ -ai -ai -ai -ai -ai -ai -ai -ai -ai -dc -dk -ai -ai -ai -ai -ai -ai -ai -ai -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(106,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aG -aX -aC -aC -bt -bK -ai -cb -cp -cv -cB -cI -cd -cN -bR -cT -cT -ai -dy -dL -dQ -dB -dZ -dL -ei -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(107,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aH -aY -aC -aC -bw -bL -ai -cc -ch -ch -ch -ch -ch -ch -cR -cT -cT -ai -dz -dB -dC -dB -dC -dB -ej -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(108,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aI -aZ -bf -bm -bx -bM -ai -cd -ch -cq -cq -ch -ch -ch -bS -cT -cT -ai -dA -dB -dR -dB -ea -dB -ek -ai -ev -ey -eB -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(109,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ce -cq -cd -cd -cq -ch -cO -ai -cU -cT -dq -dB -dB -dS -dB -dB -dB -el -eq -ew -ew -eC -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(110,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aJ -ba -bg -bn -by -bN -ai -cf -cq -cw -cd -cq -ch -ch -ai -cT -cT -ai -dC -dB -dT -dB -dC -dB -em -ai -ex -ex -eD -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(111,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aK -ba -ba -ba -ba -bO -ai -cg -ch -cq -cq -ch -ch -ch -cS -cT -cT -ai -dD -dB -dU -dB -eb -dB -en -ai -er -er -eA -eF -eF -eF -eF -eF -eF -eF -eF -eF -eF -et -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(112,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -aL -ba -ba -ba -ba -ba -bU -ch -ch -ch -cC -ch -cL -cL -ai -cT -cT -ai -dE -dM -dV -dB -ec -dM -eo -ai -er -er -eE -ex -ex -ex -ex -ex -ex -ex -ex -ex -ex -eu -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(113,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ai -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(114,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(115,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(116,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(117,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(118,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(119,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(120,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(121,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(122,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(123,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(124,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(125,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(126,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(127,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(128,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(129,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(130,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(131,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(132,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(133,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(134,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(135,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(136,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(137,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(138,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(139,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(140,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(141,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(142,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(143,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(144,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(145,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(146,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(147,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(148,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(149,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(150,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(151,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(152,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(153,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(154,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(155,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(156,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(157,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(158,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(159,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -af -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(160,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(161,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(162,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(163,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(164,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(165,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(166,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(167,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(168,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(169,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(170,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(171,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(172,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(173,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(174,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(175,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(176,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(177,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(178,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(179,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(180,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(181,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(182,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(183,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(184,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(185,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(186,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(187,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(188,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(189,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(190,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(191,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(192,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(193,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(194,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(195,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(196,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(197,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(198,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(199,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(200,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaababababababababadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadad +aaabababababababafagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagaiaiaiagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagagajadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahalahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadakadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaddTadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadamadadadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananaoapananadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaqarasatanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanauauauavanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanawaxaxayanadadadadadadadadadadadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananananananananazaAaoanananananananananananadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaBaCaCaDanaEaFaFaGaHaHaHaIaJaKaLaMaNanaOaPaQanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanaRaSaSaTaUaVaWaXaYaZaZaZbabbbcbcbdbeanbfbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbgaSbhaTbiaHaHaHbjbjbjbjbjaHaHaHaHbkanblbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbmbnbobpbqaHaHaHbjbjbjbjbjaHaHaHaHbranbsbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbtbubvbwanbxbybybybzaHaHbAbybybybBbCanbDbfbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanbEaHbFbGanbHbIbJbKbLaHaHbMbNbObPbQbRanbSbTbfanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananbUbVanananananbWbXbYbYbWbXanananananananbZanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananancacbccancdcdcecfcdcdancgchcicjckclcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancncocpancqcrcsanctctcecfctctancucmcmcvcvcmcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancwaSaSancxcyczancdcdcecfcdcdancAcmcvcicBcvcmanadadadadadadadahahahahahahahahahahahahahahahahahahahahahahadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancCanancDcDcDancEctcecfctcFancGcmcvcicicvcHanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKancLcDcMancdcdcecfcdcdancNcmcmcvcvcmcmanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancOcJcPancDcDcDanctctcecfctctancicmcmcmcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadancIcJcKanancRanancdcdcecfcdcdancScmcmcTcmcmcQanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanancUanancDcDcDanbWbXcVcVbWbXanbWcWbXanancXananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadancYcYcYcZcYcYcYdadbdcdddedfdgdhcYcYcYcZcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadancYcYcYcYcYcYcYdidjdkdldmdndodpcYcYcYcYcYcYcYanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadanandqanandrdsdtanananduduanananananandvananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadandwcDcDdxdydzdAandBdBdCdCdBdBandDdEdFdGdHdIdJanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadandKcDcDcDcDcDdLandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadandScDcDcDdUcDdVandBdNdCdCdOdBandWdHdXdYdZeaebanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadananananecanananandBdBdCdCdBdBandGdGdGdGdGdGdGanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDeeeeeeandBdNdCdCdOdBanefdHegdGdHeheianadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanejekekekekekelandMdNdCdCdOdPandQdGdGdGdGdGdRanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanedededcDemememandBendCdCendBaneoepeqereseteuanadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadanananananananananananevevananananananewananananadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexeyezezeAexexexexeBeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadexexexexexexexexexexexexexexexexexeEeCeDexexadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeFeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeGeHeIeJeGeKadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeEeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeLeDadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadeyezezezezezezezezezezezezezezezezezezezezeAadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeaeaeagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadadadadadadadadadadadadadadadadadadadadadadadadadadadadaeaeaeadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadakadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadadagadadadadadad +aaabababababababacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacacabababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababababab +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/southern_cross/southern_cross-1.dmm b/maps/southern_cross/southern_cross-1.dmm index d21a582872..d51a34bf2e 100644 --- a/maps/southern_cross/southern_cross-1.dmm +++ b/maps/southern_cross/southern_cross-1.dmm @@ -4081,7 +4081,7 @@ "bAt" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/engineering/atmos) "bAu" = (/obj/machinery/pipedispenser/disposal,/turf/simulated/floor/tiled,/area/engineering/atmos) "bAv" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/plating,/area/maintenance/substation/engineering) -"bAw" = (/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) +"bAw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "bAx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/machinery/light_switch{pixel_x = 11; pixel_y = 24},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "bAy" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "bAz" = (/obj/structure/extinguisher_cabinet{pixel_y = 30},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) @@ -4401,7 +4401,7 @@ "bGB" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/catwalk,/turf/simulated/floor,/area/engineering/storage) "bGC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "bGD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway) -"bGE" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) +"bGE" = (/obj/structure/table/steel,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/dark,/area/rnd/workshop) "bGF" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "bGG" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway/atmos_hallway) "bGH" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled/dark,/area/engineering/hallway/atmos_hallway) @@ -5436,7 +5436,7 @@ "caw" = (/obj/machinery/r_n_d/server/core,/turf/simulated/floor/bluegrid{name = "Server Base"; nitrogen = 500; oxygen = 0; temperature = 80},/area/server) "cax" = (/turf/simulated/wall/r_wall,/area/rnd/workshop) "cay" = (/obj/machinery/computer/rdconsole/core,/obj/effect/floor_decal/borderfloorblack{dir = 9},/obj/effect/floor_decal/corner/green/border{dir = 9},/turf/simulated/floor/tiled/dark,/area/rnd/workshop) -"caz" = (/obj/structure/table/steel,/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/borderfloorblack{dir = 1},/obj/effect/floor_decal/corner/green/border{dir = 1},/turf/simulated/floor/tiled/dark,/area/rnd/workshop) +"caz" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/obj/machinery/mineral/equipment_vendor,/turf/simulated/floor/tiled,/area/quartermaster/foyer) "caA" = (/obj/structure/table/steel,/obj/item/weapon/storage/bag/circuits/basic,/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/effect/floor_decal/borderfloorblack{dir = 5},/obj/effect/floor_decal/corner/green/border{dir = 5},/turf/simulated/floor/tiled/dark,/area/rnd/workshop) "caB" = (/obj/structure/sign/poster{pixel_y = -32},/turf/simulated/wall,/area/rnd/workshop) "caC" = (/turf/simulated/floor/tiled/white,/area/hallway/secondary/seconddeck/research_medical) @@ -6889,7 +6889,7 @@ "cCt" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/quartermaster/foyer) "cCu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/foyer) "cCv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/quartermaster/foyer) -"cCw" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/structure/flora/pottedplant/fern,/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/brown/bordercorner,/turf/simulated/floor/tiled,/area/quartermaster/foyer) +"cCw" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/item/weapon/material/knife,/turf/simulated/floor/plating,/area/maintenance/bar) "cCx" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/brown/bordercorner{dir = 8},/turf/simulated/floor/tiled,/area/quartermaster/qm) "cCy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/quartermaster/qm) "cCz" = (/obj/structure/closet/secure_closet/quartermaster,/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 22},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/brown/border{dir = 4},/turf/simulated/floor/tiled,/area/quartermaster/qm) @@ -7723,7 +7723,7 @@ "cSp" = (/obj/structure/table/steel,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/plushielarge,/turf/simulated/floor/plating,/area/maintenance/medbay) "cSq" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/plating,/area/maintenance/bar) "cSr" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor/plating,/area/maintenance/bar) -"cSs" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/structure/closet/crate,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/obj/random/maintenance/cargo,/turf/simulated/floor/plating,/area/maintenance/bar) +"cSs" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full,/obj/structure/sign/double/barsign{pixel_y = 32},/turf/simulated/floor/lino,/area/crew_quarters/bar) "cSt" = (/obj/structure/sink/kitchen{pixel_y = 28},/obj/machinery/button/remote/blast_door{id = "bar"; name = "Bar Shutters"; pixel_x = -26; pixel_y = -6},/obj/machinery/button/holosign{id = "baropen"; name = "Open Sign"; pixel_x = -24; pixel_y = 6},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = -32; pixel_y = 6},/obj/machinery/camera/network/civilian{c_tag = "CIV - Bar Fore"; dir = 4},/turf/simulated/floor/lino,/area/crew_quarters/bar) "cSu" = (/turf/simulated/wall,/area/crew_quarters/bar) "cSv" = (/obj/structure/plasticflaps{opacity = 1},/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading,/obj/machinery/navbeacon/delivery/south{location = "Bar"},/turf/simulated/floor/tiled,/area/crew_quarters/bar) @@ -7781,7 +7781,7 @@ "cTv" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southleft{name = "Bar Delivery"; req_access = list(25)},/turf/simulated/floor/tiled,/area/crew_quarters/bar) "cTw" = (/turf/simulated/floor/wood,/area/crew_quarters/bar) "cTx" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/structure/extinguisher_cabinet{pixel_y = 30},/turf/simulated/floor/lino,/area/crew_quarters/bar) -"cTy" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_alc/full,/obj/machinery/firealarm{pixel_y = 24},/turf/simulated/floor/lino,/area/crew_quarters/bar) +"cTy" = (/obj/structure/closet/crate/plastic,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/plating,/area/maintenance/medbay) "cTz" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; name = "Station Intercom (General)"; pixel_x = -21},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "cTA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "cTB" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) @@ -7856,7 +7856,7 @@ "cUS" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask,/obj/item/weapon/flame/lighter/zippo,/obj/item/clothing/head/that{pixel_x = 4; pixel_y = 6},/turf/simulated/floor/lino,/area/crew_quarters/bar) "cUT" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) "cUU" = (/obj/random/contraband,/obj/random/contraband,/obj/structure/closet/crate,/turf/simulated/floor/plating,/area/maintenance/medbay) -"cUV" = (/obj/structure/closet/crate/plastic,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/medbay) +"cUV" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/lino,/area/crew_quarters/bar) "cUW" = (/obj/structure/kitchenspike,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen) "cUX" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/medbay) "cUY" = (/obj/machinery/gibber,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen) @@ -7912,7 +7912,7 @@ "cVW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/monotile,/area/hallway/primary/seconddeck/aft) "cVX" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/green/bordercorner,/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "cVY" = (/obj/machinery/door/firedoor/border_only,/obj/effect/floor_decal/industrial/loading{icon_state = "loadingarea"; dir = 8},/obj/structure/plasticflaps{opacity = 1},/obj/machinery/navbeacon/delivery/west{location = "Kitchen"},/turf/simulated/floor/tiled,/area/crew_quarters/kitchen) -"cVZ" = (/obj/structure/sign/double/barsign{dir = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/wall,/area/crew_quarters/bar) +"cVZ" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen Cold Room"; dir = 1},/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen) "cWa" = (/turf/simulated/floor/lino,/area/crew_quarters/bar) "cWb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) "cWc" = (/obj/machinery/disposal,/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled/yellow,/area/crew_quarters/coffee_shop) @@ -7920,7 +7920,7 @@ "cWe" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(5,12,25,27,28,35)},/turf/simulated/floor/plating,/area/holodeck_control) "cWf" = (/obj/structure/disposalpipe/segment,/turf/simulated/wall,/area/holodeck_control) "cWg" = (/obj/structure/kitchenspike,/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen) -"cWh" = (/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -5},/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen Cold Room"; dir = 1},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen) +"cWh" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/obj/structure/closet/secure_closet/freezer/fridge,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "cWi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/kitchen) "cWj" = (/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall,/area/crew_quarters/bar) "cWk" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medbay) @@ -8052,7 +8052,7 @@ "cYG" = (/obj/machinery/hologram/holopad,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled,/area/holodeck_control) "cYH" = (/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(5,12,25,27,28,35)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/plating,/area/holodeck_control) "cYI" = (/obj/machinery/vending/dinnerware,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"cYJ" = (/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/device/radio/intercom{dir = 1; name = "Station Intercom (General)"; pixel_y = 21},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"cYJ" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_y = 30},/obj/structure/closet/secure_closet/freezer/meat,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "cYK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/border_only,/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(5,12,25,27,28,35)},/turf/simulated/floor/plating,/area/maintenance/medbay) "cYL" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/wall/r_wall,/area/maintenance/medbay) "cYM" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "aft_starboard_pump"},/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "aft_starboard_sensor"; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/medbay) @@ -8083,7 +8083,7 @@ "cZl" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "cZm" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "cZn" = (/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/maintenance/bar) -"cZo" = (/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/newscaster{pixel_y = 30},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"cZo" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "cZp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "cZq" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/door/blast/shutters{dir = 4; id = "kitchen"; layer = 3.3; name = "Kitchen Shutters"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "cZr" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) @@ -8212,19 +8212,19 @@ "dbK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "dbL" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/coffee_shop) "dbM" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) -"dbN" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) +"dbN" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen"; dir = 4},/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dbO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dbP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dbQ" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dbR" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop) "dbS" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/bed/chair/comfy/brown,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop) "dbT" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/plating,/area/maintenance/bar) -"dbU" = (/obj/structure/closet/secure_closet/freezer/meat,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/camera/network/civilian{c_tag = "CIV - Kitchen"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"dbU" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dbV" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/effect/landmark/start{name = "Chef"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dbW" = (/obj/machinery/atmospherics/valve,/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/maintenance/bar) "dbX" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/hologram/holopad,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/industrial/outline/grey,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dbY" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -24},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/maintenance/chapel) -"dbZ" = (/obj/structure/table/marble,/obj/machinery/reagentgrinder,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"dbZ" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dca" = (/obj/structure/table/standard,/obj/item/weapon/surgical/circular_saw{pixel_y = 8},/obj/item/weapon/surgical/scalpel,/obj/item/device/radio/intercom/department/medbay{dir = 4; pixel_x = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 8},/obj/effect/floor_decal/corner/pink/border{dir = 8},/turf/simulated/floor/tiled/white,/area/medical/surgery) "dcb" = (/turf/simulated/floor/tiled/white,/area/medical/surgery) "dcc" = (/obj/machinery/optable,/turf/simulated/floor/tiled/white,/area/medical/surgery) @@ -8256,7 +8256,7 @@ "dcC" = (/obj/structure/table/woodentable,/obj/item/weapon/material/kitchen/utensil/fork,/obj/item/weapon/material/kitchen/utensil/spoon{pixel_x = 2},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dcD" = (/obj/machinery/camera/network/civilian{c_tag = "CIV - Cafeteria Starboard"; dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dcE" = (/obj/structure/bed/chair/wood,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/extinguisher_cabinet{pixel_x = -27},/obj/machinery/camera/network/civilian{c_tag = "CIV - Coffee Shop"; dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) -"dcF" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) +"dcF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/structure/table/marble,/obj/machinery/microwave{pixel_x = -3; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dcG" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dcH" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dcI" = (/obj/structure/table/standard,/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) @@ -8267,11 +8267,11 @@ "dcN" = (/obj/structure/disposalpipe/segment,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop) "dcO" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced/polarized{id = "holodeck_tint"},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/plating,/area/holodeck_control) "dcP" = (/obj/machinery/meter,/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/turf/simulated/floor/plating,/area/maintenance/bar) -"dcQ" = (/obj/structure/closet/secure_closet/freezer/fridge,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"dcQ" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/reagentgrinder,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dcR" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{dir = 4},/obj/structure/closet/crate,/obj/item/weapon/reagent_containers/food/drinks/flask/barflask,/obj/random/powercell,/obj/random/maintenance,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/maintenance/bar) "dcS" = (/obj/machinery/light,/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/paleblue/border,/obj/structure/closet/medical_wall{pixel_x = 0; pixel_y = -31},/obj/item/roller,/obj/item/bodybag/cryobag,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/pill_bottle/spaceacillin,/turf/simulated/floor/tiled/white,/area/medical/first_aid_station/seconddeck/fore) -"dcT" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"dcU" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/book/manual/chef_recipes,/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"dcT" = (/obj/structure/table/marble,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{pixel_x = -3; pixel_y = 0},/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{pixel_x = 3},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"dcU" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "dcV" = (/obj/structure/table/marble,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dcW" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/snacks/pie,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) "dcX" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) @@ -8300,7 +8300,7 @@ "ddu" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/landmark/start{name = "Assistant"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "ddv" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "ddw" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/coffee_shop) -"ddx" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) +"ddx" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = -32; pixel_y = 0},/obj/machinery/chem_master/condimaster{name = "CondiMaster Neo"; pixel_x = -5},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "ddy" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/green/border{dir = 8},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "ddz" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "ddA" = (/obj/machinery/door/firedoor/border_only,/obj/effect/wingrille_spawn/reinforced,/turf/simulated/floor/plating,/area/crew_quarters/cafeteria) @@ -8310,12 +8310,12 @@ "ddE" = (/obj/structure/window/reinforced,/obj/structure/table/woodentable,/obj/item/weapon/material/ashtray/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/coffee_shop) "ddF" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "ddG" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 1; start_pressure = 4559.63},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/maintenance/bar) -"ddH" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"ddI" = (/obj/structure/closet/secure_closet/freezer/kitchen,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/status_display{density = 0; layer = 4; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"ddH" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/table/marble,/obj/item/weapon/material/knife/butch,/obj/item/weapon/material/kitchen/rollingpin,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"ddI" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/marble,/obj/item/weapon/book/manual/chef_recipes,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "ddJ" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "ddK" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "ddL" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/button/remote/blast_door{id = "kitchen"; name = "Kitchen Shutters Control"; pixel_x = 26; pixel_y = 0; req_access = list(28)},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 36; pixel_y = -6},/obj/machinery/button/holosign{id = "baropen"; name = "Open Sign"; pixel_x = 36; pixel_y = 6},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"ddM" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"ddM" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "ddN" = (/obj/machinery/camera/network/medbay{c_tag = "MED - Operating Theatre 1"; dir = 1},/obj/machinery/vending/wallmed1{pixel_y = -30},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/pink/border{dir = 10},/obj/structure/closet/secure_closet/medical_wall/anesthetics{pixel_x = -32},/turf/simulated/floor/tiled/white,/area/medical/surgery) "ddO" = (/obj/machinery/ai_status_display{pixel_y = -32},/obj/effect/floor_decal/borderfloorwhite,/obj/effect/floor_decal/corner/pink/border,/turf/simulated/floor/tiled/white,/area/medical/surgery) "ddP" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -26},/obj/effect/floor_decal/borderfloorwhite{dir = 6},/obj/effect/floor_decal/corner/pink/border{dir = 6},/obj/machinery/iv_drip,/turf/simulated/floor/tiled/white,/area/medical/surgery) @@ -8332,7 +8332,7 @@ "dea" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control) "deb" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/machinery/camera/network/civilian{c_tag = "CIV - Cafeteria Port"; dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "dec" = (/obj/structure/bed/chair/wood{dir = 1},/obj/effect/floor_decal/corner/yellow/diagonal,/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) -"ded" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 1; pixel_y = -22},/turf/simulated/floor/tiled/white,/area/crew_quarters/cafeteria) +"ded" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/closet/secure_closet/freezer/kitchen,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "dee" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/green/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/primary/seconddeck/aft) "def" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/machinery/atm{pixel_y = -30},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) "deg" = (/obj/effect/floor_decal/corner/yellow/diagonal,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/coffee_shop) @@ -8361,7 +8361,7 @@ "deD" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "deE" = (/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) "deF" = (/obj/machinery/cooker/oven,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) -"deG" = (/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/corner/grey/diagonal{dir = 4},/obj/item/clothing/gloves/sterile/latex,/obj/item/clothing/gloves/sterile/latex,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -24},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/white,/area/crew_quarters/kitchen) +"deG" = (/obj/structure/closet/crate/plastic,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/obj/item/weapon/storage/mre/random,/turf/simulated/floor/plating,/area/hydroponics) "deH" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "deI" = (/obj/structure/flora/pottedplant,/obj/machinery/computer/guestpass{pixel_x = 0; pixel_y = -30},/turf/simulated/floor/wood,/area/crew_quarters/cafeteria) "deJ" = (/obj/machinery/ai_status_display,/turf/simulated/wall,/area/crew_quarters/cafeteria) @@ -8477,7 +8477,7 @@ "dgP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics) "dgQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lime/border{dir = 8},/turf/simulated/floor/tiled/hydro,/area/hydroponics) "dgR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/hydro,/area/hydroponics) -"dgS" = (/turf/simulated/floor/plating,/area/hydroponics) +"dgS" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas/clown_hat,/obj/item/clothing/shoes/clown_shoes,/obj/item/clothing/under/rank/clown,/obj/item/device/pda/clown,/obj/item/weapon/stamp/clown,/obj/item/weapon/bikehorn,/turf/simulated/floor/plating,/area/hydroponics) "dgT" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lime/border{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/hydro,/area/hydroponics) "dgU" = (/obj/structure/closet/secure_closet/hydroponics,/turf/simulated/floor/tiled/dark,/area/hydroponics) "dgV" = (/turf/simulated/wall/r_wall,/area/hydroponics) @@ -8744,7 +8744,6 @@ "dlZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/chapel/main) "dma" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/ai_status_display{pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/chapel/main) "dmb" = (/obj/item/device/radio/intercom{name = "Station Intercom (General)"; pixel_y = -21},/obj/effect/floor_decal/borderfloorwhite{dir = 10},/obj/effect/floor_decal/corner/purple/border{dir = 10},/obj/effect/floor_decal/borderfloorwhite/corner2{dir = 9},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/structure/extinguisher_cabinet{pixel_x = -32; pixel_y = 30},/turf/simulated/floor/tiled/white,/area/rnd/research_foyer) -"dmc" = (/obj/machinery/mineral/equipment_vendor,/turf/simulated/wall,/area/quartermaster/office) "dme" = (/obj/machinery/door/firedoor/border_only,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance{req_access = null; req_one_access = list(12,25,27,28,35)},/turf/simulated/floor/plating,/area/maintenance/bar) "dmf" = (/obj/machinery/bookbinder{pixel_y = 0},/turf/simulated/floor/wood,/area/library) "dmg" = (/obj/machinery/light,/obj/machinery/photocopier,/turf/simulated/floor/wood,/area/library) @@ -11020,12 +11019,16 @@ "edX" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) "edY" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/foyer) <<<<<<< HEAD +<<<<<<< HEAD "edZ" = (/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/obj/machinery/mass_driver{dir = 4; id = "chapelgun"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/airlock_sensor{pixel_y = 25},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/sign/warning/vacuum{pixel_y = -32},/turf/simulated/floor/plating,/area/chapel/main) >>>>>>> 5e38b8e... Adds shutoff valve monitor (#6353) ======= >>>>>>> d974caf... Merge pull request #6457 from Woodratt/09162019_BarKitchenOverhaul +======= + +>>>>>>> e070c7c... Oct Map Fixes (#6485) (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11447,7 +11450,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadJaaaaaaaaabgvbsRbZMbsSbpFbpGbxSbxTbxWbxUbxUbxVbxYbxZbwwbxXbycbydbyabybbyfbygbyebwBbzebuwbyhbwObwPbwQbwRbCqbYsbwUbwUbwUbwUbwUbwUbwVbwWbwXbrbbwYbvNbwZbvNbvPbrbbvNbxabrbbvNbxbbrbbvNbxcbrbbxdbxebxfbxgbxhclfclgcnebuWbxkbxlbxmbxnbxobuWbxpbxqbxrbxsbxtbuZbxubxvbvZbxwbxibxxbvgaaaaaaaaaaaaaaabvgbvgbvibvibvibvgbxybxzbxAbxBbxCbxDbxEbxFcePccVcdkbxHbxHbxIbxIaafaafaafbhgaafaafaafaafbxJbxKbxLbhgbxMbxNbxObxPbxQaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabgvbgvbgvbgvbgvaaabqCbumbqEbzhbzfbzgbzjbAnbzibAqbArbAsbAocOGbzibnLbAtbAubBQbuwbAvbyibyjbuwbvCcgecozbuxbuxbuxbuxbuxbuxbuxbymbynbrbbyobvNbypbyqbvPbrbbyrbysbrbbyrbytbrbbyrbyubrbbyvbywbyxbxgbxhcnfcoUcJZbuWbyybyzbyAbyBbyCbuWbyDbxqbyEbxqbyFbuZbyGbxvbvZbvZbyHbvZbvZbvgbvgbvgbvgbvgbvgebsbyIbyJbyKbyKbyLbyMbyMbyLbyNbyOcqScqUcyVcqTbyTbxHbyUbyVbxIbxIaaaaaabhgaaaaaaaaaaafbyWbyXbyYbyZbzabyZbyWbzbbyWaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaaabkHbzcbzdbBRbkAbkAbBTbBVbzkbuvbBWbzlbwwbuvbuvbDpbBYbDobqIbuwbuwbzmbuwbuwbuxcAIbzobzpbuxbzqbzrbzsbztbuxbymbynbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbrbbzubzvbzwbzxbxhcOBdcSdfrbuWbzAbzBbzCbzDbzEbuWbzFbzGbzHbxqbzIbuZbzJbzKbzLbzMbzNbzNbzNbzNbzNbzNbzObzNbzNbzNbzNbzPbzQbzRbzSbzTbzUbzVbzWbyObyPcHvbyObzYbzZbAabAbbAcbAdbxIaaaaaabhgaaaaaaaaaaaabyWbAebFdbAfbAgbAhbyWbAibyWaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaaaaabAjaaaaaaaaaaaaaaabAjaaaaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAkbAkbAkbAkbAkbAkbAkbAkbAkbAlbAmbDvbDqbApbETbFhbELbEMbGEbGFbGmbAwbAxbAybAzbAAbABbACbvCcKMbAEbAFbuxbDJbymbymbymbAGbAHbAIbwUbAJbAKbALbAMbwUbwUbwUbwUcNqcOFcQhcOEcOFcQibAQbuxbARbASbATbxhbxhbxhbxhbuWbAVbAWbAXbAYbAZbuWbBabBbbBcbBdbBebuZbBfbxibBgbBhbBibBjbBkbxibxibBlbBlbBlbBlbBlbBlbBlbBmbBnbBobBpbBqbBrbBrbBrbBrbBsbBsbBsbBsbBsbBtbBubBvbBwbBwbBxbBwbBxbBwbBxbBwbBwbBybBzbBAbBBbBCbyWbBDbyWbyWaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaaaaabAjaaaaaaaaaaaaaaabAjaaaaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAkbAkbAkbAkbAkbAkbAkbAkbAkbAlbAmbDvbDqbApbETbFhbELbEMbAwbGFbGmbEMbAxbAybAzbAAbABbACbvCcKMbAEbAFbuxbDJbymbymbymbAGbAHbAIbwUbAJbAKbALbAMbwUbwUbwUbwUcNqcOFcQhcOEcOFcQibAQbuxbARbASbATbxhbxhbxhbxhbuWbAVbAWbAXbAYbAZbuWbBabBbbBcbBdbBebuZbBfbxibBgbBhbBibBjbBkbxibxibBlbBlbBlbBlbBlbBlbBlbBmbBnbBobBpbBqbBrbBrbBrbBrbBsbBsbBsbBsbBsbBtbBubBvbBwbBwbBxbBwbBxbBwbBxbBwbBwbBybBzbBAbBBbBCbyWbBDbyWbyWaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaaaaabAjbAjbAjbAjbAjbAjbAjaaaaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaafaafaaaaaabBEbBFbBGbBHbAkbBIbBJbBKbBLbBMbBMbBNbAkbBObBPbIobGJbBSbJSbBSbIqbBSbLjbBXbJUbBZbCabCbbCcbCdbCebCfbvCbCgbzobChbuxbCibCjbymbymbuxbCkbClbymbCmbCnbuxbuxbCobuxbuxbCpcRncSBcSCcRocSBcSEbuxbuxbCsbCtbCubvZbvZbCvbyJbuWbCwbCxbuWbuWbuWbuWbuZbuZbCybuZbuZbuZbBfbxibCzbCAbBibwnbCBbCCbCDbBlbCEcaRbCGbCHbCIbBlbCJbCJbCKbCJbCJbBrbCLbCMebubBsbCObBsbCPbBsbCQbCRbCSbBwbCTbCUbCVbCVbCWbCXbCYbBwbCZbDabDbbDcbDdbDebDfbDgbyWaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaagaadaadaaaaabaaaaaaaaabBEbDhbDhbDibAkbDjbDjbDjbDkbBMbDlbDmbAkbDnbNkbPTbLlbDrbDsbDtbCfbDuedNbDwecRbDubDybDybDzbDAbDBbDybuxbDCbDDbFebuxbuxbuxbDFbymbuxbCrbDGbDGbDHbDGbDGbDIbymbImbuxbDKbymbDLbuxbvFbymbCrbymbuxbDMbDNbDObvZbxibxibzzbDPbxibDQbAUbAUbAUbAUbBgbDRbDSbDTbDUbDVbDWbDXbDYbvZbDZbDZbDZbDZbEabBlbEbbEcbEdbEebEfbFMbEhebvbEjbEkbElbBrebwbEndgGbBsbEpbBsbEqbBsbBsbErbEsbEtbEubEvbCVbEwbExbEybEzbBwbEAbEAbEAbFUbEAbEAbEAbEAbEAbEAaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaabAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaadaadaagaadaadaadaagaafaaaaafaaaaaaaaaaaaaaaaaaaaabBEbECbEDbEEbAkbEFbEGbEGbEHbEGbEIbEJbAkbEKbNkedObENbEObEPbEQbERbESbOXbEUedPbEWbEXbEYbEZbFabFbbFcbuxbGSbGTbFfbFgcbEbuxbvGbvFbuxbFibDGbFjbFkbFlbDGbFmbFnbChbuxbzpbymbFobuxbvGbymbFpbFqbFrbFsbFtbFubFvbDTbFwbDTbFxbDTbFybDTbDTbDTbDTbFzbFAbFBbFBbFBbFBbFBbFBbFCbFDbDZbFEebxbFGbEabFHbFIbFJbFKbFLbFVbFMbFNbFObFPbEjbHxbKtebzebybFTbGbbGibFWbFXbFYbBsbFZbGabHybGcbGdbGebGdbGfbGgbGhbKrbGjbGkbGlbGpbGqbGnbGobJpbGrbGsaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11472,7 +11475,7 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa ======= aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVybVzbVEbVBbVCbVDbVBbXpbVBbVFbVGbVHbVIbBEbVJbVKbVLbVMbVNbVObQgbVPbTMbVQbVRbVSbVTbTRbVUbQkbVVbVWbVXbVYbVZbWabNjbWbbWcbWdbWebWfbWgbWhbWibWjbUhbWkbWlbWmbWnbWobWpbWqbStbWrbymbCrbWsbGZaaaaaabLBbLBbWtbQJbSwbWubWvbWwbWxbWybWxbWxbWzbWAbKjbWBbWCbWDbWEbWDbWFbWGbWDbWDbWHbUHbSMbNEbWIbLHbLHaaaaaabvibUKbxibWJbPvbWKbWLbWMbUPbWNbPvbYxbxHcfqbxHbPCbPCbWPbWQbWRbWSbVabWTbWUbWVbWWbWXbPCbWYbWZbXabXbbVjbXcbTobXdbPFbXebXfbXgbPIbXhbBvbKBbVrbXibXjbXkbXlbXmbXnbVubGsaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabMCbKMbKMbKMbKMbKMbKMbKMbKMbKMbKMbKMbVybXoccAbXqbXrbXsbXtbXrbXsbXubXvbXwbXxbBEbXybXzbKZbDibXAbXBbQgbXCbTMbTObXDbXEbTObTRbXFbQkbXGbXHbXIbXJbXKbXLbXMbXNbXObGLbXPbUcbQwbXQbXRbXRbXSbQwbStbXTbXUbXVbXWbXXbStbWrbymcWTbDLbGZaaaaaabLBbXYbXZbYabYbbYcbWwbWwbYdbYebYfbWwbYgbWAbWAbYhbWDbWDbYlbYjbYkbZOcbebWDbWDbYnbYobYpbYqbYrbLHaaaaaabvidGFdGGcvCbPvbYtbYubYubYvbYwbUScbWbYybYzbYAbYBbRjbYCbYDbYDbYDbYEbYFbYFbYGbYHbYFbYIbYJbYKbYLbYMbTobTobTobYNbPFbYObYPbYQbPIbRDbREbKBbYRbKBbKBbKBbKBbKBbKBbKBbKBbYSbYSaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabKLbVibKLbVibKLbVibKLbVibKLbVibKLbViaadbYTbYUbYVbYWbYXbYVbYWbYXbXubYYbYZbZabBEbZbbZcbZbbDibZdbZebQgbZfbZgbZhbZibXEbZhbZjbZkbQkbZlbZmbZnbZobZpbZqbSibOXbEVbEVbSlbZrbZsbQwbQwbQwbQwbZtbStbZubStbZvbStbStbStbuxbymcWTbZwbuxaaaaaabLCbZxbZybZzbZAbZBbZCbZDbZEbZFbZGbWwcbIcbIbZIbZJbWDcbGcgpcdfcdgcbHcbJceJbWDbZQbZRbZSbYqbZTbIDaaaaaabvZdGHdHcbvZbPvbZUbZVbZWbZWbZXbZYbZZcaacabcaccadcaecafcagcagcagcahcaicajcakcalcambYIcancaocapcaqbPFcarcascatbPFcaucavcawbPIbRDbREcaxcaycazcaAcaBcaCcaDcaEcaFcaGcaHcaIcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabKLbVibKLbVibKLbVibKLbVibKLbVibKLbViaadbYTbYUbYVbYWbYXbYVbYWbYXbXubYYbYZbZabBEbZbbZcbZbbDibZdbZebQgbZfbZgbZhbZibXEbZhbZjbZkbQkbZlbZmbZnbZobZpbZqbSibOXbEVbEVbSlbZrbZsbQwbQwbQwbQwbZtbStbZubStbZvbStbStbStbuxbymcWTbZwbuxaaaaaabLCbZxbZybZzbZAbZBbZCbZDbZEbZFbZGbWwcbIcbIbZIbZJbWDcbGcgpcdfcdgcbHcbJceJbWDbZQbZRbZSbYqbZTbIDaaaaaabvZdGHdHcbvZbPvbZUbZVbZWbZWbZXbZYbZZcaacabcaccadcaecafcagcagcagcahcaicajcakcalcambYIcancaocapcaqbPFcarcascatbPFcaucavcawbPIbRDbREcaxcaybGEcaAcaBcaCcaDcaEcaFcaGcaHcaIcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVycaJbTDcaKbYWbYXbYVbYWbYXbXucaLcaMcaMcaMcaMcaMcaMcaMcaNcaObQgdxCdzedxlcaScaTcaUcaVcaWbQkbQkcaXbQkcaYcaZbQkcbacbbbEVcbccbdbQuczOcbfcbgcbhcbicbjbStcbkbStcblbStcbmcbncbobymcWTbymbuxaaaaaabLCcbpcbqcbrcbscbtcbuebPcbwcbxcbycbzcbAcbBcbCcbDbWDceKceLcgocgqceMceNchTcbKcbLcbMcbNcbOcbPbIDaaaaaabvZdGHdHdcbRbPvbPvcbScbTcbUcbVbUSdmbcbXcbYcbZccaccbcccccdebRebQccgcaicchcciccjcckbYIbPFcclbPFbPFbPFbPFbPFbPFbPFbPIbPIbPIbPIccmccncaxccoccpccqccrccscctcaCcaFcaFcaHccuccvccwcaHccxccycaHcaHaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVyccBbTDccCbYWccDccEbYWccDbXuccFcaMccGccHccIccJccKcaMbXAccLcaWcaWcaWcaWcaWcaWcaWcaWcaWcCibQkbQkbQkbQkbQkbQkccNccObDxccPccNccQccQccQccQccQccQccQccRccRccRccRbStccSccTbuxccUdHeccWbuxaaaaaabLCccXccYccZcdacdbbWwbWwbWwbWwbWwbWwcdccddcddcdebWDbWDbWDclubWDchUbYjcnxbWDcdhcbMcdicbOcdjbIDaaaaaabvZdHxdHzcbQcdlbPvbPvbPvbPvbPvbPvcdmcipcdocipcdmbPCbPCbPCbPCbPCbPCbYIcdpcdqcdqcdrbYIcdscdscdscdtcducdvcdwcdxcdycdAcgUebVebSebTcdDcdEcrWcdGcdHccrccscdIcaCcdJcaFcdKcdLcdMcdNcaIcdOcdMcdPcaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabAjbAjbAjbAjbAjbAjbAjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaafaafbTDcehcdScdTcdUcdVcdTcdWcdXcdYcdZceacebceccedceebXAcefcegcfEceicejcekcekcekcekcekcekcekcekcekcelcemcenceocepceqceqcerbuxcescescetbDLceubymbAQbAQbvFbvGbuxcevbuxbuxbymcWTcewbuxaaaaaabLBcexccYbQJceycezceAceBceCceDceEceFceGceHceHceIceHceHceHdcybWDbYjcnydzAbWDbNEceObNEcbObNGbLHaaaaaabvZdIcdILceQceQceRceSbxiceTceUbvZceVceWceXceWceYceZcfacfbcfccfdcfebYIbYIcffcfgbYIbYIcfhcficficfjcfkcflcfmcfmcfmcdvebYbxHebWebXbOncoHcfrcfscftccrccsccscdIcdIcaFcaHcfucfvcfwcfxcfycfzcfAcfBcfCaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11486,12 +11489,21 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaabTDcpKcpLcpMcpNchecmDbXucpOcpPcpPcpQcpPcpRcpScpPcoEcmLcmLcmLcpUcpTcfRcfRcfRcfRcfRcfRcfRcencencencpVcpWcpXcpYcpZcqacpXcqbcqccqdcqecqfcqgcqhcqicqjcqkcqlcoQdwTdwWdwTdwUcqncqocoVbLCbLCcqpcqqcqrcqscqtcqubWzcqvcqwcqxcqxcqxcqycqycqzcqAcqBcqpcpdcqCcqDcqEcqFcqGcpdcqHcqIcjCcqJcqKchZcgwcgwcpkcqLcqMcqNcqOcqPcqPcqQcqRcqScqTcqUcqVcqWcqXcqYcqZcracracrbcrccrdcrecrfcrgcrhcrhcrhcricdtcdtcdtcdtcdtcdtcdtcfmcdvcrjcpwcrkcrlcrmcrncrocrpcrqcrrcrscrtcrucrvcrvcaHcrwcgZcrxcaHcaIcrycaIcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabKLbVibKLbVibKLbVibKLbVibKLbVibKLbViaafaafbTDcrzbXrctqcrBcrCcrDcrEcrFcrGcrHcrIcrJcrKcrLcpPcuXcrMcrNcrNcrPcuZcrRcrRcrRcrScrTcrUcrVcpVcvfcpVcpVcencrXcrXcrXcrXcrXcoPcrYcrZcsacsbcsccoQcsdcsecsfcsgcoQdyidypdybdwUcshcqocoVaaaaaacqpcsicqrcsjcskcslbWzcsmcsncqxcsocspcsqcsrcsjcsjcsjcsscstcsucsvcswcsxcsycpdcszcsAcjDcsBcsCchZaaaaaacpkcsDcsEcsFcpkcsGcsHcpncsIcsJcsKcsLcsMcsNcsOcsPcsQcsRcsScpncsTcsUcsVcsVcsWcrhcdvcdvcsXcfmcfmcfmcfmcfmcfmcfmcfmcdvcsYcpwcsZctacrmctbctcctdctectfctgcthcticrvcrvctjctkctlctmcaIctnctoctpcaHaaaaaaaaaaaaaadabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafbVvbVwbVAbVwbVAbVwbVAbVwbVAbVwbVAbVwbVybVzbTDcttctrctscwRctrctuctvctwcpPctxctyctzctActBcpPcuXctCctDctDctFctEctDctGctGctHctHctIctJctIcvgcvgctIctLctLctMctNctMctLctLctOctOctOctPctOctOctQctRctScoQcoQdUPdUQdBMdwUctTcqocoVaaaaaactUctVctWctXcskctYbWzctZcuacubcuccudcuecufcugcuhcsjcuicujcukculcumcuncuocpdcupcsAcuqcurcuscgwaaaaaacpkcutcuucuucuucuvcuwcuucuucuxcuxcuxcuycuzcuAcuzcuzcuzcuzcuBcuCcuDcuEcuFcuCcuGcuGcuGcuGcuGcuGcuGcuHcuHcuHcuHcuIcuIcuIcuIcuJcuKcuLctbcuMcrqcrqcrqcrqcrqcrvcrvcrvcaHcuNcorcuOcaIcdOcdMcdPcaHaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +<<<<<<< HEAD aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVycaJbTDcaKcuPcuQcuRcuScuQcuTcuUcpPcpPcpPcpPcpPcpPcpPcuXcuVctDcuWcuYcxbctDcvacvbcvccvcctIcvdctIctKctIcxicvhcvicvjcvkcvjcvlcvmcvncvocvpcvqcvrctOcvscvtcvucvvcoQdUSdUTdURdwUcvwcqocoVaaaaaactUcvxcvycvzcvAcvBbWzcDQcvDcqxcvEcvFcvGeckcvIcvJcsjcvKcvLcvMcvNcumcvOcvPcvQcvRcsAcvScvTcvUcgwaaaaaacpkcsDcuucvVcvWcvXcvYcvZcwacwbcwccwdcuycwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcwycwzcwAcwBcwCcwDcwEcwFcwGcrmcwHcwIcwJcrqcrqcrqcwKcwLcwIcrvcaHcwMcwNcwOcaHccxcwPcaHcaHaafaafaafaadaXGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaadbYTcwQcwUcwScwTcxtcwScwTcwVcwWcwXcwYbTDcfRcrMcrNcrNcrNcwZctDcxacxccxdctDcvacxectHctHctIcxfcxgcxhcXqcxjcxkcxlcxlcxlcxmcxncxocxpcxqcxrcxscFGcxucxvcxwcxxcvvcoQdwUdwUdwUdwUcoVcqocoVaaaaaactUcxycqrcxzcxAcxBbWzcxCcxDcqxcxEcxFcxGcsrcxHcxIcxJcvKcxKcxLcxMcxNcxOcxPcpdcvRcxQcxRcxScxTcgwaaaaaacpkcsDcuucxUcxVcxWcxXcxYcxZcyacybcyccuzcydcyecyfcygcyhcyicyjcykcylcymcyncyocypcyqcyrcyscyrcytcwwcyucyvcywcwAcyxcyycyzcwEcyAcyBcrmcrmcrmcrmcrmcrmcrmcrmcrmcpzcpzcaHcyCcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaaaaaaaaabKLbKMbKMbKMbKMbKMbKMbKMcyDbKMbKMbKMbVybXocyEcyFcyGcyHcyIcyJcyHcyKcyLcyLcyMbTDcfRcyNcmLcyOcyOcyPcyOctDcyRcyQctDctDcyTcyUcyVctIcyWcyXcyYcyZczaczbcxlcxlczcczdczeczfctOczgczhcziczjctOcoQcoQczkcoQcoQcqmcqmcqmcqmcoVcqoczlaaaaaacqpcsicqrczmcznczobWAbWAczpcqxcxEczqczrcsrcsjcvAcsjczscpdcztczuczvczwcpdcpdczxczyczzczAczBchZaaaaaaczCcsDcuuczDczEcxWczFczGcxZczHczIczJcuzczKcyeczLczMczNcXCczPczQczRczSczTczUczVczWczXczYczXczZcAacAbcAccAdcwAcAecAfcAgcwEcAhcAicAjcAkcAlcAmcAncAocApcAqcArcAsbYScAtcAuaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVyccBbTDbTDcAvcAwcAxbXpcAxcAycyLcyLcAzbTDcfRcyNcmLcyOcAAcABcACctDcAEcyScAFctDcAGcAHcAIctIcAJcAKcALcAMcANcAOcAPcAQcAQcARczecAScATcAUcAVcAWcAXctOcAYcAZcBacBbcBccqmcBdcqmcBecoVcqoczlaaaaaacqpcqpcBfcsjcuhcBgcBhbWAcBicqxcqxcqxcqxcBjcBkcBlcBkcBmcpdcpdcBncBocpdcpdcBpcBqcBrcjDcBschZchZaaaaaaczCcsDcuucuucBtcBucBvcBwcxZcBxcBycBzcuzcBAcBBcBCcBCcBDcBEcBFcBGcBHcBIcwocBJcypcBLcBNcBMcBKcBOcuGcBPcBQcBRcwAcBScBTcBUcwEcBVcBWcBXcBYcBYcAmcBZcCacCbcAmcAmcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaafaafaafbTEbTDbTDbTDbTDbTDbTDbTDbTDbTDbTDcfRcCccencyOcCdcABcCectDcCfcADcNpcCjcCkcClcCmctIcCncCocCpcCqctIcCrcCscCtcCtcCucCvcCwcxpcCxcCycxrcCzctOcAYcCAcCBcCCcBbcBbcqmcBdcqmcoVcqoczlaaaaaaaaactUcCDcCEcuhcCFcCGcCHcCIcCJdVzcCKcCLcCMcCNcskcCOcCMcCPcnDcCQcCRcCScCTcCUcCVcBrcCWcCXcgwaaaaaaaaaczCcsDcCYcuucCZcDacDbcDccxZcDdcDecDdcuzcDfcyecDgcDhcDicDjcDkcDlcwmcDmcwocDncypcDoczXcDpczXcDqcuGcDrcDscDtcwAcDucDvcDwcwEcDxcDycDzcDAcDBcDCcDDcDEcApcDFcDGcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacDHcDIcDJcDKcDLcDLcDMcDNcXVcCheclcPXcyOcDRcDScDTctDctDctDctDcDUcDVcDWcDUctIcDXctIcDYcDZctIcEacEbcEcdmccEdcEecEactOcEfcEgcEhcEictOcEjcEjcEjcEkcEjcBbcBbcBbcqmcoVcqocoVaaaaaaaaactUctUcElcCEcuhcuhcEmcEncEocEocEpcEqcErcEscEtcEucErcEvcEwcExcExcEycEzcBrcBrcCWcEAcgwcgwaaaaaaaaacpkcsDcEBcuucuucECcEDcEEcxZcEFcEGcEHcuzcEIcEJcEKcELcEMcENcEOcEPcEQcERcEScETcuGcEUcEVcEWcEXcEYcuGcDOcFacFbcwAcFccFdcFecwEcFfcFgcFhcFicFjcAmcFkcFlcFmcAscAscAsaafaafaafabcaafaaaaaaaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +======= +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVycaJbTDcaKcuPcuQcuRcuScuQcuTcuUcpPcpPcpPcpPcpPcpPcpPcuXcuVctDcuWcuYcxbctDcvacvbcvcecVctIcvdctIctKctIcxicvhcvicvjcvkcvjcvlcvmcvncvocvpcvqcvrctOcvscvtcvucvvcoQdUSdUTdURdwUcvwcqocoVaaaaaactUcvxcvycvzcvAcvBbWzcDQcvDcqxcvEcvFcvGeckcvIcvJcsjcvKcvLcvMcvNcumcvOcvPcvQcvRcsAcvScvTcvUcgwaaaaaacpkcsDcuucvVcvWcvXcvYcvZcwacwbcwccwdcuycwecwfcwgcwhcwicwjcwkcwlcwmcwncwocwpcwqcwrcwscwtcwucwvcwwcwxcwycwzcwAcwBcwCcwDcwEcwFcwGcrmcwHcwIcwJcrqcrqcrqcwKcwLcwIcrvcaHcwMcwNcwOcaHccxcwPcaHcaHaafaafaafaadaXGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaadbYTcwQcwUcwScwTcxtcwScwTcwVcwWcwXcwYbTDcfRcrMcrNcrNcrNcwZctDcxacxccxdctDcvacxectHecWctIcxfcxgcxhcXqcxjcxkcxlcxlcxlcxmcxncxocxpcxqcxrcxscFGcxucxvcxwcxxcvvcoQdwUdwUdwUdwUcoVcqocoVaaaaaactUcxycqrcxzcxAcxBbWzcxCcxDcqxcxEcxFcxGcsrcxHcxIcxJcvKcxKcxLcxMcxNcxOcxPcpdcvRcxQcxRcxScxTcgwaaaaaacpkcsDcuucxUcxVcxWcxXcxYcxZcyacybcyccuzcydcyecyfcygcyhcyicyjcykcylcymcyncyocypcyqcyrcyscyrcytcwwcyucyvcywcwAcyxcyycyzcwEcyAcyBcrmcrmcrmcrmcrmcrmcrmcrmcrmcpzcpzcaHcyCcaIcaHcaHcaHcaHcaHaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaaaaaaaaabKLbKMbKMbKMbKMbKMbKMbKMcyDbKMbKMbKMbVybXocyEcyFcyGcyHcyIcyJcyHcyKcyLcyLcyMbTDcfRcyNcmLcyOcyOcyPcyOctDcyRcyQctDctDcyTcyUecHctIcyWcyXcyYcyZczaczbcxlcxlczcczdczeczfctOczgczhcziczjctOcoQcoQczkcoQcoQcqmcqmcqmcqmcoVcqoczlaaaaaacqpcsicqrczmcznczobWAbWAczpcqxcxEczqczrcsrcsjcvAcsjczscpdcztczuczvczwcpdcpdczxczyczzczAczBchZaaaaaaczCcsDcuuczDczEcxWczFczGcxZczHczIczJcuzczKcyeczLczMczNcXCczPczQczRczSczTczUczVczWczXczYczXczZcAacAbcAccAdcwAcAecAfcAgcwEcAhcAicAjcAkcAlcAmcAncAocApcAqcArcAsbYScAtcAuaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaabVvcczcdQcczcdQcczcdQcczcdQcczcdQcczbVyccBbTDbTDcAvcAwcAxbXpcAxcAycyLcyLcAzbTDcfRcyNcmLcyOcAAcABcACctDcAEcyScAFctDcAGcAHecIctIcAJcAKcALcAMcANcAOcAPcAQcAQcARczecAScATcAUcAVcAWcAXctOcAYcAZcBacBbcBccqmcBdcqmcBecoVcqoczlaaaaaacqpcqpcBfcsjcuhcBgcBhbWAcBicqxcqxcqxcqxcBjcBkcBlcBkcBmcpdcpdcBncBocpdcpdcBpcBqcBrcjDcBschZchZaaaaaaczCcsDcuucuucBtcBucBvcBwcxZcBxcBycBzcuzcBAcBBcBCcBCcBDcBEcBFcBGcBHcBIcwocBJcypcBLcBNcBMcBKcBOcuGcBPcBQcBRcwAcBScBTcBUcwEcBVcBWcBXcBYcBYcAmcBZcCacCbcAmcAmcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaagaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaabMCcdRbMCcdRbMCcdRbMCcdRbMCcdRbMCcdRaafaafaafbTEbTDbTDbTDbTDbTDbTDbTDbTDbTDbTDcfRcCccencyOcCdcABcCectDcCfcADcNpcCjcCkcClcCmctIcCncCocCpcCqctIcCrcCscCtcCtcCucCvcazcxpcCxcCycxrcCzctOcAYcCAcCBcCCcBbcBbcqmcBdcqmcoVcqoczlaaaaaaaaactUcCDcCEcuhcCFcCGcCHcCIcCJdVzcCKcCLcCMcCNcskcCOcCMcCPcnDcCQcCRcCScCTcCUcCVcBrcCWcCXcgwaaaaaaaaaczCcsDcCYcuucCZcDacDbcDccxZcDdcDecDdcuzcDfcyecDgcDhcDicDjcDkcDlcwmcDmcwocDncypcDoczXcDpczXcDqcuGcDrcDscDtcwAcDucDvcDwcwEcDxcDycDzcDAcDBcDCcDDcDEcApcDFcDGcAsaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacDHcDIcDJcDKcDLcDLcDMcDNcXVcCheclcPXcyOcDRcDScDTctDctDctDctDcDUcDVcDWcDUctIcDXctIcDYcDZctIcEacEbcEccEccEdcEecEactOcEfcEgcEhcEictOcEjcEjcEjcEkcEjcBbcBbcBbcqmcoVcqocoVaaaaaaaaactUctUcElcCEcuhcuhcEmcEncEocEocEpcEqcErcEscEtcEucErcEvcEwcExcExcEycEzcBrcBrcCWcEAcgwcgwaaaaaaaaacpkcsDcEBcuucuucECcEDcEEcxZcEFcEGcEHcuzcEIcEJcEKcELcEMcENcEOcEPcEQcERcEScETcuGcEUcEVcEWcEXcEYcuGcDOcFacFbcwAcFccFdcFecwEcFfcFgcFhcFicFjcAmcFkcFlcFmcAscAscAsaafaafaafabcaafaaaaaaaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +>>>>>>> e070c7c... Oct Map Fixes (#6485) aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacDHcFncFocFpcFqcDHcDHcDHcMXcEZcDPcFtcyOcyOcyOcyOcGTcFvcFwcFxcDUcFycFzcFAcFBcFCcFDcFEcFFctIcOlcFHcFIcFJcFKcFLcFMctOcxpcFNcxpcFOctOcFPcFQcFRcFScEjcoVcoVcFTcoVcoVcFUcoVaaaaaaaaaaaactUctUcElcCEcsjcFVcFWcFXcFYcsjcFZcGacGbcskcGccGacGdcjDcGecGfcGgcGhcjDcCWcEAcgwcgwaaaaaaaaaaaacpkcsDcGicGjcGkcGlcGmcGncGocGpcGqcGrcuzcGscuzcuzcGtcGucGtcuycuEcGvcuEcGwcuEcuGcwwcGxcGycwwcuGcuGcGzcGAcFrcwAcwEcGCcwEcwEcFfcFgcFhcGDcGEcAmcGFcGGcGHcAsaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa <<<<<<< HEAD aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacFpcGIcFpcGJcGKcGLcDHcGMcGBcLFcFscGPcGQcGRcGScGTcFucGUcGVcFxcDUcGWcGXcGYcGZcHacDUcHbcHccHdcHecHfcHgcHgcHhcHicHjcHkcHlcHmcHncHocEjcHpcHqcHrcHscEjcHtcHucBbcHvcHwcHxcoVaaaaaaaaaaaaaaactUctUcHycHzcHycHAcHBcHCcHDcHDcHEcslcskcslcHEcHFcHFcHGcHHcHIcHJcHKcHJcgwcgwaaaaaaaaaaaaaaacpkcHLcHMcGjcHNcHOcHPcHQcHRcHScHTcHUcHVcHWcHXcHYcHZcIacHUcIbcIccIdcIecIfcIgcIhcIicIjcIkcIlcImcIncIocIpcIqcIrcIsecmcIucIvcIwcIxcIycIzcIAcAmcAmcIBcAmcAsaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11537,26 +11549,26 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaacMXcOrcOscOtcMXcLLcGTcIMcIMcIMcDUcDUcDUcDUcDUcDUcDUcOucOvcHgcHgcOwcOwcOwcHgcOxcOycLWcLWcLWcLWcLWcLXcOzcOAdUVcLYcOCcBbcODedhedicKNcPVcOHcOIcOJcKNcoVcoVcoVcoVczlczlczlcoVcoVcoVcoVcoVcOKcOLcMfcOMcOKcpkcpkcpkcpkcpkczCczCczCcpkcpkcpkcpkcKRcONcOOcOPcKRecqcKVcORcOScOTcKTcOUcOVcOWcOXcOYcKZcOZcPacPbcPccPdcLfcNScNTcPecPfcPgcPhcPicPjcPkcPlcPmcLhcPncPocPpcPqcPrcMOcPscPtcPtcSLcMOcPvcPwcPxcPycPzcPAcKlaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaacMXcPBcPCcPDcMXcLLcGTcGTcPEcIMcFucFucIMcIMcIMcPFcGTcEacPGcEacEacPHcPIcPJcPKcPLcPMcLWcLWcLWcLWcLWcLXcPNcPOcPPcLYcPQcPRcoVcPScPTcKNcKNcKNcKNcKNcKNcPWcHwcHwcQacQacPYcQacQacQacQacQacQacQbcQccQdcQecQfcQgcQgcQgcQgcQgcQgedkedjcpkcQjcSpcQlcKRcQmcOOcQncKRcQocKVcKVcQpcKVcKTcQqcQrcQscQtcQucKXcQvcQwcQxcQycPdcLccNScQzcQAcQBcQCcQDcQEcQFcQGcQHcQIcLhcLlcLlcLlcLlcLlcMOcPscQJcQKcSLcMOcQLcQMcKlcKlcKlcKlcKlaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaafaaaaaaaaaaaacMXcQNcQNcMXcMXcLLcIMcGTcGTcFucFucGTcGTcGTcGTcGTcGTcQOcQOcQOcEacEacEacEacQPcQQcKGcLWcLWcLWcLWcLWcLXcLYcKUcLYcLYcoVcoVcoVcQScQTcQUcHwcQVcQWcQXcHwcHxcBbcBbcBbcBbcQYcQZcAYcPUcPUcRdcRecoVcRfcRgcRhcpkcRicRjcRicRkcRlcRmednedledmedpedpedocKRcKRcRpcKRcKRcQocpkcGjcRqcRrcLacRscRtcRucRvcRwcKZcRxcRycRzcRAcRBcLbcRCcRDcREcRFcRGcRHcRIcRJcRKcRLcRMcRNcROcRPcRQcRRcRScMOcRTcRUcPtcRVcMOcRWcRXcpwaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaadaadaaaaaaaaacMXcRYcRZcSacMXcSbcKvecscSdcSecSfcSgcShcIMcSicIMcSjcSkcSkcSkcSlcSmcSmcEacEacEacKGcKGcKGcKGcKGcKGcKGcQOcSncQOcGTcSocGTdTdcBbcFUcBbcSqcSrcPScSscBbcSucSvcSwcSucSucSucSucSucSucSucSucSucSucSxcSycSzcSAcSAcSAcSAcSAcSAcSAedsedqedreduedvedtcSFcSGcSHcSDcSDcSIcSJcSKcVacSMcLacLacLacLacLacLacLacSNcLbcLbcLbcSOcLbcSPcSQcSRcSScSPcLhcSTcLhcLhcLhcMIcSUcSVcSWcSXcSYcSZcTacPtcTbcTccTdcTecTfcTgcpwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfGaafaafaafaafaaaaaaaaacMXcMXcSbcKucKucKucThcTicTicTicTjcTicTicTicTkcKucKucKucKucThcKucKucKucKucKucKucKucKucTlcTmcTncTocTpcKucTqcTrcTscTtcTJcTJcTJcTJcTJcVYcSucTvcTwcRbcRacSucStcTxcUCcRccTycTEcSucTzcTAcTBcSAcTCcTDcUucTIcTGcSAcUvcsFcsFcpkcpkcpkcpkcpkcpkcpkcpkcpkcTKcTLcsFcTMcTNcTOcTPcTQcTQcTRcTScTTcTUcTVcTWcTXcSRcTYcTZcUacUbcUccSRcUdcTWcTVcTUcUecSUcUfcUgcUhcUicUjcMOcUkcUlcUmcUncUocUpcUqcpwaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaacMXcMXcMYcMYcMYcMXcMXcMXcMYcMYcMYcMXcMXcMXcMXcMXcMXcMXcMXcIMcIMcIMecucIMcIMcIMcIMcIMcIMcIMcMXcMXcMXcMXcUredwcUtcTJcUycUwcUxcUYcUZcSucUzcTwcUDcUAcUBcUGcUHcUEcUFcUIcUScSucUJcUKcULcUMcUNcUOcUPcUTcURcSAcTHcsFcsFcpkcUUcsFcsFcpkcUXcUVcsFcsFcsFcTLcVbcVccVdcVecVfcVgcVhcGjcTScVicUacVjcVkcVlcSRcVmcVncVocVpcVqcSRcVrcVkcVjcUacVscSUcSUcSUcSUcVtcSUcMOcMOcMOcMOcMOcMOcVucVvcVwaafaafaafabcaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacMXcMXcVxcVycVzcVAcVBcVCcVDcVEcVFcMXcMXaaaaaaaaaczledxcVHcVKcVIcVIcVJcVNcVOcSucVLcVQcVRcVPcSucVTcVUcVScVMcWacWacVZcVVcVWcVXcSAcXjcWbcWdcUQcWccSAcWfcWeddrddrddrddrddrddrddrddrddrcsEcsFcTLcWlcWmcWmcWlcWncWocWpcWqcWrcWscWtcWucWvcWwcWxcWycWzcWAcWycWycWxcWAcWBcWCcWycWDcWEcQRcWGcWHcWIcWJcWKcWLcWMcWNcWOcWPcWQcWRcWSaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaadaadaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaacMXcMXcMXcMYcMYcMYcMYcMYcMXcMXcMXaaaaaaaaaaaaczledycWUcTJcUWcWgcWhcWicXtcSucSucSucSucSucWjcWXcWYcWVcYlcYlcWZcSucXhcUKcXicSAcSAcXbcXkcXacXmcSAcXddeacXcddscXgcXecXfcXecXocXlcXnddrcpkcYKcXycXzcXAcXBecLecLecvcGjcTScXEcXFcXGcXHcXIcXJcXKcXLcXMcXNcXKcXOcXPcXQcXRcXScXTcXUcWFcXWcXXcXYcXZecwcYbcYccYdcYecYfcYgcYhcYiaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaadaadaaaaaaaaacMXcRYcRZcSacMXcSbcKvecscSdcSecSfcSgcShcIMcSicIMcSjcSkcSkcSkcSlcSmcSmcEacEacEacKGcKGcKGcKGcKGcKGcKGcQOcSncQOcGTcSocGTdTdcBbcFUcBbcSqcSrcPScCwcBbcSucSvcSwcSucSucSucSucSucSucSucSucSucSucSxcSycSzcSAcSAcSAcSAcSAcSAcSAedsedqedreduedvedtcSFcSGcSHcSDcSDcSIcSJcSKcVacSMcLacLacLacLacLacLacLacSNcLbcLbcLbcSOcLbcSPcSQcSRcSScSPcLhcSTcLhcLhcLhcMIcSUcSVcSWcSXcSYcSZcTacPtcTbcTccTdcTecTfcTgcpwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabfGaafaafaafaafaaaaaaaaacMXcMXcSbcKucKucKucThcTicTicTicTjcTicTicTicTkcKucKucKucKucThcKucKucKucKucKucKucKucKucTlcTmcTncTocTpcKucTqcTrcTscTtcTJcTJcTJcTJcTJcVYcSucTvcTwcRbcRacSucStcTxcUCcRccSscTEcSucTzcTAcTBcSAcTCcTDcUucTIcTGcSAcUvcsFcsFcpkcpkcpkcpkcpkcpkcpkcpkcpkcTKcTLcsFcTMcTNcTOcTPcTQcTQcTRcTScTTcTUcTVcTWcTXcSRcTYcTZcUacUbcUccSRcUdcTWcTVcTUcUecSUcUfcUgcUhcUicUjcMOcUkcUlcUmcUncUocUpcUqcpwaaaaaaaaaabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaafaaaaaaaaaaaacMXcMXcMYcMYcMYcMXcMXcMXcMYcMYcMYcMXcMXcMXcMXcMXcMXcMXcMXcIMcIMcIMecucIMcIMcIMcIMcIMcIMcIMcMXcMXcMXcMXcUredwcUtcTJcUycUwcUxcUYcUZcSucUzcTwcUDcUAcUBcUGcUHcUEcUFcUIcUScSucUJcUKcULcUMcUNcUOcUPcUTcURcSAcTHcsFcsFcpkcUUcsFcsFcpkcUXcTycsFcsFcsFcTLcVbcVccVdcVecVfcVgcVhcGjcTScVicUacVjcVkcVlcSRcVmcVncVocVpcVqcSRcVrcVkcVjcUacVscSUcSUcSUcSUcVtcSUcMOcMOcMOcMOcMOcMOcVucVvcVwaafaafaafabcaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacMXcMXcVxcVycVzcVAcVBcVCcVDcVEcVFcMXcMXaaaaaaaaaczledxcVHcVKcVIcVIcVJcVNcVOcSucVLcVQcVRcVPcSucVTcVUcVScVMcWacUVcSucVVcVWcVXcSAcXjcWbcWdcUQcWccSAcWfcWeddrddrddrddrddrddrddrddrddrcsEcsFcTLcWlcWmcWmcWlcWncWocWpcWqcWrcWscWtcWucWvcWwcWxcWycWzcWAcWycWycWxcWAcWBcWCcWycWDcWEcQRcWGcWHcWIcWJcWKcWLcWMcWNcWOcWPcWQcWRcWSaaaaaaaaaaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaagaadaadaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaacMXcMXcMXcMYcMYcMYcMYcMYcMXcMXcMXaaaaaaaaaaaaczledycWUcTJcUWcWgcVZcWicXtcSucSucSucSucSucWjcWXcWYcWVcYlcYlcWZcSucXhcUKcXicSAcSAcXbcXkcXacXmcSAcXddeacXcddscXgcXecXfcXecXocXlcXnddrcpkcYKcXycXzcXAcXBecLecLecvcGjcTScXEcXFcXGcXHcXIcXJcXKcXLcXMcXNcXKcXOcXPcXQcXRcXScXTcXUcWFcXWcXXcXYcXZecwcYbcYccYdcYecYfcYgcYhcYiaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaafaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaabaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrcVGcXrcTJcTJcTJcTJcXucTJcTJcXscXxcYjcXvcXwcYncYocYkcYmcYpcYqddAcYucUKcYvcSAcYrcYxcYycYscYtcYAcYBcYzcYzcYzcYDcYzcYCcYGcYzcYEcYFcYHcqMcWkcYLcYMcYNcYOcTRczCczCcTRcTScTScYPcYQcYRcYScYRcSPcYTcYUcYVcSPcYWcYXcYYcYZcYYcZacZbcZbcZbcZccZdcZccZecZfcZgcZfcZhcZicZjcZicWSaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaadaadabcaagaagaadaadaadaadaafaaeaaaaafaagaadaadaadaadaadaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrcUscZkcZncTJcYIcZPcZmcZocYJcZlcZqcZrcYmcZpcZtcZucZscYqcZvcYqddAcZxcZycZzcZwcZAcZDcZEcZBcZCcZHcZIcZFcZGcZNcZOcZJcZMdardascZQdaqddrdbYdatcZScZTcZTcTRaaaaaaaafaaaaaaaaacYPcZUcZVcZWcZXcZYcZYcZZcZYcZYdaadabdacdaddaedafdagdahcZbdaidajdakcZedaldamdancZhcWScYicWScVwaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaagaadaadabcaagaagaadaadaadaadaafaaeaaaaafaagaadaadaadaadaadaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrcUscZkcZncTJcYIcZPcZmcYJcWhcZlcZqcZrcYmcZpcZtcZucZscYqcZvcYqddAcZxcZycZzcZwcZAcZDcZEcZBcZCcZHcZIcZFcZGcZNcZOcZJcZMdardascZQdaqddrdbYdatcZScZTcZTcTRaaaaaaaafaaaaaaaaacYPcZUcZVcZWcZXcZYcZYcZZcZYcZYdaadabdacdaddaedafdagdahcZbdaidajdakcZedaldamdancZhcWScYicWScVwaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaacUrdaodapdawdaxdaudavdaAdavdaydazdaGdaHdaBdaCdaKdaLdaIdaJdaNdaOdaMdaDdaEdaFdaPdaQdaTdaUdaRdaScSAdbvddrddYddYddYdfbddYddYdfbddYddYddrddrcZRcZSdaWdaXdaYaaaaaaaafaaaaaaaaacYPdaZdbadbbdbcdbddbedbfdbgdbhdbidbjdbkdblcYYdbmdbndbocZbdbpdbqdbrcZedbsdbtdbucZhaaaaaaaaaaafaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafabcaagaadaafaaaaaaaaaaadaadaadaaaaaaaaaaaaaaacUrdbwdbxdbzcTJdbyddFdbBdbCdbAcZKdbDdbEcYmcZpdbGdbHcYqdbFdbJcYqdbIdbKcUKcULdbLdbMdbPdbQdbNdbOdbRdbSddYddZddZddZddZddZddZddZddZddZddZddYcZRdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPdcadcbdccdcddbddcedcfdcgdbhdchdcidcjdckcYYdcldcmdcncZbdcodcpdcqcZedcrdcsdctcZhaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaacUrdcudbTdbWcTJdbUcZKdbZdcVdbXcZKdbDdcvcYmcZpdczdcAdcwdcxdcCdcDdcBdcKdcLdcMcSAdcEdcHdcIdcFdcGdcJdcNddYddZddZddZddZddZddZddZddZddZddZdcOdcZdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPddaddbddcddddbdddeddfdcgdbhddgddhddiddjcYWddkddkddkddkddlddmddlddnddoddpddocZhaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaafaafaafaafcUrddXdcPdcRcTJdcQdbVdcTdcUcZlcZKcZqdcWcYmcZpdcYddtcYqdcXdduddvddAddycUKddzddwdbQddBddCddxddBddDddEddYddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaaaaaaaafaafaafaafcYPcYPddNddOddPddQddRddSddTddQddUddVddWcYWcYWaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaagabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaacUrddXddGecMcTJddIddJddMddHddKddLcTJdebcYqcZpcYqcYqcYqcYqcYqcYqddAddycUKdeeddwdecddBdegdeddefdeidejdehddZddZddZddZddZddZddZddZddZddZdhmdcZcZSaaaaaaaaaaaaaadaagaaaaaaaaaaafcYPcYPcYPcYPddQddQddQddQddQcYWcYWcYWcYWaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafabcaagaadaafaaaaaaaaaaadaadaadaaaaaaaaaaaaaaacUrdbwdbxdbzcTJdbyddFdbBdbCdbAcZKdbDdbEcYmcZpdbGdbHcYqdbFdbJcYqdbIdbKcUKcULdbLdbMdbPdbQcZodbOdbRdbSddYddZddZddZddZddZddZddZddZddZddZddYcZRdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPdcadcbdccdcddbddcedcfdcgdbhdchdcidcjdckcYYdcldcmdcncZbdcodcpdcqcZedcrdcsdctcZhaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaadaaaaaaaaaaaacUrdcudbTdbWcTJdbNcZKdbUdcVdbXcZKdbDdcvcYmcZpdczdcAdcwdcxdcCdcDdcBdcKdcLdcMcSAdcEdcHdcIdbZdcGdcJdcNddYddZddZddZddZddZddZddZddZddZddZdcOdcZdaVaaaaaaaaaaaaaaaaafaaaaaaaaacYPddaddbddcddddbdddeddfdcgdbhddgddhddiddjcYWddkddkddkddkddlddmddlddnddoddpddocZhaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaafaafaafaafcUrddXdcPdcRcTJdcFdbVdcQdcTcZlcZKcZqdcWcYmcZpdcYddtcYqdcXdduddvddAddycUKddzddwdbQddBddCdcUddBddDddEddYddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaaaaaaaafaafaafaafcYPcYPddNddOddPddQddRddSddTddQddUddVddWcYWcYWaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaagabcaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaacUrddXddGecMcTJddxddJddHddIddKddLcTJdebcYqcZpcYqcYqcYqcYqcYqcYqddAddycUKdeeddwdecddBdegddMdefdeidejdehddZddZddZddZddZddZddZddZddZddZdhmdcZcZSaaaaaaaaaaaaaadaagaaaaaaaaaaafcYPcYPcYPcYPddQddQddQddQddQcYWcYWcYWcYWaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacUrddqcoVcoVcTJdekcZKcZKcZKcZldeldeodemdemdendbHderdepdeqdeudevcYwdescVWdetcSAdewdexdeycTucTucTudezcTuddZddZddZddZddZddZddZddZddZddZdeAdcZdaVaaaaaaaaaaagaadaaaaaaaaaaaaaagaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaaaaafaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaacUrddXdeBcAYcTJcZLdeCdeFdeGdeDdeEcXpdeIcYqdeHdeKcYwdeJddAddAdeLcYwdeQcUKdnzdeMcSAdbLdeOcTudeNcTudePcTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaafaafaadaaaaabaaaaaaaaaaadaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaafaadaadaadaafaaeaagaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabcaaaaaaaaaaaacUrddXdeBcAYcTJcZLdeCdeFdeddeDdeEcXpdeIcYqdeHdeKcYwdeJddAddAdeLcYwdeQcUKdnzdeMcSAdbLdeOcTudeNcTudePcTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaafaafaadaaaaabaaaaaaaaaaadaaaaaaaaaaaaaafaaaaaaaaaaafaaaaaaaaaaafaaaaaaaafaafaadaadaadaafaaeaagaadaadaadaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaafaafaafaafczlddXdeRdeTdeTdeUdeUdeUdeTdeSdeZdeTdeTcYqcZpdeVcYwdffdfgdfgdeXdfideWcUKdfkdfkdeYdfadfccTucWWcTudfdcTuddZddZddZddZddZddZddZddZddZddZdhmdhicZSaaaaaaaaaaadaaaaaaaaaaaaaaaaadaadaaaaaaaaaaafaaaaaaaaaaafaaaaadaadaafaadaadaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczlddXcBbdhXdfhdfxdfedfxdfmdfjdfldfodeUcYqdfndfpdfqdfHdfIdfJdfKdfLdfMcZydfNcULdfsdfudfvcTudftdfwdfycTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaadaagaaaaadaadaadaagaadaadaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldfzdfAdfDdfEdfBdfCdfBdfBdfFdfGdfPdfRdfOdfOdfTdfUdgfdggdghcULcSzdgidfXdfYdfVdfWdgcdgddgadgbdgedgjcTuddZddZddZddZddZddZddZddZddZddZdcOdcZdaVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaafaafaafaafcUrddXcBbdeTdgldfQdgkdgodgqdgmdgndgtdeUdgrdgsdgvcYwdgudgFdhNdXTdfidgIcTAdgJdfkdeYdgxdgycTudgwdgzdgjcTuddZddZddZddZddZddZddZddZddZddZddYdcZdaVaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaaaaaaaaaaaaczlddXdgAdeTdgCdfQdgBdgHdgKdgDdfQdgLdeTdeTdeTdeTdhadhbdhadhadhadfidhcdhddhedfidfidgMdficTucTucTudgNcTuddrddrddrddrddrddrddrdindiodipddrdcZcZSaaaaafaafaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldgOcvwdeTdgQdfQdgPdfSdfQdgRdfQdgTdgUdeTdgSdgVdVadhodUZdVcdhrdVbcTBcTAdhtdhudhvdhwdhxdhydhzdhxdhAdhvdhBdhCdhDdhEdhFdhGdhBdgWdgXdgYdhhdcZcZSaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldgOcvwdeTdgQdfQdgPdfSdfQdgRdfQdgTdgUdeTdeGdgVdVadhodUZdVcdhrdVbcTBcTAdhtdhudhvdhwdhxdhydhzdhxdhAdhvdhBdhCdhDdhEdhFdhGdhBdgWdgXdgYdhhdcZcZSaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaaaaaczldhkctTdeTdhgdgZdgZdhldgZdgZdgZdhIdgUdeTdgSdgVdhOdhPdhQdhRdVddhTdhUdhVdhWdhudhxdhYdibdhZdiadicdizdhxdhBdiddiedifdigdihdhBdhHdhJdhLdhMdhKcZSaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaadaafaafaafaafcUrdhkcoVdeTdeTdijdeTdeTdeTdeTdhfdeTdeTdeTdeTdeTdVfdVedisdVgdhrdiudivcVWdiwdixdiydiBdiAdhydhydjRdiCdhxdiDdiEdiFdiGdiHdiIdhBdiidildikdiLdimcZSaaaaaaaaaaaaaadaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadaaaaaaaaacUrcUrdhkdiMdiJdjsdiQdiMdiPdiQdiRdiQdiSdiTdiUdiVdiMdiWdhadhadhadhadiXdfkcUKdiYdixdiZdjadiZdhydjbdiZdjcdjddjedjfdjfdjgdjfdjhdhBdiKdiNdjkdjldjmcZSaaaaaaaaaaaaaaaaadaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadhjdhjdhjdhjdhjdhjdhjdhjdhjdhjdhjaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -11912,3 +11924,4 @@ aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa dUOaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} + diff --git a/maps/southern_cross/southern_cross-6.dmm b/maps/southern_cross/southern_cross-6.dmm index 1045e5703b..26deeda170 100644 --- a/maps/southern_cross/southern_cross-6.dmm +++ b/maps/southern_cross/southern_cross-6.dmm @@ -220,7 +220,7 @@ "el" = (/obj/structure/table/rack,/obj/item/weapon/gun/projectile/automatic/z8,/obj/item/weapon/gun/projectile/automatic/z8,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "em" = (/obj/structure/table/rack,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "en" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/sniperrifle,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) -"eo" = (/obj/structure/table/rack,/obj/item/weapon/melee/energy/sword/blue,/obj/item/weapon/melee/energy/sword/blue,/obj/item/weapon/melee/energy/sword/blue,/obj/item/weapon/melee/energy/sword/blue,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) +"eo" = (/obj/structure/table/rack,/obj/item/weapon/melee/energy/sword,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "ep" = (/obj/structure/table/rack,/obj/item/weapon/gun/projectile/automatic/l6_saw,/obj/item/ammo_magazine/m545saw,/obj/item/ammo_magazine/m545saw,/obj/item/ammo_magazine/m545saw,/obj/item/ammo_magazine/m545saw,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "eq" = (/obj/structure/table/rack,/obj/item/weapon/shield/energy,/obj/item/weapon/shield/energy,/obj/item/weapon/shield/energy,/obj/item/weapon/shield/energy,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "er" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) @@ -508,7 +508,7 @@ "jN" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_1_recovery_hatch"; locked = 1; name = "Recovery Shuttle Dock 1"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/centcom/evac) "jO" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "escape_pod_2_recovery_hatch"; locked = 1; name = "Recovery Shuttle Dock 2"; req_access = list(13)},/turf/simulated/shuttle/floor/black,/area/centcom/evac) "jP" = (/obj/machinery/door/airlock/command{name = "Thunderdome Administration"; req_access = list(102)},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) -"jQ" = (/obj/structure/table/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/red,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/obj/item/weapon/melee/energy/sword/red,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) +"jQ" = (/obj/structure/table/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/red,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) "jR" = (/obj/structure/closet/chefcloset,/obj/item/glass_jar,/obj/item/device/retail_scanner/civilian,/obj/item/weapon/soap/nanotrasen,/obj/item/device/destTagger{pixel_x = 4; pixel_y = 3},/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/item/weapon/packageWrap,/obj/effect/floor_decal/corner/white/diagonal,/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/bar) "jS" = (/obj/effect/floor_decal/corner/white/diagonal,/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/bar) "jT" = (/turf/unsimulated/floor{icon_state = "freezerfloor"; dir = 2},/area/centcom/bar) @@ -924,7 +924,7 @@ "rN" = (/obj/machinery/computer/shuttle_control{name = "Beruang control console"; req_access = list(160); shuttle_tag = "Trade"},/turf/unsimulated/floor{icon_state = "steel"},/area/shuttle/trade) "rO" = (/obj/structure/closet/crate,/turf/unsimulated/floor{icon_state = "vault"; dir = 1},/area/shuttle/trade) "rP" = (/turf/unsimulated/floor{icon_state = "dark"},/area/shuttle/trade) -"rQ" = (/obj/structure/table/rack,/obj/item/clothing/under/color/green,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/green,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/obj/item/weapon/melee/energy/sword/green,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) +"rQ" = (/obj/structure/table/rack,/obj/item/clothing/under/color/green,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/green,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) "rR" = (/obj/machinery/door/airlock/centcom{name = "Bridge Access"; opacity = 1; req_access = list(101)},/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/main_hall) "rS" = (/obj/machinery/door/airlock/glass_centcom{name = "Bridge Access"; req_access = list(101)},/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/main_hall) "rT" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/unsimulated/floor{icon_state = "freezerfloor"; dir = 2},/area/centcom/bar) @@ -2262,7 +2262,7 @@ "Rz" = (/obj/effect/floor_decal/corner/green/full,/obj/structure/window/reinforced/holowindow/disappearing{dir = 8},/turf/simulated/floor/holofloor/tiled,/area/holodeck/source_thunderdomecourt) "RA" = (/obj/effect/floor_decal/corner/red/full{dir = 4},/obj/structure/window/reinforced/holowindow/disappearing{dir = 4},/turf/simulated/floor/holofloor/tiled,/area/holodeck/source_thunderdomecourt) "RB" = (/obj/effect/floor_decal/corner/green{dir = 10},/turf/simulated/floor/holofloor/tiled,/area/holodeck/source_thunderdomecourt) - + (1,1,1) = {" aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa @@ -2520,4 +2520,3 @@ aaaaRfababababababababababababababaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} - diff --git a/maps/southern_cross/southern_cross_defines.dm b/maps/southern_cross/southern_cross_defines.dm index a91e0367a6..4b8365cb57 100644 --- a/maps/southern_cross/southern_cross_defines.dm +++ b/maps/southern_cross/southern_cross_defines.dm @@ -94,7 +94,10 @@ return list( Z_LEVEL_STATION_ONE, Z_LEVEL_STATION_TWO, - Z_LEVEL_STATION_THREE) + Z_LEVEL_STATION_THREE, + Z_LEVEL_SURFACE, + Z_LEVEL_SURFACE_MINE, + Z_LEVEL_SURFACE_WILD) else if(srcz in list(Z_LEVEL_SURFACE, Z_LEVEL_SURFACE_MINE, Z_LEVEL_SURFACE_WILD)) // Being on the surface lets you see other surface Zs. return list( Z_LEVEL_SURFACE, diff --git a/maps/submaps/engine_submaps/engine_rust.dmm b/maps/submaps/engine_submaps/engine_rust.dmm index d95d79c7e1..3a8594844a 100644 --- a/maps/submaps/engine_submaps/engine_rust.dmm +++ b/maps/submaps/engine_submaps/engine_rust.dmm @@ -1,2450 +1,217 @@ -//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( -/turf/template_noop, -/area/template_noop) -"ab" = ( -/turf/space, -/area/space) -"ac" = ( -/obj/item/weapon/book/manual/rust_engine, -/turf/template_noop, -/area/template_noop) -"ad" = ( -/obj/machinery/computer/general_air_control/supermatter_core{ - dir = 1; - frequency = 1438; - input_tag = "cooling_in"; - name = "Engine Cooling Control"; - output_tag = "cooling_out"; - pressure_setting = 100; - sensors = list("engine_sensor" = "Engine Core"); - throwpass = 1 - }, -/turf/template_noop, -/area/template_noop) -"ae" = ( -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine charging port."; - id = "SupermatterPort"; - name = "Radiation Collector Blast Doors"; - pixel_x = -6; - pixel_y = 7; - req_access = list(10) - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineBlast"; - name = "Engine Monitoring Room Blast Doors"; - pixel_x = 0; - pixel_y = -3; - req_access = list(10) - }, -/turf/template_noop, -/area/template_noop) -"af" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ag" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = "engine_access_hatch"; - locked = 1; - name = "Fusion Core Access"; - req_access = list(11) - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ah" = ( -/obj/machinery/computer/fusion_fuel_control{ - id_tag = "engine" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ai" = ( -/obj/structure/lattice, -/obj/structure/grille, -/turf/space, -/area/space) -"aj" = ( -/obj/structure/lattice, -/turf/space, -/area/space) -"ak" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"al" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "EngineVent"; - name = "Reactor Vent"; - p_open = 0 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"am" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"an" = ( -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"ao" = ( -/obj/structure/window/phoronreinforced/full{ - icon_state = "phoronwindow0" - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/engineering/engine_room) -"ap" = ( -/turf/space, -/area/engineering/engine_smes) -"aq" = ( -/turf/simulated/floor, -/area/engineering/engine_room) -"ar" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/engineering/engine_room) -"as" = ( -/obj/structure/table/reinforced, -/obj/fiftyspawner/deuterium, -/turf/simulated/floor, -/area/engineering/engine_room) -"at" = ( -/obj/structure/table/reinforced, -/obj/fiftyspawner/tritium, -/turf/simulated/floor, -/area/engineering/engine_room) -"au" = ( -/obj/machinery/fusion_fuel_compressor, -/turf/simulated/floor, -/area/engineering/engine_room) -"av" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/turf/space, -/area/space) -"aw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/turf/space, -/area/space) -"ax" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 4 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"ay" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/turf/space, -/area/space) -"az" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aA" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aB" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aC" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aD" = ( -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aE" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/glass_engineering, -/turf/simulated/floor, -/area/engineering/engine_room) -"aF" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/obj/structure/lattice, -/turf/space, -/area/space) -"aG" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 6 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"aH" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"aI" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aJ" = ( -/obj/machinery/fusion_fuel_injector/mapped{ - dir = 8; - id_tag = "engine" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aK" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aL" = ( -/obj/machinery/computer/gyrotron_control{ - id_tag = "engine" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aM" = ( -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aN" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging, -/turf/space, -/area/space) -"aO" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/turf/space, -/area/space) -"aP" = ( -/obj/machinery/power/fusion_core/mapped{ - id_tag = "engine" - }, -/obj/structure/cable/cyan, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aQ" = ( -/obj/machinery/computer/fusion_core_control{ - id_tag = "engine" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aR" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - unacidable = 1; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aS" = ( -/obj/machinery/air_sensor{ - frequency = 1438; - id_tag = "engine_sensor"; - output = 63 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aT" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aU" = ( -/obj/machinery/camera/network/engine, -/obj/machinery/button/remote/airlock{ - id = "engine_access_hatch"; - name = "Door Bolt Control"; - pixel_x = -4; - pixel_y = 28; - req_access = list(10); - specialfunctions = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"aV" = ( -/obj/structure/table/reinforced, -/obj/item/weapon/book/manual/rust_engine, -/turf/simulated/floor, -/area/engineering/engine_room) -"aW" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 4; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aX" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aY" = ( -/obj/machinery/atmospherics/unary/outlet_injector{ - dir = 8; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"aZ" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 4; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"ba" = ( -/obj/machinery/atmospherics/pipe/manifold4w/visible/red, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"bb" = ( -/obj/machinery/atmospherics/unary/vent_pump/high_volume{ - dir = 8; - pump_direction = 0; - use_power = 1 - }, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"bc" = ( -/turf/simulated/wall/r_wall, -/area/template_noop) -"bd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"be" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor/reinforced, -/area/engineering/engine_room) -"bf" = ( -/obj/machinery/camera/network/engine{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bg" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/structure/window/phoronreinforced/full{ - icon_state = "phoronwindow0" - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/engineering/engine_room) -"bh" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/structure/window/phoronreinforced/full{ - icon_state = "phoronwindow0" - }, -/obj/structure/grille, -/turf/simulated/floor, -/area/engineering/engine_room) -"bi" = ( -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bj" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 1; - id_tag = "engine" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bk" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor, -/area/engineering/engine_room) -"bl" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor, -/area/engineering/engine_room) -"bm" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bn" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bo" = ( -/turf/simulated/floor/tiled/techmaint, -/area/template_noop) -"bp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bq" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"br" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bs" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bt" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bu" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bv" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 5 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bw" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 10 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"by" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bz" = ( -/turf/simulated/floor, -/area/template_noop) -"bA" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/camera/network/engine{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bB" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bC" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine radiator viewport shutters."; - id = "EngineRadiatorViewport"; - name = "Engine Radiator Viewport Shutters"; - pixel_x = -25; - pixel_y = 0; - req_access = list(10) - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bE" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bF" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bG" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/turf/simulated/floor, -/area/engineering/engine_room) -"bH" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 10 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bI" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor, -/area/engineering/engine_room) -"bJ" = ( -/obj/structure/cable/cyan{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bK" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 5 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"bL" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"bM" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineRadiatorViewport"; - name = "Engine Radiator Viewport Shutter"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bN" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bO" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/turf/simulated/floor, -/area/engineering/engine_room) -"bP" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/engineering/engine_room) -"bQ" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bR" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bS" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/green{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor, -/area/engineering/engine_room) -"bT" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - dir = 10; - icon_state = "intact"; - - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/engineering/engine_room) -"bU" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/engineering/engine_room) -"bV" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - dir = 8; - icon_state = "map"; - - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bW" = ( -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/yellow, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Engine Output"; - name_tag = "Engine Output" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bX" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"bY" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{ - dir = 8 - }, -/turf/space, -/area/space) -"bZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineRadiatorViewport"; - name = "Engine Radiator Viewport Shutter"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ca" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 10 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cb" = ( -/obj/machinery/atmospherics/binary/pump, -/turf/simulated/floor, -/area/engineering/engine_room) -"cc" = ( -/obj/machinery/atmospherics/binary/pump{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ce" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1; - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cf" = ( -/obj/machinery/power/generator{ - anchored = 1; - dir = 4 - }, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cg" = ( -/obj/machinery/atmospherics/binary/circulator{ - anchored = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ch" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ci" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cj" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 10 - }, -/obj/structure/lattice, -/turf/space, -/area/space) -"ck" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "EngineRadiatorViewport"; - name = "Engine Radiator Viewport Shutter"; - opacity = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/engineering/engine_room) -"cl" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/obj/machinery/atmospherics/binary/pump/high_power, -/turf/simulated/floor, -/area/engineering/engine_room) -"cm" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor, -/area/engineering/engine_room) -"cn" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor, -/area/engineering/engine_room) -"co" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 6 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cp" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green, -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cq" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cr" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cs" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"ct" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cu" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/yellow{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cv" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cw" = ( -/obj/machinery/atmospherics/pipe/simple/heat_exchanging{ - dir = 9 - }, -/turf/space, -/area/space) -"cx" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cy" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cz" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/engineering/engine_room) -"cA" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cB" = ( -/obj/machinery/atmospherics/pipe/simple/visible/green{ - icon_state = "intact"; - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor, -/area/engineering/engine_room) -"cC" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 6 - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/engineering/engine_room) -"cD" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/red{ - icon_state = "map"; - dir = 4 - }, -/obj/machinery/meter, -/turf/simulated/floor, -/area/engineering/engine_room) -"cE" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow, -/obj/machinery/meter, -/turf/simulated/floor, -/area/engineering/engine_room) -"cF" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/engine{ - dir = 8 - }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cG" = ( -/turf/simulated/wall/r_wall, -/area/engineering/engine_gas) -"cH" = ( -/turf/simulated/floor, -/area/engineering/engine_gas) -"cI" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest"; - name = "Engine Room Blast Doors"; - pixel_x = 0; - pixel_y = -25; - req_access = null; - req_one_access = list(11,24) - }, -/obj/machinery/camera/network/engine{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cJ" = ( -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cK" = ( -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cL" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan, -/turf/simulated/floor, -/area/engineering/engine_room) -"cM" = ( -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cN" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/airlock_sensor/airlock_interior{ - id_tag = "eng_al_int_snsr"; - master_tag = "engine_room_airlock"; - pixel_x = 22; - pixel_y = 0; - req_access = list(10) - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cO" = ( -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "EngineEmitterPortWest"; - layer = 3.3; - name = "Engine Gas Storage" - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cP" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cQ" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cR" = ( -/obj/machinery/atmospherics/pipe/manifold/visible/cyan{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cS" = ( -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 9 - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cT" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"cU" = ( -/turf/simulated/floor/plating, -/area/template_noop) -"cV" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cW" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest"; - name = "Engine Room Blast Doors"; - pixel_x = 0; - pixel_y = 25; - req_access = null; - req_one_access = list(11,24) - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cX" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/structure/extinguisher_cabinet{ - dir = 1; - icon_state = "extinguisher_closed"; - pixel_y = 32; - - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"cY" = ( -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor, -/area/engineering/engine_room) -"cZ" = ( -/obj/machinery/button/remote/blast_door{ - id = "EngineVent"; - name = "Reactor Ventillatory Control"; - pixel_x = 0; - pixel_y = -25; - req_access = list(10) - }, -/obj/effect/floor_decal/industrial/warning, -/turf/simulated/floor, -/area/engineering/engine_room) -"da" = ( -/obj/machinery/atmospherics/pipe/simple/visible/cyan{ - dir = 5 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"db" = ( -/obj/machinery/atmospherics/valve/digital{ - dir = 4; - name = "Emergency Cooling Valve 2" - }, -/obj/machinery/light, -/turf/simulated/floor, -/area/engineering/engine_room) -"dc" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"dd" = ( -/obj/machinery/atmospherics/pipe/simple/visible/red{ - icon_state = "intact"; - dir = 9 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"de" = ( -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"df" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/nitrogen, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dg" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dh" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"di" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/portable_atmospherics/canister/carbon_dioxide, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 - }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dj" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'HIGH VOLTAGE'"; - icon_state = "shock"; - name = "HIGH VOLTAGE"; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/engineering/engine_room) -"dk" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dl" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/phoron, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dm" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dn" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"do" = ( -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/obj/structure/closet/radiation, -/obj/item/clothing/glasses/meson, -/obj/item/clothing/glasses/meson, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dp" = ( -/obj/effect/floor_decal/industrial/outline/blue, -/obj/machinery/portable_atmospherics/canister/phoron, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/industrial/warning/corner, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dr" = ( -/obj/effect/floor_decal/rust, -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor, -/area/engineering/engine_gas) -"ds" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for the engine control room blast doors."; - id = "EngineEmitterPortWest2"; - name = "Engine Room Blast Doors"; - pixel_x = 25; - pixel_y = 0; - req_access = null; - req_one_access = list(11,24) - }, -/turf/simulated/floor, -/area/engineering/engine_gas) -"dt" = ( -/obj/structure/sign/securearea{ - desc = "A warning sign which reads 'RADIOACTIVE AREA'"; - icon_state = "radiation"; - name = "RADIOACTIVE AREA"; - pixel_x = 0; - pixel_y = 0 - }, -/turf/simulated/wall/r_wall, -/area/template_noop) -"du" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "EngineEmitterPortWest2"; - layer = 3.3; - name = "Engine Gas Storage" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled/steel_grid, -/area/template_noop) -"dv" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - dir = 4; - icon_state = "pdoor1"; - id = "EngineEmitterPortWest2"; - layer = 3.3; - name = "Engine Gas Storage" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/template_noop) -"dw" = ( -/obj/structure/cable/cyan{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/visible/red, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"dx" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 1; - id_tag = "engine" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, -/turf/simulated/floor, -/area/engineering/engine_room) -"dy" = ( -/obj/machinery/power/emitter/gyrotron/anchored{ - dir = 1; - id_tag = "engine" - }, -/obj/structure/cable/cyan{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning{ - icon_state = "warning"; - dir = 4 - }, -/turf/simulated/floor, -/area/engineering/engine_room) +"aa" = (/turf/template_noop,/area/template_noop) +"ab" = (/turf/space,/area/space) +"ac" = (/obj/item/weapon/book/manual/rust_engine,/turf/template_noop,/area/template_noop) +"ad" = (/obj/machinery/computer/general_air_control/supermatter_core{dir = 1; frequency = 1438; input_tag = "cooling_in"; name = "Engine Cooling Control"; output_tag = "cooling_out"; pressure_setting = 100; sensors = list("engine_sensor" = "Engine Core"); throwpass = 1},/turf/template_noop,/area/template_noop) +"ae" = (/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine charging port."; id = "SupermatterPort"; name = "Radiation Collector Blast Doors"; pixel_x = -6; pixel_y = 7; req_access = list(10)},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; pixel_x = 0; pixel_y = -3; req_access = list(10)},/obj/machinery/button/remote/blast_door/radproof{pixel_x = 6; pixel_y = 7},/turf/template_noop,/area/template_noop) +"af" = (/obj/machinery/light{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"ag" = (/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/obj/machinery/door/blast/radproof/open,/turf/simulated/floor,/area/engineering/engine_room) +"ah" = (/obj/machinery/computer/fusion_fuel_control{id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) +"ai" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) +"aj" = (/obj/structure/lattice,/turf/space,/area/space) +"ak" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"al" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"am" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"an" = (/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"ao" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_access_hatch"; locked = 1; name = "Fusion Core Access"; req_access = list(11)},/obj/machinery/door/blast/radproof/open,/turf/simulated/floor,/area/engineering/engine_room) +"ap" = (/turf/space,/area/engineering/engine_smes) +"aq" = (/turf/simulated/floor,/area/engineering/engine_room) +"ar" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_room) +"as" = (/obj/structure/table/reinforced,/obj/fiftyspawner/deuterium,/turf/simulated/floor,/area/engineering/engine_room) +"at" = (/obj/structure/table/reinforced,/obj/fiftyspawner/tritium,/turf/simulated/floor,/area/engineering/engine_room) +"au" = (/obj/machinery/fusion_fuel_compressor,/turf/simulated/floor,/area/engineering/engine_room) +"av" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/turf/space,/area/space) +"aw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/turf/space,/area/space) +"ax" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 4},/obj/structure/lattice,/turf/space,/area/space) +"ay" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/turf/space,/area/space) +"az" = (/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aA" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aB" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"aC" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) +"aD" = (/obj/structure/cable/cyan{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/engine_room) +"aE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering,/turf/simulated/floor,/area/engineering/engine_room) +"aF" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/obj/structure/lattice,/turf/space,/area/space) +"aG" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 6},/obj/structure/lattice,/turf/space,/area/space) +"aH" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/obj/structure/lattice,/turf/space,/area/space) +"aI" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aJ" = (/obj/machinery/fusion_fuel_injector/mapped{dir = 8; id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) +"aK" = (/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_room) +"aL" = (/obj/machinery/computer/gyrotron_control{id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) +"aM" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/engine_room) +"aN" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging,/turf/space,/area/space) +"aO" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/turf/space,/area/space) +"aP" = (/obj/machinery/power/fusion_core/mapped{id_tag = "engine"},/obj/structure/cable/cyan,/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aQ" = (/obj/machinery/computer/fusion_core_control{id_tag = "engine"},/turf/simulated/floor,/area/engineering/engine_room) +"aR" = (/obj/machinery/atmospherics/unary/outlet_injector{unacidable = 1; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aS" = (/obj/machinery/air_sensor{frequency = 1438; id_tag = "engine_sensor"; output = 63},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aT" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aU" = (/obj/machinery/camera/network/engine,/obj/machinery/button/remote/airlock{id = "engine_access_hatch"; name = "Door Bolt Control"; pixel_x = -4; pixel_y = 28; req_access = list(10); specialfunctions = 4},/turf/simulated/floor,/area/engineering/engine_room) +"aV" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/rust_engine,/obj/machinery/button/remote/blast_door/radproof{pixel_x = 6; pixel_y = 7},/turf/simulated/floor,/area/engineering/engine_room) +"aW" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 4; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aX" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/yellow,/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aY" = (/obj/machinery/atmospherics/unary/outlet_injector{dir = 8; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"aZ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"ba" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/red,/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"bb" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; pump_direction = 0; use_power = 1},/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"bc" = (/turf/simulated/wall/r_wall,/area/template_noop) +"bd" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"be" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"bf" = (/obj/machinery/camera/network/engine{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"bg" = (/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/turf/simulated/floor,/area/engineering/engine_room) +"bh" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/turf/simulated/floor,/area/engineering/engine_room) +"bi" = (/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor,/area/engineering/engine_room) +"bj" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id_tag = "engine"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bk" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/engineering/engine_room) +"bl" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor,/area/engineering/engine_room) +"bm" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_room) +"bn" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) +"bo" = (/turf/simulated/floor/tiled/techmaint,/area/template_noop) +"bp" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bq" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"br" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bs" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_room) +"bt" = (/obj/structure/cable/yellow{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/engineering/engine_room) +"bu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor,/area/engineering/engine_room) +"bv" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor,/area/engineering/engine_room) +"bw" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bx" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor,/area/engineering/engine_room) +"by" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_room) +"bz" = (/turf/simulated/floor,/area/template_noop) +"bA" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/structure/window/phoronreinforced/full{icon_state = "phoronwindow0"},/obj/structure/grille,/turf/simulated/floor,/area/engineering/engine_room) +"bB" = (/turf/simulated/wall/lead,/area/engineering/engine_room) +"bC" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine radiator viewport shutters."; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutters"; pixel_x = -25; pixel_y = 0; req_access = list(10)},/turf/simulated/floor,/area/engineering/engine_room) +"bD" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"bE" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bF" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bG" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor,/area/engineering/engine_room) +"bH" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 10},/turf/simulated/floor,/area/engineering/engine_room) +"bI" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor,/area/engineering/engine_room) +"bJ" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/camera/network/engine{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bK" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 5},/obj/structure/lattice,/turf/space,/area/space) +"bL" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/obj/structure/lattice,/turf/space,/area/space) +"bM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bN" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bO" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor,/area/engineering/engine_room) +"bP" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) +"bQ" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"bR" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bS" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room) +"bT" = (/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) +"bU" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) +"bV" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/manifold/visible/red{dir = 8; icon_state = "map"},/turf/simulated/floor,/area/engineering/engine_room) +"bW" = (/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/structure/cable/yellow,/obj/machinery/power/sensor{name = "Powernet Sensor - Engine Output"; name_tag = "Engine Output"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor,/area/engineering/engine_room) +"bX" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"bY" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging/junction{dir = 8},/turf/space,/area/space) +"bZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"ca" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 10},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"cb" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor,/area/engineering/engine_room) +"cc" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"cd" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"ce" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1; dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"cf" = (/obj/machinery/power/generator{anchored = 1; dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_room) +"cg" = (/obj/machinery/atmospherics/binary/circulator{anchored = 1},/turf/simulated/floor,/area/engineering/engine_room) +"ch" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"ci" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"cj" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 10},/obj/structure/lattice,/turf/space,/area/space) +"ck" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8; health = 1e+006},/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineRadiatorViewport"; name = "Engine Radiator Viewport Shutter"; opacity = 0},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_room) +"cl" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/binary/pump/high_power,/turf/simulated/floor,/area/engineering/engine_room) +"cm" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/engine_room) +"cn" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/effect/floor_decal/industrial/outline/blue,/turf/simulated/floor,/area/engineering/engine_room) +"co" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/turf/simulated/floor,/area/engineering/engine_room) +"cp" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"cq" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"cr" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/engineering/engine_room) +"cs" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 5},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) +"ct" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) +"cu" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) +"cv" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/engineering/engine_room) +"cw" = (/obj/machinery/atmospherics/pipe/simple/heat_exchanging{dir = 9},/turf/space,/area/space) +"cx" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"cy" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"cz" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) +"cA" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"cB" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 5},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room) +"cC" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) +"cD" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) +"cE" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/obj/machinery/meter,/turf/simulated/floor,/area/engineering/engine_room) +"cF" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/camera/network/engine{dir = 8},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor,/area/engineering/engine_room) +"cG" = (/turf/simulated/wall/r_wall,/area/engineering/engine_gas) +"cH" = (/turf/simulated/floor,/area/engineering/engine_gas) +"cI" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = -25; req_access = null; req_one_access = list(11,24)},/obj/machinery/camera/network/engine{dir = 1},/turf/simulated/floor,/area/engineering/engine_gas) +"cJ" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_gas) +"cK" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_gas) +"cL" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor,/area/engineering/engine_room) +"cM" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"cN" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/airlock_sensor/airlock_interior{id_tag = "eng_al_int_snsr"; master_tag = "engine_room_airlock"; pixel_x = 22; pixel_y = 0; req_access = list(10)},/turf/simulated/floor,/area/engineering/engine_room) +"cO" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_gas) +"cP" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/turf/simulated/floor,/area/engineering/engine_room) +"cQ" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"cR" = (/obj/machinery/atmospherics/pipe/manifold/visible/cyan{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/engineering/engine_room) +"cS" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow{dir = 9},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/engineering/engine_room) +"cT" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor,/area/engineering/engine_room) +"cU" = (/turf/simulated/floor/plating,/area/template_noop) +"cV" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/engine_gas) +"cW" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest"; name = "Engine Room Blast Doors"; pixel_x = 0; pixel_y = 25; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_gas) +"cX" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor,/area/engineering/engine_gas) +"cY" = (/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_room) +"cZ" = (/obj/machinery/button/remote/blast_door{id = "EngineVent"; name = "Reactor Ventillatory Control"; pixel_x = 0; pixel_y = -25; req_access = list(10)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/engineering/engine_room) +"da" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 5},/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"db" = (/obj/machinery/atmospherics/valve/digital{dir = 4; name = "Emergency Cooling Valve 2"},/obj/machinery/light,/turf/simulated/floor,/area/engineering/engine_room) +"dc" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor,/area/engineering/engine_room) +"dd" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 9},/turf/simulated/floor,/area/engineering/engine_room) +"de" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor,/area/engineering/engine_room) +"df" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/nitrogen,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor,/area/engineering/engine_gas) +"dg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor,/area/engineering/engine_gas) +"dh" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor,/area/engineering/engine_gas) +"di" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/canister/carbon_dioxide,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/engine_gas) +"dj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"dk" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor,/area/engineering/engine_gas) +"dl" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/engine_gas) +"dm" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor,/area/engineering/engine_gas) +"dn" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor,/area/engineering/engine_gas) +"do" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/engine_gas) +"dp" = (/obj/effect/floor_decal/industrial/outline/blue,/obj/machinery/portable_atmospherics/canister/phoron,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor,/area/engineering/engine_gas) +"dq" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/engineering/engine_gas) +"dr" = (/obj/effect/floor_decal/rust,/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/engineering/engine_gas) +"ds" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest2"; name = "Engine Room Blast Doors"; pixel_x = 25; pixel_y = 0; req_access = null; req_one_access = list(11,24)},/turf/simulated/floor,/area/engineering/engine_gas) +"dt" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/template_noop) +"du" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/template_noop) +"dv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/turf/simulated/floor/tiled/steel_grid,/area/template_noop) +"dw" = (/obj/structure/cable/cyan{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"dx" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id_tag = "engine"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor,/area/engineering/engine_room) +"dy" = (/obj/machinery/power/emitter/gyrotron/anchored{dir = 1; id_tag = "engine"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"dz" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"dA" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/red,/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/door/blast/radproof/open{dir = 4},/turf/simulated/floor,/area/engineering/engine_room) +"dB" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/wall/lead,/area/engineering/engine_room) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(2,1,1) = {" -aa -ab -ab -ai -ai -ai -aj -ai -ai -ai -ai -ai -ai -ai -ai -ai -aj -aj -ai -ai -ai -ai -ai -ai -ai -ai -ai -aj -ai -aa -"} -(3,1,1) = {" -aa -ab -ab -ai -ab -ab -aj -ab -aj -ab -aj -ab -aj -ab -aj -ab -aj -aj -ab -aj -ab -aj -ab -aj -ab -aj -ab -aj -ab -aa -"} -(4,1,1) = {" -aa -ab -ab -ai -ab -av -aF -aN -aF -aN -aF -aN -aF -aN -aF -aN -aF -aF -aN -aF -aN -aF -aN -aF -aN -aF -aN -aF -aO -aa -"} -(5,1,1) = {" -aa -ab -ab -ai -ab -aw -aG -aO -aG -aO -aG -aO -aG -aO -aG -aO -aG -bK -av -bK -av -bK -av -bK -av -bK -av -bK -aw -aa -"} -(6,1,1) = {" -aa -ab -ab -ai -ab -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -aa -"} -(7,1,1) = {" -aa -ab -ab -aj -aj -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -ax -aa -"} -(8,1,1) = {" -aa -ab -ab -ai -ap -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -aa -"} -(9,1,1) = {" -aa -ab -ab -ai -ab -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -ax -aw -aa -"} -(10,1,1) = {" -aa -ab -ab -ai -ab -ay -aH -ay -aH -ay -aH -ay -aH -ay -aH -ay -aH -bL -bY -cj -cw -cj -cw -cj -cw -cj -cw -cj -cw -aa -"} -(11,1,1) = {" -aa -ab -ab -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -bM -bZ -ck -am -cG -cG -cG -cG -cG -cG -cG -aa -aa -"} -(12,1,1) = {" -aa -ab -ab -ak -an -an -an -an -an -aW -an -ao -dx -bA -aB -aq -bC -bN -ca -cl -cx -cH -cG -cV -df -dk -dl -cG -aa -aa -"} -(13,1,1) = {" -aa -ab -ab -ak -an -an -an -an -aR -aX -bd -bg -bp -bB -bk -bk -bD -bO -cb -cm -cy -cI -cG -cW -cV -dl -dp -cG -aa -aa -"} -(14,1,1) = {" -aa -ab -ab -ak -an -an -an -an -an -aY -an -ao -bj -bJ -aq -aq -bE -bO -cc -cn -cy -cJ -cO -cH -dg -dm -dq -dt -aa -aa -"} -(15,1,1) = {" -aa -ab -ab -al -an -az -aI -aP -aS -an -an -ao -bq -bX -aq -aq -bF -bP -cc -cn -cz -cJ -cO -cH -dh -dn -dr -du -aa -aa -"} -(16,1,1) = {" -aa -ab -ab -ak -an -aA -an -an -an -aZ -an -ao -bj -bJ -aq -aq -bF -bQ -cb -cm -cy -cK -cG -cX -di -do -ds -dv -aa -aa -"} -(17,1,1) = {" -aa -ab -ab -ak -an -aA -an -an -aT -ba -be -bh -br -dw -bl -bv -bF -bR -aq -aq -cy -cH -cG -cG -cG -cG -cG -bc -aa -aa -"} -(18,1,1) = {" -aa -ab -ab -ak -an -aA -an -an -an -bb -an -ao -dy -bJ -aq -bw -bF -bR -aq -co -cA -cL -cP -cY -ak -aa -aa -aa -aa -aa -"} -(19,1,1) = {" -aa -ab -ab -ak -ao -ag -ao -ao -ao -ao -ao -ak -aq -aC -aq -bw -bF -bS -cd -cp -cB -cM -cQ -cZ -ak -aa -aa -aa -aa -aa -"} -(20,1,1) = {" -aa -ab -ab -ak -aU -aC -aJ -aJ -aJ -aq -aq -aq -aq -aC -aq -bw -bF -bT -ce -cq -bT -ce -cR -da -ak -aa -aa -aa -aa -aa -"} -(21,1,1) = {" -aa -ab -ab -ak -af -aD -aK -aK -aK -aK -aK -aK -bm -bs -aq -bw -bF -bU -cf -cr -bU -cf -cr -db -dj -aa -aa -aa -aa -aa -"} -(22,1,1) = {" -aa -ab -ab -ak -ar -aE -ar -ar -ar -ar -aq -aq -aC -aq -aq -bx -bG -bV -cg -cs -cC -cg -cs -dc -ak -aa -aa -aa -aa -aa -"} -(23,1,1) = {" -aa -ab -ab -ak -as -aq -aL -aQ -ah -ar -aq -aq -aC -aq -aq -aq -bF -bx -ch -ct -cD -ch -ct -dd -ak -aa -aa -aa -aa -aa -"} -(24,1,1) = {" -aa -ab -ab -ak -at -aq -aq -aq -aq -ar -aq -aq -aC -aq -aq -aq -bH -bk -bk -cu -cE -bk -cS -aq -ak -aa -aa -aa -aa -aa -"} -(25,1,1) = {" -aa -ab -ab -ak -au -aq -aM -aq -aV -ar -bf -bi -bn -bt -bu -by -bI -bW -ci -cv -cF -cN -cT -de -ak -aa -aa -aa -aa -aa -"} -(26,1,1) = {" -aa -ab -ab -am -ak -ak -ak -ak -ak -bc -bc -bc -bo -bo -bc -bz -bz -bz -bz -bz -bc -bc -cU -bc -bc -aa -aa -aa -aa -aa -"} -(27,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -bc -aa -aa -aa -aa -bc -ac -aa -aa -aa -aa -bc -aa -aa -aa -bc -aa -aa -aa -aa -aa -"} -(28,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -bc -aa -aa -aa -aa -bc -ad -aa -ae -aa -aa -bc -aa -aa -aa -bc -aa -aa -aa -aa -aa -"} -(29,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -"} -(30,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaabababababababababababababababababababababababababababaaaa +aaabababababababababababababababababababababababababababaaaa +aaaiaiaiaiaiajaiaiaiakakakakalakakakakakakakakakakamababaaaa +aaaiababababajapababakanananananananagaUafarasatauakababaaaa +aaaiabavawawaxawawayakanananazaAaAaAaoaCaDaraqaqaqakababaaaa +aaajajaFaGaxaxaxaxaHakanananaIanananagaJaKaraLaqaMakababaaaa +aaaiabaNaOawaxawawayakanananaPanananagaJaKaraQaqaqakababaaaa +aaaiajaFaGaxaxaxaxaHakanaRanaSanaTanagaJaKarahaqaVakababaaaa +aaaiabaNaOawaxawawayakaWaXaYanaZbabbagaqaKararaEarbcbcbcaaaa +aaaiajaFaGaxaxaxaxaHakanbdanananbeanagaqaKaqaqaqbfbcaaaaaaaa +aaaiabaNaOawaxawawayakbgbhbgbgbgbAbgakaqaKaqaqaqbibcaaaaaaaa +aaaiajaFaGaxaxaxaxaHakdxbpbjbqbjbrdybBaqbmaCaCaCbnboaaaaaaaa +aaaiabaNaOawaxawawayakbJbXdwdzdwdAdwdBaCbsaqaqaqbtboaaaaaaaa +aaaiajaFaGaxaxaxaxaHakaBbkaqaqaqblaqaqaqaqaqaqaqbubcbcbcaaaa +aaaiabaNaOawaxawawayakaqbkaqaqaqbvbwbwbwbwbxaqaqbybzacadaaaa +aaajajaFaGaxaxaxaxaHakbCbDbEbFbFbFbFbFbFbFbGbFbHbIbzaaaaaaaa +aaajajaFbKaxaxaxaxbLbMbNbObObPbQbRbRbSbTbUbVbxbkbWbzaaaeaaaa +aaaiabaNavawaxawawbYbZcacbcccccbaqaqcdcecfcgchbkcibzaaaaaaaa +aaaiajaFbKaxaxaxaxcjckclcmcncncmaqcocpcqcrcsctcucvbzaaaaaaaa +aaaiabaNavawaxawawcwamcxcycyczcycycAcBbTbUcCcDcEcFbcbcbcaaaa +aaaiajaFbKaxaxaxaxcjcGcHcIcJcJcKcHcLcMcecfcgchbkcNbcaaaaaaaa +aaaiabaNavawaxawawcwcGcGcGcOcOcGcGcPcQcRcrcsctcScTcUaaaaaaaa +aaaiajaFbKaxaxaxaxcjcGcVcWcHcHcXcGcYcZdadbdcddaqdebcaaaaaaaa +aaaiabaNavawaxawawcwcGdfcVdgdhdicGakakakdjakakakakbcbcbcaaaa +aaaiajaFbKaxaxaxaxcjcGdkdldmdndocGaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaiabaNavawaxawawcwcGdldpdqdrdscGaaaaaaaaaaaaaaaaaaaaaaaaaa +aaajajaFbKaxaxaxaxcjcGcGcGdtdudvbcaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaiabaOawawaxawawcwaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa "} diff --git a/maps/submaps/engine_submaps_yw/engine_yw.dm b/maps/submaps/engine_submaps_yw/engine_yw.dm index 2b7a81cb22..b6f0f32350 100644 --- a/maps/submaps/engine_submaps_yw/engine_yw.dm +++ b/maps/submaps/engine_submaps_yw/engine_yw.dm @@ -119,12 +119,12 @@ dat += "Engine Select console
" dat += "Please select an engine for construction.

" - dat += "Engine autoselect in [time2text(src.lifetime SECONDS, "mm:ss")].
" +// dat += "Engine autoselect in [time2text(src.lifetime SECONDS, "mm:ss")].
" dat += "WARNING: Selecting an engine will deploy nanobots to construct it. These nanobots will attempt to disassemble anything in their way, including curious engineers!.
" dat += "Build Tesla engine
" dat += "Build Supermatter Engine
" - //dat += "Build Singularity Engine
" //Not enabled because of stability issues. +// dat += "Build Singularity Engine
" //Not enabled because of stability issues. dat += "Build R-UST
" dat += "
Build Random Engine
" @@ -177,9 +177,9 @@ //check every second and make sure we havent been alive to long.. //if we have been alive to long, and aren't building anything, pick an engine to build at random. /obj/machinery/computer/pickengine/process() - --lifetime - if(lifetime <= 0 && !building) - setEngineType(pick(config.engine_map)) +// --lifetime +// if(lifetime <= 0 && !building) +// setEngineType(pick(config.engine_map)) if(destroy) qdel(src) sleep(1 SECOND) diff --git a/maps/submaps/shelters/shelter_4.dmm b/maps/submaps/shelters/shelter_4.dmm index c5fbcb5007..bed3b074cd 100644 --- a/maps/submaps/shelters/shelter_4.dmm +++ b/maps/submaps/shelters/shelter_4.dmm @@ -95,6 +95,7 @@ /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/glass/beaker/large, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, /turf/simulated/shuttle/floor/voidcraft/light, /area/survivalpod) "i" = ( diff --git a/maps/submaps/surface_submaps/mountains/mountains_areas_vr.dm b/maps/submaps/surface_submaps/mountains/mountains_areas_vr.dm new file mode 100644 index 0000000000..8fb98ffe54 --- /dev/null +++ b/maps/submaps/surface_submaps/mountains/mountains_areas_vr.dm @@ -0,0 +1,2 @@ +/area/submap/cave + base_turf = /turf/simulated/mineral/floor/ignore_mapgen/cave diff --git a/maps/tether/submaps/_tether_submaps.dm b/maps/tether/submaps/_tether_submaps.dm index 453b4dc8c0..eba5106efa 100644 --- a/maps/tether/submaps/_tether_submaps.dm +++ b/maps/tether/submaps/_tether_submaps.dm @@ -3,12 +3,13 @@ ////////////////////////////////////////////////////////////////////////////// /// Static Load -/datum/map_template/tether_lateload/tether_misc +#include "tether_misc.dmm" //YW Addition, forces map to be compiled +/*/datum/map_template/tether_lateload/tether_misc //YW Edit, commented out this lateload name = "Tether - Misc" desc = "Misc areas, like some transit areas, holodecks, merc area." mappath = 'tether_misc.dmm' - associated_map_datum = /datum/map_z_level/tether_lateload/ships + associated_map_datum = /datum/map_z_level/tether_lateload/ships*/ /datum/map_z_level/tether_lateload/misc name = "Misc" @@ -166,7 +167,52 @@ name = "Away Mission - Debris Field" z = Z_LEVEL_DEBRISFIELD +////////////////////////////////////////////////////////////////////////////////////// +// Gateway submaps go here +/datum/map_template/tether_lateload/gateway + name = "Gateway Submap" + desc = "Please do not use this." + mappath = null + associated_map_datum = null +/datum/map_z_level/tether_lateload/gateway_destination + name = "Gateway Destination" + z = Z_LEVEL_GATEWAY + +#include "gateway/snow_outpost.dm" +/datum/map_template/tether_lateload/gateway/snow_outpost + name = "Snow Outpost" + desc = "Big snowy area with various outposts." + mappath = 'gateway/snow_outpost.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/zoo.dm" +/datum/map_template/tether_lateload/gateway/zoo + name = "Zoo" + desc = "Gigantic space zoo" + mappath = 'gateway/zoo.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/carpfarm.dm" +/datum/map_template/tether_lateload/gateway/carpfarm + name = "Carp Farm" + desc = "Asteroid base surrounded by carp" + mappath = 'gateway/carpfarm.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/snowfield.dm" +/datum/map_template/tether_lateload/gateway/snowfield + name = "Snow Field" + desc = "An old base in middle of snowy wasteland" + mappath = 'gateway/snowfield.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination + +#include "gateway/listeningpost.dm" +/datum/map_template/tether_lateload/gateway/listeningpost + name = "Listening Post" + desc = "Asteroid-bound mercenary listening post" + mappath = 'gateway/listeningpost.dmm' + associated_map_datum = /datum/map_z_level/tether_lateload/gateway_destination ////////////////////////////////////////////////////////////////////////////////////// // Admin-use z-levels for loading whenever an admin feels like #if AWAY_MISSION_TEST diff --git a/maps/tether/submaps/admin_use/fun.dm b/maps/tether/submaps/admin_use/fun.dm index 76c5be488b..090db293a4 100644 --- a/maps/tether/submaps/admin_use/fun.dm +++ b/maps/tether/submaps/admin_use/fun.dm @@ -32,7 +32,7 @@ requires_power = 0 dynamic_lighting = 0 -/area/submap/AU2 +/area/submap/admin_upload/AU2 name = "\improper Unknown Area A" requires_power = 1 dynamic_lighting = 1 @@ -40,7 +40,7 @@ power_environ = FALSE power_light = FALSE -/area/submap/AU3 +/area/submap/admin_upload/AU3 name = "\improper Unknown Area B" requires_power = 1 dynamic_lighting = 1 @@ -48,7 +48,7 @@ power_environ = FALSE power_light = FALSE -/area/submap/AU4 +/area/submap/admin_upload/AU4 name = "\improper Unknown Area C" requires_power = 1 dynamic_lighting = 1 @@ -56,7 +56,7 @@ power_environ = FALSE power_light = FALSE -/area/submap/AU5 +/area/submap/admin_upload/AU5 name = "\improper Unknown Area D" requires_power = 1 dynamic_lighting = 1 @@ -64,7 +64,7 @@ power_environ = FALSE power_light = FALSE -/area/submap/AU6 +/area/submap/admin_upload/AU6 name = "\improper Unknown Area E" requires_power = 1 dynamic_lighting = 1 diff --git a/maps/tether/submaps/aerostat/_aerostat.dm b/maps/tether/submaps/aerostat/_aerostat.dm index e3fd87782d..71a3b1b5e3 100644 --- a/maps/tether/submaps/aerostat/_aerostat.dm +++ b/maps/tether/submaps/aerostat/_aerostat.dm @@ -75,11 +75,11 @@ faction = "aerostat_surface" atmos_comp = TRUE prob_spawn = 100 - prob_fall = 50 + prob_fall = 30 //guard = 20 mobs_to_pick_from = list( - /mob/living/simple_mob/vore/aggressive/corrupthound = 3, - /mob/living/simple_mob/mechanical/viscerator = 2, + /mob/living/simple_mob/animal/space/jelly = 1, + /mob/living/simple_mob/mechanical/viscerator = 1, /mob/living/simple_mob/vore/aggressive/corrupthound = 1 ) @@ -190,6 +190,14 @@ VIRGO2_TURF_CREATE(/turf/simulated/mineral/floor/ignore_mapgen) name = "\improper Away Mission - Aerostat Inside" icon_state = "crew_quarters" base_turf = /turf/simulated/floor/plating/virgo2 + requires_power = TRUE + dynamic_lighting = TRUE + forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/argitoth.ogg', 'sound/ambience/tension/burning_terror.ogg') + +/area/tether_away/aerostat/solars + name = "\improper Away Mission - Aerostat Solars" + icon_state = "crew_quarters" + base_turf = /turf/simulated/floor/plating/virgo2 dynamic_lighting = TRUE /area/tether_away/aerostat/surface diff --git a/maps/tether/submaps/aerostat/aerostat.dmm b/maps/tether/submaps/aerostat/aerostat.dmm index 1832ba2faa..f7c9403135 100644 --- a/maps/tether/submaps/aerostat/aerostat.dmm +++ b/maps/tether/submaps/aerostat/aerostat.dmm @@ -18,18 +18,6 @@ /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) "ae" = ( -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"af" = ( -/obj/effect/floor_decal/rust, -/obj/structure/bed/chair{ - dir = 8 - }, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"ag" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; @@ -40,7 +28,31 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"af" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/machinery/power/solar, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"ag" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) "ah" = ( /obj/effect/floor_decal/industrial/warning/dust/corner, /obj/effect/floor_decal/industrial/warning/dust{ @@ -110,13 +122,13 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/power/solar, /obj/effect/floor_decal/industrial/warning/dust{ dir = 1 }, -/obj/machinery/power/solar, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "ar" = ( /obj/machinery/light/small{ dir = 4 @@ -124,17 +136,12 @@ /turf/simulated/floor/plating/virgo2, /area/tether_away/aerostat/inside) "as" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, /obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 + dir = 5 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "at" = ( /obj/structure/table/standard, /obj/fiftyspawner/osmium, @@ -148,33 +155,39 @@ /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) "av" = ( -/obj/structure/cable/yellow{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/solar, /obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 + dir = 9 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "aw" = ( /turf/unsimulated/floor/sky/virgo2_sky, /area/tether_away/aerostat) "ax" = ( +/obj/machinery/power/solar, /obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 + dir = 1 }, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"ay" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"ay" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) "az" = ( /obj/machinery/atmospherics/binary/algae_farm, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -192,22 +205,17 @@ /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) "aB" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 5 }, /obj/structure/cable/yellow{ d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 + d2 = 8; + icon_state = "2-8" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "aC" = ( /obj/machinery/atmospherics/binary/algae_farm, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -221,6 +229,35 @@ /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) "aD" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"aE" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"aF" = ( +/obj/machinery/atmospherics/binary/algae_farm, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + icon_state = "intact"; + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor/virgo2, +/area/tether_away/aerostat/inside) +"aG" = ( /obj/structure/cable/yellow{ d2 = 8; icon_state = "0-8" @@ -228,8 +265,8 @@ /obj/machinery/power/solar, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"aE" = ( +/area/tether_away/aerostat/solars) +"aH" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -242,46 +279,7 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"aF" = ( -/obj/machinery/atmospherics/binary/algae_farm, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ - icon_state = "intact"; - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor/virgo2, -/area/tether_away/aerostat/inside) -"aG" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"aH" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "aI" = ( /obj/machinery/atmospherics/binary/algae_farm, /obj/machinery/atmospherics/pipe/simple/hidden/black{ @@ -304,7 +302,11 @@ /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "aM" = ( -/obj/effect/decal/cleanable/cobweb2, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "aN" = ( @@ -314,25 +316,29 @@ /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "aO" = ( -/obj/machinery/power/terminal{ - dir = 4 +/obj/machinery/light/small{ + dir = 1 }, -/obj/structure/cable/heavyduty{ - icon_state = "0-8" +/obj/structure/cable{ + icon_state = "4-8" }, /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "aP" = ( -/obj/machinery/power/smes/buildable, +/obj/effect/decal/cleanable/cobweb2, +/obj/machinery/power/apc/alarms_hidden{ + chargelevel = 0.005; + pixel_x = 25; + start_charge = 0 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "aQ" = ( -/obj/machinery/power/terminal{ - dir = 8 - }, -/obj/structure/cable/heavyduty{ - dir = 2; - icon_state = "0-4" +/obj/structure/cable{ + icon_state = "2-4" }, /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) @@ -341,54 +347,42 @@ /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "aS" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"aT" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"aT" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) "aU" = ( -/obj/structure/cable/heavyduty{ - dir = 2; +/obj/machinery/power/solar, +/obj/structure/cable/yellow{ + d2 = 4; icon_state = "0-4" }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "aV" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "aW" = ( /obj/structure/cable/heavyduty{ icon_state = "1-8" @@ -405,20 +399,36 @@ /turf/simulated/floor/plating/virgo2, /area/tether_away/aerostat/inside) "aY" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"aZ" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"aZ" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 +/area/tether_away/aerostat/solars) +"ba" = ( +/obj/structure/cable/yellow{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /obj/structure/cable/yellow{ d1 = 4; @@ -427,40 +437,33 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"ba" = ( +/area/tether_away/aerostat/solars) +"bb" = ( /obj/structure/cable/yellow{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"bb" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/area/tether_away/aerostat/solars) +"bc" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"bc" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 9 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "bd" = ( /turf/simulated/shuttle/wall, /area/shuttle/aerostat/docked) @@ -540,37 +543,39 @@ /turf/simulated/floor/plating/virgo2, /area/tether_away/aerostat/inside) "bt" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/structure/cable/yellow{ d1 = 1; d2 = 4; icon_state = "1-4" }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "bu" = ( /obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/effect/floor_decal/industrial/warning/dust{ - dir = 10 + dir = 4 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "bv" = ( /turf/simulated/wall/virgo2, /area/tether_away/aerostat/inside) "bw" = ( /obj/effect/floor_decal/industrial/hatch/yellow, -/obj/tether_away_spawner/aerostat_inside, +/obj/tether_away_spawner/aerostat_inside{ + prob_fall = 25 + }, /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) "bx" = ( @@ -728,7 +733,12 @@ /turf/simulated/floor/plating/virgo2, /area/tether_away/aerostat/inside) "bZ" = ( -/obj/tether_away_spawner/aerostat_inside, +/obj/structure/cable{ + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, /turf/simulated/floor/bluegrid/virgo2, /area/tether_away/aerostat/inside) "ca" = ( @@ -799,18 +809,6 @@ }, /turf/simulated/shuttle/floor/yellow, /area/shuttle/aerostat/docked) -"ck" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/machinery/door/airlock/multi_tile/metal{ - dir = 1; - hackProof = 1; - icon_state = "door_locked"; - locked = 1 - }, -/turf/simulated/floor/tiled/techfloor/virgo2, -/area/tether_away/aerostat/inside) "cl" = ( /obj/machinery/light, /turf/simulated/shuttle/floor/yellow, @@ -822,9 +820,12 @@ /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) "cn" = ( -/obj/machinery/door/airlock/multi_tile/metal{ - icon_state = "door_closed"; - dir = 1 +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = 10; + pixel_y = 25 }, /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) @@ -884,24 +885,19 @@ /area/tether_away/aerostat/inside) "cx" = ( /obj/structure/cable/yellow{ + d1 = 2; d2 = 8; - icon_state = "0-8" + icon_state = "2-8" }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/machinery/power/solar, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "cy" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 }, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "cz" = ( /obj/effect/floor_decal/industrial/warning/dust, /turf/simulated/floor/tiled/techfloor/virgo2, @@ -993,6 +989,30 @@ /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) +"cO" = ( +/obj/machinery/door/airlock/external{ + frequency = 1089; + icon_state = "door_locked"; + id_tag = "aerostat_door_inner"; + locked = 1 + }, +/turf/simulated/floor/tiled/techfloor/virgo2, +/area/tether_away/aerostat/inside) +"cP" = ( +/obj/tether_away_spawner/aerostat_inside, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) "cQ" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/effect/decal/cleanable/cobweb, @@ -1058,183 +1078,179 @@ /turf/simulated/floor/plating/virgo2, /area/tether_away/aerostat/inside) "db" = ( -/obj/machinery/power/solar, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dc" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 1 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dd" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 5 - }, -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"de" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"df" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dg" = ( -/obj/machinery/power/solar, /obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dh" = ( +/area/tether_away/aerostat/solars) +"dc" = ( +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/yellow{ - d1 = 2; d2 = 8; - icon_state = "2-8" + icon_state = "1-8" }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"di" = ( +/area/tether_away/aerostat/solars) +"dd" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 2; - icon_state = "1-2" + d2 = 8; + icon_state = "1-8" }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"de" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 8; icon_state = "2-8" }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"df" = ( +/obj/machinery/power/tracker, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dg" = ( +/obj/machinery/power/solar_control, +/obj/structure/cable/yellow, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dh" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"di" = ( +/obj/structure/cable/heavyduty{ + dir = 2; + icon_state = "0-4" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) "dj" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dk" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dl" = ( +/obj/structure/cable/heavyduty{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dm" = ( +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/yellow, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dn" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"do" = ( /obj/structure/cable/yellow{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dk" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dl" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dm" = ( -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dn" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"do" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/cable/yellow{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "dp" = ( -/obj/structure/cable/yellow{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dq" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"dq" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) "dr" = ( /obj/structure/cable/heavyduty{ icon_state = "2-4" @@ -1248,57 +1264,10 @@ icon_state = "4-8" }, /obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating/virgo2, /area/tether_away/aerostat/inside) "dt" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 8 - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"du" = ( -/obj/structure/cable/heavyduty{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dv" = ( -/obj/structure/cable/heavyduty{ - icon_state = "0-8" - }, -/obj/structure/cable/yellow, -/obj/structure/cable/yellow{ - d2 = 2; - icon_state = "0-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dw" = ( -/obj/machinery/power/solar_control, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dx" = ( -/obj/machinery/power/tracker, -/obj/structure/cable/yellow, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dy" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat/inside) -"dz" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 4; @@ -1306,8 +1275,8 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dA" = ( +/area/tether_away/aerostat/solars) +"du" = ( /obj/structure/cable/yellow{ d1 = 4; d2 = 8; @@ -1320,8 +1289,8 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dB" = ( +/area/tether_away/aerostat/solars) +"dv" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, @@ -1332,8 +1301,55 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dC" = ( +/area/tether_away/aerostat/solars) +"dw" = ( +/obj/structure/metal_edge, +/turf/unsimulated/floor/sky/virgo2_sky, +/area/tether_away/aerostat/solars) +"dx" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 8 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dy" = ( +/obj/structure/cable/heavyduty{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"dz" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dA" = ( +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dB" = ( /obj/structure/cable/yellow{ d1 = 1; d2 = 2; @@ -1346,8 +1362,8 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dD" = ( +/area/tether_away/aerostat/solars) +"dC" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 4 }, @@ -1363,46 +1379,54 @@ }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"dD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 4 + }, +/obj/effect/floor_decal/rust, +/obj/random/powercell, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) "dE" = ( +/obj/effect/floor_decal/rust, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dF" = ( +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, /obj/effect/floor_decal/industrial/warning/dust{ dir = 10 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) -"dF" = ( -/obj/machinery/power/solar, -/obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/yellow{ - d2 = 4; - icon_state = "0-4" - }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "dG" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, /obj/effect/floor_decal/industrial/warning/dust, -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, +/obj/machinery/power/solar, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "dH" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 6 - }, /obj/structure/cable/yellow{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 4; + icon_state = "1-4" }, +/obj/effect/floor_decal/industrial/warning/dust, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "dI" = ( /obj/structure/cable/yellow{ d2 = 8; @@ -1412,14 +1436,191 @@ /obj/effect/floor_decal/industrial/warning/dust, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) "dJ" = ( /obj/effect/floor_decal/industrial/warning/dust{ dir = 6 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) +/area/tether_away/aerostat/solars) +"dK" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"dL" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable/heavyduty{ + dir = 2; + icon_state = "0-4" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"dM" = ( +/obj/machinery/power/smes/buildable, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"dN" = ( +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"dO" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/bluegrid/virgo2, +/area/tether_away/aerostat/inside) +"dP" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external{ + frequency = 1089; + icon_state = "door_locked"; + id_tag = "aerostat_door_outer"; + locked = 1 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"dQ" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 10 + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dR" = ( +/obj/machinery/power/solar, +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dS" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dT" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 6 + }, +/obj/structure/cable/yellow{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dU" = ( +/obj/effect/floor_decal/rust, +/obj/random/powercell, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/solars) +"dV" = ( +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = 25; + pixel_y = -5 + }, +/turf/simulated/floor/tiled/techfloor/virgo2, +/area/tether_away/aerostat/inside) +"dW" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = 10; + pixel_y = 25 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"dX" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = 10; + pixel_y = -25 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"dY" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1089; + id_tag = "aerostat_doors"; + name = "Aerostat Airlock Controller"; + pixel_y = 25; + tag_exterior_door = "aerostat_door_outer"; + tag_interior_door = "aerostat_door_inner" + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"dZ" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"ea" = ( +/obj/effect/floor_decal/rust, +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + id_tag = "aerostat_door_outer"; + locked = 1 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"eb" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + dir = 1 + }, +/obj/effect/floor_decal/rust, +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = -25; + pixel_y = 25 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) +"ec" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/effect/floor_decal/rust, +/obj/machinery/access_button{ + frequency = 1089; + master_tag = "aerostat_doors"; + name = "Aerostat Shuttle Dock"; + pixel_x = -25; + pixel_y = -25 + }, +/turf/simulated/floor/plating/virgo2, +/area/tether_away/aerostat/inside) "eE" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /obj/random/toolbox, @@ -1447,11 +1648,6 @@ /obj/random/contraband, /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) -"ub" = ( -/obj/effect/floor_decal/rust, -/obj/random/powercell, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) "uU" = ( /obj/structure/table/standard, /obj/item/weapon/gun/energy/taser/xeno, @@ -1480,14 +1676,6 @@ /obj/random/drinkbottle, /turf/simulated/floor/tiled/techfloor/virgo2, /area/tether_away/aerostat/inside) -"DK" = ( -/obj/effect/floor_decal/industrial/warning/dust{ - dir = 4 - }, -/obj/effect/floor_decal/rust, -/obj/random/powercell, -/turf/simulated/floor/plating/virgo2, -/area/tether_away/aerostat) "Fg" = ( /obj/random/firstaid, /turf/simulated/floor/plating/virgo2, @@ -4991,10 +5179,10 @@ aw aw aw aw -df -df -df -JG +aT +aT +aT +dw aw aw aw @@ -5132,12 +5320,12 @@ aw aw aw aw -de -de -de -de -de -JG +aD +aD +aD +aD +aD +dw aw aw aw @@ -5203,10 +5391,10 @@ aw aw aw aw -df -df -df -JG +aT +aT +aT +dw aw aw aw @@ -5273,14 +5461,14 @@ aw aw aw aw -de -de -dj -dx -de -de -de -JG +aD +aD +aZ +df +aD +aD +aD +dw aw aw aw @@ -5344,12 +5532,12 @@ aw aw aw aw -de -de -de -de -de -JG +aD +aD +aD +aD +aD +dw aw aw aw @@ -5414,16 +5602,16 @@ aw aw aw aw -de -de -de -aG +aD +aD +aD +ba +dg +aD +aD +aD +aD dw -de -de -de -de -JG aw aw aw @@ -5485,14 +5673,14 @@ aw aw aw aw -de -de -dj -dx -de -de -de -JG +aD +aD +aZ +df +aD +aD +aD +dw aw aw aw @@ -5555,87 +5743,87 @@ aw aw aw aw -de -de -de -de -dk -de -de -de -de -de -de -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -de -de -de -aG +aD +aD +aD +aD +bb +aD +aD +aD +aD +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +ba +dg +aD +aD +aD +aD dw -de -de -de -de -JG aw aw aw @@ -5696,89 +5884,89 @@ aw aw aw aw -ag -aB -aB -aB -aB -aH -df -aY +ae +aE +aE +aE +aE +bc +aT +do +dx +dx +dx +dx +dF +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aD +aD bb -bb -bb -bb -bu -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -de -de -de -de -dk -de -de -de -de -de -de -JG +aD +aD +aD +aD +aD +aD +dw aw aw aw @@ -5838,90 +6026,90 @@ aw aw aw aw -aq -aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -ag -aB -aB -aB -aB -aH -df -aY +af +aG +aG +aG +aG bb +aD bb -bb -bb -bu -JG +aG +aG +aG +aG +dG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ae +aE +aE +aE +aE +bc +aT +do +dx +dx +dx +dx +dF +dw aw aw aw @@ -5980,90 +6168,90 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de +ag +aH +aH +aH +aH +bt +aD +ba +dz +dz +dz +dz +dH +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +af aG -bt -bt -bt -bt -cy -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aq +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -6122,90 +6310,90 @@ aw aw aw aw -aq -aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -as -aE -aE -aE -aE -aS -de +af aG +aG +aG +aG +bb +aD +bb +aG +aG +aG +aG +dG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -6264,90 +6452,90 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de +ag +aH +aH +aH +aH +bt +aD +ba +dz +dz +dz +dz +dH +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +af aG -bt -bt -bt -bt -cy -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aq +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -6406,90 +6594,90 @@ aw aw aw aw -aq -aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -as -aE -aE -aE -aE -aS -de +af aG +aG +aG +aG +bb +aD +bb +aG +aG +aG +aG +dG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -6548,90 +6736,90 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de +ag +aH +aH +aH +aH +bt +aD +ba +dz +dz +dz +dz +dH +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +af aG -bt -bt -bt -bt -cy -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -cv -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aq +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -6690,20 +6878,20 @@ aw aw aw aw -aq +af +aG +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -6760,20 +6948,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -6832,20 +7020,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -6902,20 +7090,20 @@ aw aw aw aw -aq +af +aG +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -6974,20 +7162,20 @@ aw aw aw aw -aq +af +aG +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -7044,20 +7232,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -7116,90 +7304,90 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de +ag +aH +aH +aH +aH +bt +aD +ba +dz +dz +dz +dz +dH +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aa +ac +bv +cw +cw +bv +ac +aa +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +af aG -bt -bt -bt -bt -cy -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -ac -bv -cw -cw -bv -ac -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aq +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -7258,20 +7446,20 @@ aw aw aw aw -aq +af +aG +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -7328,20 +7516,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -7400,20 +7588,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -7470,20 +7658,20 @@ aw aw aw aw -aq +af +aG +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -7542,90 +7730,90 @@ aw aw aw aw -aq -aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -ac -bK -bK -bK -bv -cw -cw -bv -be -be -be -ac -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -as -aE -aE -aE -aE -aS -de +af aG +aG +aG +aG +bb +aD +bb +aG +aG +aG +aG +dG +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aa +ac +bK +bK +bK +bv +cw +cw +bv +be +be +be +ac +aa +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -7684,20 +7872,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -7754,20 +7942,20 @@ aw aw aw aw -aq +af +aG +aG +aG +aG +bb aD -aD -aD -aD -dk -de -dk -aD -aD -aD -aD -cx -JG +bb +aG +aG +aG +aG +dG +dw aw aw aw @@ -7826,20 +8014,20 @@ aw aw aw aw -av -aD -aD -aD -aD -dk -de -dk -aD -aD -aD +aq +aG +aG +aG +aG +bb aD +bb +aG +aG +aG +aG dI -JG +dw aw aw aw @@ -7896,20 +8084,20 @@ aw aw aw aw -as -aE -aE -aE -aE -aS -de -aG +ag +aH +aH +aH +aH bt -bt -bt -bt -cy -JG +aD +ba +dz +dz +dz +dz +dH +dw aw aw aw @@ -7968,20 +8156,20 @@ aw aw aw aw -ay -dq -dq -dq -dq -aT -dq -aZ -dq -DK -dq -dq +as +aS +aS +aS +aS +bu +aS +dp +aS +dD +aS +aS dJ -JG +dw aw aw aw @@ -8038,20 +8226,20 @@ aw aw aw aw -av -aD -aD -aD -aD -dk -de -dk -aD -aD -aD +aq +aG +aG +aG +aG +bb aD +bb +aG +aG +aG +aG dI -JG +dw aw aw aw @@ -8111,17 +8299,17 @@ aw aw aw aw -de -de -de -de -dk -de -dk -de -de -de -de +aD +aD +aD +aD +bb +aD +bb +aD +aD +aD +aD JG aw aw @@ -8180,20 +8368,20 @@ aw aw aw aw -ay -dq -dq -dq -dq -aT -dq -aZ -dq -dq -dq -dq +as +aS +aS +aS +aS +bu +aS +dp +aS +aS +aS +aS dJ -JG +dw aw aw aw @@ -8254,16 +8442,16 @@ aw aw aw aw -de -de -de -dk -de -dk -de -de -de -JG +aD +aD +aD +bb +aD +bb +aD +aD +aD +dw aw aw aw @@ -8323,18 +8511,18 @@ aw aw aw aw -de -de -de -de -dk -de -dk -de -de -de -de -JG +aD +aD +aD +aD +bb +aD +bb +aD +aD +aD +aD +dw aw aw aw @@ -8397,14 +8585,14 @@ aw aw aw aw -de -de -dp -aU -ba -de -de -JG +aD +aD +cx +di +dq +aD +aD +dw aw aw aw @@ -8443,7 +8631,7 @@ bK be be be -gD +be be be ac @@ -8466,16 +8654,16 @@ aw aw aw aw -de -de -de -dk -de -dk -de -de -de -JG +aD +aD +aD +bb +aD +bb +aD +aD +aD +dw aw aw aw @@ -8540,12 +8728,12 @@ aw aw aw aw -de -de -du -de -de -JG +aD +aD +dj +aD +aD +dw aw aw aw @@ -8609,14 +8797,14 @@ aw aw aw aw -de -de -dp -aU -ba -de -de -JG +aD +aD +cx +di +dq +aD +aD +dw aw aw aw @@ -8683,10 +8871,10 @@ aw aw aw aw -ax -aV -ax -JG +cy +dk +cy +dw aw aw aw @@ -8729,7 +8917,7 @@ ZK an bK be -be +gD be be ac @@ -8752,12 +8940,12 @@ aw aw aw aw -de -de -du -de -de -JG +aD +aD +dj +aD +aD +dw aw aw aw @@ -8895,10 +9083,10 @@ aw aw aw aw -dq -aV -dq -JG +aS +dk +aS +dw aw aw aw @@ -10992,7 +11180,7 @@ ac ac ce ci -ck +cp ce ac ac @@ -11274,10 +11462,10 @@ cI be ac aK -aL -aO -aO -aL +aQ +dn +dn +dN aR ac be @@ -11386,7 +11574,7 @@ aw aw ac be -be +gD bj aw aw @@ -11416,10 +11604,10 @@ bq be ac Mj -aL -aP -aP -aL +bZ +dK +dM +dO aL ac be @@ -11557,11 +11745,11 @@ aw bq be ac -aL -bZ -aP -aP -aL +aM +cP +dK +dM +dN Mj ac be @@ -11699,11 +11887,11 @@ bU cJ be ac -aK -aL -aQ -aQ -aL +aO +dh +dL +dL +dO aR ac be @@ -11841,7 +12029,7 @@ bq be be ac -aM +aP aL aN aN @@ -11973,7 +12161,7 @@ bv be be be -gD +be be be cH @@ -11986,7 +12174,7 @@ ac ac ce ci -ck +cp ce ac ac @@ -12135,7 +12323,7 @@ bq be be be -gD +be be be be @@ -12403,7 +12591,7 @@ bD bq be be -be +dZ be be be @@ -12419,7 +12607,7 @@ bq be be be -be +dZ be be bj @@ -14149,10 +14337,10 @@ aw aw aw aw -df -dt -df -JG +aT +dl +aT +dw aw aw aw @@ -14221,10 +14409,10 @@ aw aw aw aw -df -dt -df -JG +aT +dl +aT +dw aw aw aw @@ -14290,12 +14478,12 @@ aw aw aw aw -de -de -du -de -de -JG +aD +aD +dj +aD +aD +dw aw aw aw @@ -14362,83 +14550,83 @@ aw aw aw aw -de -de -du -de -de -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -ac -be -be -be -be -be -be -be -be -be -be -bC -bK -bK -bK -bC -be -be -be -be -be -be -be -be -be -ac -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -de -de +aD +aD dj -dv -dz -de -de -JG +aD +aD +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aa +ac +be +be +be +be +be +be +be +be +be +be +bC +bK +bK +bK +bC +be +be +be +be +be +be +be +be +be +ac +aa +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +aZ +dm +dt +aD +aD +dw aw aw aw @@ -14503,14 +14691,14 @@ aw aw aw aw -de -de -dj -dv -dz -ae -de -JG +aD +aD +aZ +dm +dt +dA +aD +dw aw aw aw @@ -14540,9 +14728,9 @@ be be be bv +cn bK -bK -bK +dV bv be be @@ -14572,16 +14760,16 @@ aw aw aw aw -de -de -de -dk -de -dk -de -de -de -JG +aD +aD +aD +bb +aD +bb +aD +aD +aD +dw aw aw aw @@ -14644,16 +14832,16 @@ aw aw aw aw -de -de -de -dk -de -dk -de -de -af -JG +aD +aD +aD +bb +aD +bb +aD +aD +dE +dw aw aw aw @@ -14682,8 +14870,8 @@ be be be bv -bK -cn +cO +cO bv bv ao @@ -14713,18 +14901,18 @@ aw aw aw aw -de -de -de -de -dk -de -dk -de -de -de -de -JG +aD +aD +aD +aD +bb +aD +bb +aD +aD +aD +aD +dw aw aw aw @@ -14785,18 +14973,18 @@ aw aw aw aw -de -de -de -de -dk -de -dk -de -de -de -de -JG +aD +aD +aD +aD +bb +aD +bb +aD +aD +aD +aD +dw aw aw aw @@ -14854,20 +15042,20 @@ aw aw aw aw -bc -df -df -df -df -dl -df -dl -df -df -df -df -dE -JG +av +aT +aT +aT +aT +db +aT +db +aT +aT +aT +aT +dQ +dw aw aw aw @@ -14926,90 +15114,90 @@ aw aw aw aw -bc -df -df -df -df -dl -df -dl -df -df -df -df -dE -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aa -ac -be -be -be -be -be -be -bv -cw -cw -bv -be -be -be -be -be -be -ac -aa -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw +av +aT +aT +aT +aT db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +aT +db +aT +aT +aT +aT +dQ +dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aa +ac +be +be +be +be +be +be +bv +cw +cw +bv +be +be +be +be +be +be +ac +aa +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15068,20 +15256,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15138,20 +15326,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -15210,20 +15398,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -15250,7 +15438,7 @@ be be be bv -cw +dY cw bv be @@ -15280,20 +15468,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15352,20 +15540,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15422,20 +15610,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -15494,20 +15682,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -15564,20 +15752,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15636,20 +15824,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15676,8 +15864,8 @@ aa ac be bv -cw -cw +dW +dX bv Jb ac @@ -15706,20 +15894,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -15778,20 +15966,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -15818,8 +16006,8 @@ aw aa ac bv -cw -cw +dP +ea bv ac aa @@ -15848,20 +16036,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15920,20 +16108,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -15960,8 +16148,8 @@ aw aw aa ac -cc -cY +eb +ec ac aa aw @@ -15990,20 +16178,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16062,20 +16250,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16132,20 +16320,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -16204,20 +16392,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -16274,20 +16462,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16346,20 +16534,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16416,20 +16604,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -16488,20 +16676,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -16558,20 +16746,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16630,20 +16818,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16700,20 +16888,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -16772,20 +16960,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -16842,20 +17030,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16914,20 +17102,20 @@ aw aw aw aw +ay +aV +aV +aV +aV dc -dh -dh -dh -dh -dm -de -dA -dC -dC -dC -dC -dG -JG +aD +du +dB +dB +dB +dB +dS +dw aw aw aw @@ -16984,20 +17172,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -17056,20 +17244,20 @@ aw aw aw aw -db -dg -dg -dg -dg -dk -de -dk -dg -dg -dg -dg -dF -JG +ax +aU +aU +aU +aU +bb +aD +bb +aU +aU +aU +aU +dR +dw aw aw aw @@ -17126,20 +17314,20 @@ aw aw aw aw +aB +aY +aY +aY +aY dd -di -di -di -di -dn -dq -dB -dD -dD -dD -dD -dH -JG +aS +dv +dC +dC +dC +dC +dT +dw aw aw aw @@ -17198,20 +17386,20 @@ aw aw aw aw +aB +aY +aY +aY +aY dd -di -di -di -di -dn -dq -dB -dD -dD -dD -dD -dH -JG +aS +dv +dC +dC +dC +dC +dT +dw aw aw aw @@ -17269,18 +17457,18 @@ aw aw aw aw -de -de -de -de -dk -de -de -de -de -de -de -JG +aD +aD +aD +aD +bb +aD +aD +aD +aD +aD +aD +dw aw aw aw @@ -17341,87 +17529,87 @@ aw aw aw aw -de -de -de -de -dk -de -de -de -de -de -de -JG -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -aw -de -de -ub -do +aD +aD +aD +aD +bb +aD +aD +aD +aD +aD +aD dw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aw +aD +aD +dU de -de -de -de -JG +dg +aD +aD +aD +aD +dw aw aw aw @@ -17484,16 +17672,16 @@ aw aw aw aw +aD +aD +aD de -de -de -do +dg +aD +aD +aD +aD dw -de -de -de -de -JG aw aw aw @@ -17555,14 +17743,14 @@ aw aw aw aw -de -de -dp -dx -de -de -de -JG +aD +aD +cx +df +aD +aD +aD +dw aw aw aw @@ -17627,14 +17815,14 @@ aw aw aw aw -de -de -dp -dx -de -de -de -JG +aD +aD +cx +df +aD +aD +aD +dw aw aw aw @@ -17698,12 +17886,12 @@ aw aw aw aw -de -de -de -de -de -JG +aD +aD +aD +aD +aD +dw aw aw aw @@ -17770,12 +17958,12 @@ aw aw aw aw -de -de -de -de -de -JG +aD +aD +aD +aD +aD +dw aw aw aw @@ -17841,10 +18029,10 @@ aw aw aw aw -dq -dq -dq -JG +aS +aS +aS +dw aw aw aw @@ -17913,10 +18101,10 @@ aw aw aw aw -dq -dq -dq -JG +aS +aS +aS +dw aw aw aw diff --git a/maps/tether/submaps/aerostat/submaps/CaveS.dmm b/maps/tether/submaps/aerostat/submaps/CaveS.dmm index 520021efe9..db8ec8a9b3 100644 --- a/maps/tether/submaps/aerostat/submaps/CaveS.dmm +++ b/maps/tether/submaps/aerostat/submaps/CaveS.dmm @@ -12,11 +12,6 @@ "d" = ( /turf/simulated/mineral/ignore_mapgen/virgo2, /area/submap/virgo2/CaveS) -"e" = ( -/obj/item/ammo_casing/a45, -/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, -/turf/template_noop, -/area/submap/virgo2/CaveS) "f" = ( /obj/tether_away_spawner/aerostat_surface, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, @@ -30,10 +25,6 @@ /obj/item/ammo_casing/a45, /turf/template_noop, /area/submap/virgo2/CaveS) -"i" = ( -/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, -/turf/template_noop, -/area/submap/virgo2/CaveS) "j" = ( /obj/item/clothing/accessory/storage/webbing, /obj/item/weapon/material/knife/tacknife/combatknife, @@ -47,10 +38,6 @@ /obj/effect/decal/cleanable/cobweb, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, /area/submap/virgo2/CaveS) -"m" = ( -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/submap/virgo2/CaveS) "n" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, @@ -59,11 +46,6 @@ /obj/effect/mine, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, /area/submap/virgo2/CaveS) -"q" = ( -/obj/effect/decal/cleanable/cobweb2, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/submap/virgo2/CaveS) "r" = ( /turf/simulated/mineral/floor/ignore_mapgen/virgo2, /area/submap/virgo2/CaveS) @@ -133,11 +115,6 @@ /obj/item/weapon/material/star, /turf/simulated/floor, /area/submap/virgo2/CaveS) -"D" = ( -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/submap/virgo2/CaveS) "E" = ( /obj/structure/cable{ d1 = 1; @@ -685,7 +662,7 @@ d d g r -m +r d r r @@ -699,7 +676,7 @@ d r r d -m +r d d d @@ -861,7 +838,7 @@ r r d d -m +r r r r @@ -911,8 +888,8 @@ d d d g -D -r +g +f d d d @@ -985,7 +962,7 @@ d l r r -m +r d d r @@ -1016,7 +993,7 @@ b b b b -i +b b d d @@ -1140,7 +1117,7 @@ b c b b -r +f r g d @@ -1180,7 +1157,7 @@ b b b c -e +c d g r @@ -1292,7 +1269,7 @@ u u r r -m +r d d d @@ -1320,7 +1297,7 @@ d d d d -q +n r r d @@ -1333,7 +1310,7 @@ y B E u -r +f r d d @@ -1366,7 +1343,7 @@ d r r d -m +r r u u @@ -1539,7 +1516,7 @@ d r r r -r +f r d d diff --git a/maps/tether/submaps/aerostat/submaps/DJOutpost1.dmm b/maps/tether/submaps/aerostat/submaps/DJOutpost1.dmm index 8a72f7e8ff..e8524d220a 100644 --- a/maps/tether/submaps/aerostat/submaps/DJOutpost1.dmm +++ b/maps/tether/submaps/aerostat/submaps/DJOutpost1.dmm @@ -4,32 +4,32 @@ /area/template_noop) "b" = ( /turf/simulated/wall/virgo2, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "c" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard, /obj/item/weapon/material/shard{ - icon_state = "shardmedium" + icon_state = "shardmedium" }, /obj/item/stack/rods, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "d" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "e" = ( /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "f" = ( /obj/machinery/telecomms/relay/preset/ruskie, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "g" = ( /obj/structure/loot_pile/maint/technical, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "h" = ( /obj/structure/sign/goldenplaque{ desc = "An award given to Sif Free Radio for media excellency. It looks fake."; @@ -37,11 +37,7 @@ pixel_y = 30 }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) -"i" = ( -/mob/living/simple_mob/animal/giant_spider/frost, -/turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "j" = ( /obj/effect/decal/remains, /obj/effect/decal/cleanable/blood, @@ -49,19 +45,19 @@ /obj/item/weapon/material/knife/tacknife/combatknife, /obj/random_multi/single_item/sfr_headset, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "k" = ( /obj/machinery/door/airlock/glass, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "l" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio/intercom{ - icon_state = "intercom"; + icon_state = "intercom"; dir = 8 }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "m" = ( /obj/machinery/computer/message_monitor, /obj/item/weapon/paper/monitorkey, @@ -71,7 +67,7 @@ icon_state = "2-4" }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "n" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -82,7 +78,7 @@ pixel_x = 0 }, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "o" = ( /obj/effect/overlay/snow/floor, /obj/structure/cable/yellow{ @@ -93,29 +89,25 @@ /turf/simulated/floor{ outdoors = 1 }, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "p" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "q" = ( /obj/effect/decal/remains, /obj/item/clothing/under/dress/blacktango, /obj/effect/decal/cleanable/blood, /obj/item/device/universal_translator/ear, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) -"r" = ( -/obj/random/mob/spider/mutant, -/turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "s" = ( /obj/structure/bed/chair/office/dark{ - icon_state = "officechair_dark"; + icon_state = "officechair_dark"; dir = 8 }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "t" = ( /obj/machinery/light{ dir = 4; @@ -131,7 +123,7 @@ icon_state = "1-2" }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "u" = ( /obj/effect/overlay/snow/floor, /obj/structure/cable/yellow{ @@ -146,19 +138,19 @@ /turf/simulated/floor{ outdoors = 1 }, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "v" = ( /obj/structure/table/woodentable, /obj/item/trash/candle, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "w" = ( /obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; + icon_state = "wooden_chair"; dir = 8 }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "x" = ( /obj/structure/bookcase, /obj/item/weapon/book/codex/lore/vir, @@ -166,17 +158,17 @@ /obj/item/weapon/book/manual/engineering_construction, /obj/item/weapon/storage/bible, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "y" = ( /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "z" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio/phone, /obj/random_multi/single_item/sfr_headset, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "A" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio/intercom/syndicate{ @@ -185,7 +177,7 @@ }, /obj/item/device/multitool, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "B" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio, @@ -202,7 +194,7 @@ }, /obj/structure/cable/yellow, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "C" = ( /obj/effect/overlay/snow/floor, /obj/machinery/power/port_gen/pacman, @@ -210,16 +202,16 @@ /turf/simulated/floor{ outdoors = 1 }, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "D" = ( /obj/machinery/door/airlock/glass, /obj/item/device/gps/internal/poi, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "E" = ( /obj/machinery/biogenerator, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "F" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/snacks/unajerky, @@ -229,7 +221,7 @@ }, /obj/random_multi/single_item/sfr_headset, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "G" = ( /obj/machinery/light{ dir = 4; @@ -238,18 +230,18 @@ }, /obj/machinery/seed_extractor, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "H" = ( /obj/structure/bed/chair/wood{ - icon_state = "wooden_chair"; + icon_state = "wooden_chair"; dir = 1 }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "I" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "J" = ( /obj/structure/table/woodentable, /obj/item/weapon/material/knife/machete/hatchet, @@ -258,22 +250,22 @@ /obj/item/device/analyzer/plant_analyzer, /obj/random_multi/single_item/sfr_headset, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "K" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "L" = ( /obj/structure/table/rack, /obj/item/clothing/shoes/boots/winter, /obj/item/clothing/suit/storage/hooded/wintercoat, /obj/random_multi/single_item/sfr_headset, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "M" = ( /obj/machinery/light/flamp, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "N" = ( /obj/structure/sink{ dir = 4; @@ -281,18 +273,18 @@ pixel_x = 15 }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "O" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/clown, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "P" = ( /obj/structure/table/rack, /obj/item/ammo_magazine/clip/c762/hunter, /obj/item/weapon/gun/projectile/shotgun/pump/rifle, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "Q" = ( /obj/structure/table/rack, /obj/item/device/flashlight/lantern, @@ -300,11 +292,15 @@ gps_tag = "Sif Free Radio" }, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "R" = ( /obj/machinery/portable_atmospherics/hydroponics, /turf/simulated/floor/wood, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) +"Z" = ( +/obj/tether_away_spawner/aerostat_inside, +/turf/simulated/floor/wood, +/area/submap/virgo2/DJOutpost1) (1,1,1) = {" a @@ -362,11 +358,11 @@ a b b e -i e +Z w b -r +e e e K @@ -417,7 +413,7 @@ k b b b -e +Z e b L @@ -437,8 +433,8 @@ D e e I -r e +Z I a "} @@ -447,8 +443,8 @@ a b g e +Z e -r e b e diff --git a/maps/tether/submaps/aerostat/submaps/DJOutpost2.dmm b/maps/tether/submaps/aerostat/submaps/DJOutpost2.dmm index c0be156121..96b1221ee1 100644 --- a/maps/tether/submaps/aerostat/submaps/DJOutpost2.dmm +++ b/maps/tether/submaps/aerostat/submaps/DJOutpost2.dmm @@ -4,7 +4,7 @@ /area/template_noop) "b" = ( /turf/simulated/wall/virgo2, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "c" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard, @@ -13,19 +13,19 @@ }, /obj/item/stack/rods, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "d" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "e" = ( /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "f" = ( /obj/structure/loot_pile/maint/technical, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "g" = ( /obj/structure/sign/goldenplaque{ desc = "An award given to Sif Free Radio for media excellency. It looks fake."; @@ -33,7 +33,7 @@ pixel_y = 30 }, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "h" = ( /obj/structure/cable/yellow{ d1 = 2; @@ -42,15 +42,15 @@ }, /obj/structure/loot_pile/maint/technical, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "i" = ( /obj/structure/loot_pile/surface/bones, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "k" = ( /obj/structure/girder, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "l" = ( /obj/structure/bed/chair/office/dark{ dir = 1 @@ -61,53 +61,53 @@ icon_state = "1-2" }, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "m" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio/phone, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "n" = ( /obj/item/stack/rods, /turf/template_noop, /area/template_noop) "o" = ( /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "p" = ( /obj/structure/loot_pile/surface/bones, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "q" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio, /obj/structure/cable/yellow, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "r" = ( /turf/simulated/floor/outdoors/rocks, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "s" = ( /obj/effect/overlay/snow/floor, /turf/simulated/floor{ outdoors = 1 }, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "u" = ( /obj/effect/decal/cleanable/ash, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "w" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "shardmedium" }, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "x" = ( /obj/structure/girder, /turf/simulated/floor/outdoors/rocks, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "y" = ( /obj/structure/table/steel_reinforced, /obj/item/device/radio/intercom/syndicate{ @@ -115,15 +115,15 @@ name = "station intercom (General)" }, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "A" = ( /obj/item/stack/rods, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "B" = ( /obj/structure/door_assembly/door_assembly_ext, /turf/simulated/floor/outdoors/rocks, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "C" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ @@ -135,7 +135,7 @@ icon_state = "4-8" }, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "D" = ( /obj/item/weapon/material/shard{ icon_state = "shardmedium" @@ -145,14 +145,14 @@ "F" = ( /obj/item/device/transfer_valve, /turf/simulated/floor/outdoors/rocks, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "G" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ icon_state = "medium" }, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "H" = ( /obj/item/weapon/material/shard{ icon_state = "medium" @@ -162,7 +162,7 @@ "I" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "J" = ( /obj/item/weapon/material/shard, /turf/template_noop, @@ -174,11 +174,11 @@ pixel_x = 15 }, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "L" = ( /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor/outdoors/rocks, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "M" = ( /obj/structure/grille/broken, /obj/item/weapon/material/shard{ @@ -186,24 +186,24 @@ }, /obj/item/stack/rods, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "N" = ( /obj/structure/grille/broken, /obj/item/stack/rods, /turf/simulated/floor, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "O" = ( /obj/structure/lattice, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "P" = ( /obj/effect/decal/cleanable/ash, /turf/simulated/floor/wood/broken, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) "S" = ( /obj/structure/girder, /turf/simulated/floor/outdoors/dirt, -/area/submap/DJOutpost1) +/area/submap/virgo2/DJOutpost1) (1,1,1) = {" a diff --git a/maps/tether/submaps/aerostat/submaps/DecoupledEngine.dmm b/maps/tether/submaps/aerostat/submaps/DecoupledEngine.dmm index 42bcf0455b..853351c02e 100644 --- a/maps/tether/submaps/aerostat/submaps/DecoupledEngine.dmm +++ b/maps/tether/submaps/aerostat/submaps/DecoupledEngine.dmm @@ -50,10 +50,7 @@ /turf/template_noop, /area/submap/virgo2/DecoupledEngine) "an" = ( -/turf/simulated/floor/water{ - color = "#ddaa77"; - name = "shallow water(?)" - }, +/turf/simulated/floor/lava, /area/submap/virgo2/DecoupledEngine) "ao" = ( /obj/structure/lattice, @@ -222,10 +219,7 @@ icon_state = "propulsion_r"; dir = 4 }, -/turf/simulated/floor/water{ - color = "#ddaa77"; - name = "shallow water(?)" - }, +/turf/simulated/floor/lava, /area/submap/virgo2/DecoupledEngine) "aP" = ( /obj/effect/floor_decal/rust, @@ -302,10 +296,7 @@ /obj/structure/shuttle/engine/propulsion{ dir = 4 }, -/turf/simulated/floor/water{ - color = "#ddaa77"; - name = "shallow water(?)" - }, +/turf/simulated/floor/lava, /area/submap/virgo2/DecoupledEngine) "aZ" = ( /obj/item/stack/material/steel, diff --git a/maps/tether/submaps/aerostat/submaps/DoomP.dmm b/maps/tether/submaps/aerostat/submaps/DoomP.dmm index e3509b9050..f3805539d0 100644 --- a/maps/tether/submaps/aerostat/submaps/DoomP.dmm +++ b/maps/tether/submaps/aerostat/submaps/DoomP.dmm @@ -4,114 +4,96 @@ /area/template_noop) "ab" = ( /turf/template_noop, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "ac" = ( /turf/simulated/floor/outdoors/rocks, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "ad" = ( -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) "ae" = ( /mob/living/simple_mob/mechanical/viscerator, -/turf/template_noop, -/area/submap/DoomP) +/turf/simulated/floor/outdoors/rocks, +/area/submap/virgo2/DoomP) "af" = ( -/turf/simulated/floor/water, -/area/submap/DoomP) -"ag" = ( -/obj/structure/flora/tree/sif, -/turf/template_noop, -/area/submap/DoomP) +/turf/simulated/floor/lava, +/area/submap/virgo2/DoomP) "ah" = ( /obj/random/landmine, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) "ai" = ( /mob/living/simple_mob/mechanical/viscerator, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) -"aj" = ( -/obj/effect/decal/cleanable/blood, -/obj/random/landmine, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) -"ak" = ( -/turf/simulated/floor/water/deep, -/area/submap/DoomP) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) "al" = ( -/obj/effect/decal/cleanable/blood, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) +/obj/effect/decal/remains/mouse, +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) "am" = ( /obj/random/landmine, /turf/simulated/floor/outdoors/rocks, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "an" = ( -/obj/effect/decal/remains/mouse, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) -"ao" = ( /obj/effect/decal/remains/deer, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) -"ap" = ( +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) +"ao" = ( /obj/effect/decal/remains/mouse, /obj/random/landmine, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) "aq" = ( -/obj/structure/flora/tree/sif, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) -"ar" = ( /obj/machinery/light/small, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) "as" = ( -/obj/machinery/porta_turret/poi, +/obj/machinery/porta_turret/poi{ + faction = "syndicate" + }, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "at" = ( /turf/simulated/wall/r_wall, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "au" = ( /obj/structure/sign/warning/secure_area, /turf/simulated/wall/r_wall, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "av" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aw" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "ax" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "ay" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/borderfloor{ dir = 1 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "az" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /mob/living/simple_mob/humanoid/merc/ranged/space, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aB" = ( /obj/machinery/light/small{ dir = 1 @@ -120,20 +102,20 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aC" = ( /obj/machinery/vending/cigarette, /obj/effect/floor_decal/borderfloor{ dir = 5 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aD" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aE" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/green{ @@ -141,7 +123,7 @@ icon_state = "0-4" }, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aF" = ( /obj/machinery/power/smes/buildable/point_of_interest, /obj/structure/cable/green{ @@ -154,7 +136,7 @@ icon_state = "4-8" }, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aG" = ( /obj/machinery/power/apc{ dir = 1; @@ -167,7 +149,7 @@ icon_state = "0-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aH" = ( /obj/structure/cable{ icon_state = "0-2"; @@ -175,27 +157,27 @@ }, /obj/machinery/power/port_gen/pacman, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aI" = ( /obj/structure/table/standard, /obj/random/toolbox, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aJ" = ( /obj/structure/table/standard, /obj/item/stack/material/phoron{ amount = 25 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aK" = ( /obj/structure/closet/secure_closet/engineering_electrical, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aL" = ( /obj/structure/lattice, /turf/simulated/floor/outdoors/rocks, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aM" = ( /obj/structure/bed/chair{ dir = 4 @@ -204,26 +186,26 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aN" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aO" = ( /obj/structure/table/standard, /obj/item/pizzabox, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aP" = ( /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aQ" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/borderfloor{ dir = 4 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aR" = ( /obj/machinery/power/terminal{ icon_state = "term"; @@ -234,7 +216,7 @@ d2 = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aS" = ( /obj/machinery/power/terminal{ icon_state = "term"; @@ -251,7 +233,7 @@ pixel_x = 0 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aT" = ( /obj/structure/cable{ d1 = 4; @@ -261,7 +243,7 @@ }, /mob/living/simple_mob/humanoid/merc/melee/sword/space, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aU" = ( /obj/structure/cable{ d1 = 1; @@ -269,126 +251,126 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aV" = ( /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aW" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aX" = ( -/obj/structure/lattice, -/turf/simulated/floor/water, -/area/submap/DoomP) -"aY" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, +/mob/living/simple_mob/humanoid/merc/melee/sword/space, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "aZ" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "ba" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bb" = ( /obj/machinery/door/airlock/engineering, /turf/simulated/floor/tiled/techfloor/grid, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bc" = ( /obj/structure/sign/electricshock, /turf/simulated/wall/r_wall, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bd" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "be" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bf" = ( /obj/machinery/light/small, /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bg" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, /mob/living/simple_mob/humanoid/merc/ranged/space, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bh" = ( /obj/machinery/door/airlock/hatch, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bi" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bj" = ( /obj/machinery/door/airlock/highsecurity, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bk" = ( /obj/machinery/door/airlock, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bl" = ( /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bm" = ( -/obj/structure/table/standard, -/turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/mob/living/simple_mob/humanoid/merc/ranged/space, +/turf/simulated/floor/tiled, +/area/submap/virgo2/DoomP) "bn" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syndie_kit/spy, +/obj/item/weapon/card/id/syndicate, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bo" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/smokes, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bp" = ( /obj/structure/table/rack, /obj/item/weapon/storage/box/handcuffs, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bq" = ( /obj/structure/table/rack, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, +/obj/item/weapon/cell/device/weapon, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "br" = ( /obj/structure/table/rack, /obj/random/energy, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bs" = ( /obj/structure/table/rack, /obj/item/weapon/gun/projectile/contender, /obj/item/ammo_magazine/s357, /obj/item/ammo_magazine/s357, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bt" = ( /obj/structure/bed, /obj/item/weapon/bedsheet, @@ -397,14 +379,14 @@ dir = 8 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bu" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lime{ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bv" = ( /obj/structure/bed, /obj/item/weapon/bedsheet, @@ -412,7 +394,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bw" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, @@ -420,7 +402,7 @@ dir = 5 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bx" = ( /obj/structure/table/standard, /obj/structure/bedsheetbin, @@ -428,16 +410,16 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "by" = ( /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bz" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bA" = ( /obj/structure/sink{ dir = 4; @@ -449,24 +431,23 @@ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bB" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bC" = ( -/obj/machinery/light/small{ - dir = 8 +/obj/machinery/syndicate_beacon/virgo{ + charges = 2 }, -/obj/effect/floor_decal/corner/lime/full, -/turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/turf/simulated/floor/tiled/techfloor, +/area/submap/virgo2/DoomP) "bD" = ( /obj/effect/floor_decal/corner/lime{ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bE" = ( /obj/machinery/light/small{ dir = 4; @@ -476,20 +457,20 @@ dir = 10 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bF" = ( /obj/machinery/shower{ dir = 1 }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bG" = ( /obj/structure/toilet{ dir = 1 }, /turf/simulated/floor/tiled/white, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bH" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -501,7 +482,7 @@ dir = 8 }, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bI" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -510,7 +491,7 @@ /obj/structure/window/reinforced, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bJ" = ( /obj/structure/grille, /obj/structure/window/reinforced{ @@ -522,15 +503,47 @@ }, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/plating, -/area/submap/DoomP) +/area/submap/virgo2/DoomP) "bK" = ( -/obj/structure/lattice, -/turf/simulated/floor/outdoors/grass/sif/forest, -/area/submap/DoomP) +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/full, +/mob/living/simple_mob/humanoid/merc/ranged/space, +/turf/simulated/floor/tiled/white, +/area/submap/virgo2/DoomP) "bL" = ( -/mob/living/simple_mob/humanoid/merc/melee/sword/space, -/turf/simulated/floor/tiled/techfloor, -/area/submap/DoomP) +/obj/effect/floor_decal/corner/lime{ + dir = 10 + }, +/mob/living/simple_mob/humanoid/merc/ranged/space, +/turf/simulated/floor/tiled/white, +/area/submap/virgo2/DoomP) +"bM" = ( +/obj/structure/lattice, +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) +"bN" = ( +/obj/machinery/crystal/lava, +/turf/simulated/floor/outdoors/rocks, +/area/submap/virgo2/DoomP) +"bO" = ( +/obj/machinery/crystal/lava, +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) +"mi" = ( +/obj/structure/barricade, +/turf/simulated/floor/outdoors/rocks, +/area/submap/virgo2/DoomP) +"El" = ( +/obj/structure/barricade, +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/DoomP) +"Hh" = ( +/obj/effect/floor_decal/industrial/warning, +/mob/living/simple_mob/mechanical/mecha/combat/gygax/dark/advanced, +/turf/simulated/floor/plating, +/area/submap/virgo2/DoomP) (1,1,1) = {" aa @@ -578,55 +591,10 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa "} (2,1,1) = {" aa ab -ae -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ab ab ab @@ -654,6 +622,21 @@ ab ab ab ab +bN +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac aa "} (3,1,1) = {" @@ -661,48 +644,19 @@ aa ab ab ab +ab +ab +ac +ac +ac +ac +ac ac ac ac ac ac ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab ab ac ac @@ -712,58 +666,31 @@ ac ac ac ab -ab ac ac ac +ac +af +af +af +af +af +ac +ac +af +ac +af +af +af +ac +ac aa "} (4,1,1) = {" aa -ab -ab -ac -ac -af -af -af -af -ac -ac -ac +ae ac ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac ac ac ac @@ -772,81 +699,99 @@ af af af af -ac -ac +af +af +af +af ac ac af +af +af +af +af +af ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ac +ab aa "} (5,1,1) = {" aa -ab -ab -ac -af -af -af -af -af -af -af -af ac ac ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac ab ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ag -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac aa "} (6,1,1) = {" aa ab -ab ac +bN +af +af +af +af +af +af +af af af af @@ -857,14 +802,6 @@ af af af af -ac -ac -ac -ac -ae -ac -ac -ac af af af @@ -872,21 +809,6 @@ af af af af -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac af af af @@ -900,14 +822,14 @@ af af af ac -ac +ab +ab ab aa "} (7,1,1) = {" aa ab -ab ac af af @@ -921,10 +843,6 @@ af af af af -ac -ac -ac -ac af af af @@ -935,16 +853,6 @@ af af af af -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac af af af @@ -961,7 +869,7 @@ af af af ac -ac +ab ab ab aa @@ -969,41 +877,6 @@ aa (8,1,1) = {" aa ab -ab -ac -af -af -af -ak -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ab -ac -ac -ac ac af af @@ -1021,7 +894,27 @@ af af af af -ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af ac ab ab @@ -1031,13 +924,20 @@ aa (9,1,1) = {" aa ab -ab ac af af af -ak -ak +af +af +af +af +af +af +af +af +af +af af af af @@ -1063,28 +963,6 @@ af af af ac -ac -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ab ab ab ab @@ -1093,25 +971,10 @@ aa (10,1,1) = {" aa ab -ab ac ac af af -ak -ak -ak -af -af -af -af -af -af -af -af -af -ak -ak af af af @@ -1137,16 +1000,16 @@ af af af af -ak -ak +af +af +af +af +af af af af af ac -ac -ab -ab ab ab ab @@ -1156,25 +1019,9 @@ aa aa ab ab -ab ac af af -ak -ak -ak -ak -ak -af -af -af -af -af -af -af -ak -ak -ak af af af @@ -1194,12 +1041,15 @@ af af af af +as +af +af +as +af af af af af -ak -ak af af af @@ -1210,585 +1060,20 @@ ab ab ab ab -ae -ab aa "} (12,1,1) = {" aa ab ab -ab -ac -af -af -ak -ak -ak -ak -ak -ak -af -af -af -af -af -ak -ak -ak -ak -ak -ak -af -af -af -af -af -af -ak -ak -ak -ak -af -af -af -ak -ak -ak -af -af -ak -ak -af -ak -ak -ak -ak -af -af -ac -ac -ab -ab -ab -ab -ab -ab -aa -"} -(13,1,1) = {" -aa -ab -ab -ab -ac -af -af -ak -ak -ak -ak -ak -ak -ak -af -ak -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(14,1,1) = {" -aa -ab -ab -ab ac af af af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak af af -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(15,1,1) = {" -aa -ab -ab -ab -ac -ac -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(16,1,1) = {" -aa -ab -ab -ab -ab -ac -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(17,1,1) = {" -aa -ab -ab -ab -ab -ac -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -af -ak -ak -ak -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -ak -ak -af -ac -ab -ab -ab -ab -ab -ab -ab -aa -"} -(18,1,1) = {" -aa -ab -ab -ag -ae -ac -af -af -af -af -af -ak -ak -ak -ak -ak -ak -af -af -af -ak -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -ak -ak -af -ac -ab -ab -ab -ag -ab -ab -ac -aa -"} -(19,1,1) = {" -aa -ab -ab -ab -ab -ac -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -af -af -af -ak -af -af -af -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af -ac -ac -ab -ab -ab -ab -ac -ac -aa -"} -(20,1,1) = {" -aa -ab -ab -ab -ac -ac -af -af -af -af -ak -ak -ak -ak -ak -ak -af -af -af -af -af -af -af -af -af -af -af -af -af -af -as -af -af -as -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af -af -ac -ab -ac -ac -ac -ac -ac -aa -"} -(21,1,1) = {" -aa -ab -ab -ab -ac -af -af -af -af -af -ak -ak -ak -ak -ak -ak af af af @@ -1806,19 +1091,11 @@ ac aL af af -aX +bM +af +af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak af af af @@ -1826,92 +1103,70 @@ af af af ac -ac -ac -af -af -af -ac +ab +ab +ab +ab aa "} -(22,1,1) = {" +(13,1,1) = {" aa ab ab +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ac +ad +ad +bO +at +at +at +at +at +at +at +at +at +af +af +af +af +af +af +af +ac +ab +ab +ab ab -ac -af -af -af -af -af -ak -ak -ak -ak -ak -af -af -af -af -af -af -af -af -ac -ac -ad -ad -ad -at -at -at -at -at -at -at -at -at -af -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af -af -af -af -af -af -af -af -ac aa "} -(23,1,1) = {" +(14,1,1) = {" aa ab ab ac -ac af af af -ak -ak -ak -ak -ak -ak -ak +af +af +af af af af @@ -1928,27 +1183,13 @@ ad at ax aM -aY +bm bd bj bl bl at af -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af af af af @@ -1956,9 +1197,13 @@ af af af ac +ab +ab +ab +ab aa "} -(24,1,1) = {" +(15,1,1) = {" aa ab ab @@ -1967,12 +1212,7 @@ af af af af -ak -ak -ak -ak -ak -ak +af af af af @@ -1993,34 +1233,24 @@ aN aN be at -bm +bn bl at af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af af af af af af ac +ab +ab +ab +ab aa "} -(25,1,1) = {" +(16,1,1) = {" aa ab ab @@ -2029,11 +1259,6 @@ af af af af -ak -ak -ak -ak -ak af af af @@ -2055,34 +1280,24 @@ aO aN be at -bn +bo bB at af af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af af af af ac +ab +ab +ab +ae aa "} -(26,1,1) = {" +(17,1,1) = {" aa ab ab @@ -2091,11 +1306,6 @@ af af af af -ak -ak -ak -ak -ak af af af @@ -2117,7 +1327,7 @@ aN aN bf at -bo +bp bl at aL @@ -2126,25 +1336,15 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af af ac ac +ab +ac +ac aa "} -(27,1,1) = {" +(18,1,1) = {" aa ab ab @@ -2152,13 +1352,8 @@ ac af af af -ak -ak -ak -ak -ak -ak -ak +af +af af af af @@ -2179,8 +1374,8 @@ aN aN be at -bp -bL +bq +bl at ac af @@ -2188,47 +1383,32 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af af af +bN +ac +ac ac -ab aa "} -(28,1,1) = {" +(19,1,1) = {" aa ab -ab +ac ac ac af af -ak -ak -ak -ak -ak -ak -ak -ak +af +af +af af af af af ac ad -aq +ad ad ad ad @@ -2241,7 +1421,7 @@ aN aN be at -bq +br bB at ac @@ -2250,52 +1430,37 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak +af af af af af ac -ab aa "} -(29,1,1) = {" +(20,1,1) = {" aa ab -ab +ae ac ac af af -ak -ak -ak -ak -ak -ak -ak -ak af af af af -ac +af +af +af +bN ad ad ad ad ad ad -ar +aq at at az @@ -2303,7 +1468,7 @@ aP aP bg at -br +bs bl at ad @@ -2312,40 +1477,25 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak +af af af af af ac -ab aa "} -(30,1,1) = {" +(21,1,1) = {" aa ab -ab ac ac +bN +af +af +af af af -ak -ak -ak -ak -ak -ak -ak -ak af af af @@ -2365,7 +1515,7 @@ aQ aZ aP at -bs +bC bl at ad @@ -2375,39 +1525,24 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -ak -af af af af af ac -ab aa "} -(31,1,1) = {" +(22,1,1) = {" aa ab -ab -ab +ac +ac ac af af -ak -ak -ak -ak -ak -ak -ak -ak +af +af +af af af af @@ -2415,7 +1550,7 @@ af ac ad ad -aq +ad ad ad ad @@ -2438,38 +1573,23 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af af af af ac -ac -ab aa "} -(32,1,1) = {" +(23,1,1) = {" aa ab -ab -ab +ac +ac ac af af -ak -ak -ak -ak -ak -ak -ak -ak +af +af +af af af af @@ -2482,7 +1602,7 @@ ad ad ad ad -av +Hh aw aD aP @@ -2490,7 +1610,7 @@ ba aP at bt -bC +bK at ad ac @@ -2500,23 +1620,13 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af af af af ac -ab -ab aa "} -(33,1,1) = {" +(24,1,1) = {" aa ab ab @@ -2524,14 +1634,9 @@ ac af af af -ak -ak -ak -ak -ak -ak -ak -ak +af +af +af af af af @@ -2554,7 +1659,7 @@ at bu bD at -bK +bM as ac ac @@ -2562,38 +1667,23 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af -af af af ac -ab -ab +ac aa "} -(34,1,1) = {" +(25,1,1) = {" aa ab -ab +ac ac af af af af -ak -ak -ak -ak -ak -ak -ak +af +af af af af @@ -2624,50 +1714,35 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af -af af af ac ab -ab aa "} -(35,1,1) = {" +(26,1,1) = {" aa ab -ab ac af af af af -ak -ak -ak -ak -ak -ak -ak af af af af af -ac -ad -ah +af +af +af +mi +El +El +El ad ad -ad -ar +aq at at aF @@ -2676,7 +1751,7 @@ at aP at bw -bD +bL bI ad ad @@ -2686,38 +1761,23 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af af af ac -ac -ab ab aa "} -(36,1,1) = {" +(27,1,1) = {" aa ab ac -ac af af af af -ak af -ak -ak -ak af -ak +af af af af @@ -2726,7 +1786,7 @@ ac ac ad ad -ad +El ad ad ad @@ -2748,25 +1808,15 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af af af ac ab -ab -ab aa "} -(37,1,1) = {" +(28,1,1) = {" aa -ac +ab ac af af @@ -2775,20 +1825,15 @@ af af af af -ak -af -af -af -af af af af ac am ad +ah ad -ad -ad +El ad ad ad @@ -2810,24 +1855,16 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af af af ac -ac -ab ab aa "} -(38,1,1) = {" +(29,1,1) = {" aa +ab +ab ac af af @@ -2837,20 +1874,13 @@ af af af af -ak -af -af -af -af -af -af ac ac ad ad ad ad -ac +mi ad ad ad @@ -2872,24 +1902,16 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -af -af af ac ac ab -ab aa "} -(39,1,1) = {" +(30,1,1) = {" aa +ab +ab ac af af @@ -2898,21 +1920,14 @@ af af af af -af -ak -af -af -af -af -af ac ac ad -ad +ai ac ac am -ac +mi ac ad ad @@ -2921,12 +1936,12 @@ at aH aU bb -aP +aX at bk at at -bK +bM as ac ac @@ -2934,24 +1949,16 @@ af af af af -ak -ak -ak -ak -ak -ak -ak -ak af -af -ac -ac +ae ab ab aa "} -(40,1,1) = {" +(31,1,1) = {" aa +ab +ab ac af af @@ -2959,18 +1966,11 @@ af af af af -af -af -af -af -af -af -af ac ac ah ad -ac +am ac af af @@ -2996,33 +1996,18 @@ af af af af -ak -ak -ak -ak -ak -ak -ak af -af -af -ac ac ab ab aa "} -(41,1,1) = {" +(32,1,1) = {" aa +ab +ab ac -af -af -af -af -af -af -af -ac +bN af af af @@ -3058,32 +2043,17 @@ af af af af -ak -ak -ak -ak -ak -ak -af -af -af -af af ac ab ab aa "} -(42,1,1) = {" +(33,1,1) = {" aa -ac -af -af -af -af -af -ac -ac +ab +ab +ab ac ac af @@ -3101,7 +2071,7 @@ af af af af -ac +bN ac at aK @@ -3120,1093 +2090,531 @@ af af af af -ak -ak -ak -ak -ak -ak -ak +af +ac +ab +ab +aa +"} +(34,1,1) = {" +aa +ab +ab +ab +al +ac +ac +am +ac +ac +ad +ad +ad +ac +af +af +af +af +af +af +af +af +af +at +at +at +at +at +at +at +at +at +af +af +af +af +af af af af af ac +ab +ab +aa +"} +(35,1,1) = {" +aa +ab +ab +ab +ad +ad +ad +ad +ad +ai +ad +ah +ac +ac +af +af +af +af +af +af +af +af +af +af +af +bM +af +af +bM +af +af +af +af +af +af +af +af +af +af +af +af +ac +ab +ab +aa +"} +(36,1,1) = {" +aa +ab +ab +ab +ad +ad +ad +ah +ad +ad +ad +ad +ac +af +af +af +af +af +af +af +af +af +af +af +af +as +af +af +as +af +af +af +af +af +af +af +af +af +af +af +af +ac +ab +ab +aa +"} +(37,1,1) = {" +aa +ab +ab +ab +ad +ah +ad +ad +ad +ao +ad +ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ab +ab +aa +"} +(38,1,1) = {" +aa +ab +ab +ab +an +ad +ai +ad +ad +ac +ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +bN +ab +ab +aa +"} +(39,1,1) = {" +aa +ab +ab +ab +ad +ad +ad +ac +ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ab +ab +aa +"} +(40,1,1) = {" +aa +ab +ab +ab +ah +ac +ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ac +ab +aa +"} +(41,1,1) = {" +aa +ab +ab +ab +ac +ac +am +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ab +aa +"} +(42,1,1) = {" +aa +ab +ab +ab +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +ac +ac +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af +af ac ab aa "} (43,1,1) = {" aa +ab +ab +ab ac +ac +ac +ac +ac +ac +af +af +bN +ac +ac +ac +ac +ac +ac +ac +ae +ac +ac +ac +ac +bN +ac +ac +ac +ac +ac +ac +af af af af af ac ac -ad -an ac ac -am ac ac -ad -ad -ad -ac -af -af -af -af -af -af -af -af -af -at -at -at -at -at -at -at -at -at -af -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -af -af -af -af -af -ac ab aa "} (44,1,1) = {" aa +ab +ab +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ab +ac +ac +ac +ac +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac ac ac -af -af -af -ac -ad -ah -ad -ad -ad -ad -ad -ad -ad -ah ac ac -af -af -af -af -af -af -af -af -af -af -af -aX -af -af -aX -af -af -af -af -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -af -af -af -af -af ac ab aa "} (45,1,1) = {" aa -ab -ac -af -af -ac -ac -al -ad -ad -ad -ad -ah -ad -ad -ad -ad -ac -af -af -af -af -af -af -af -af -af -af -af -af -as -af -af -as -af -af -af -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -ac -ab -aa -"} -(46,1,1) = {" -aa -ab -ac -af -ac -ac -ah -ad -ad -ad -ah -ad -ad -ad -ap -ad -ac -ac -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ak -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -ac -ab -aa -"} -(47,1,1) = {" -aa -ab -ac -ac -ac -ad -ad -ad -ad -ao -ad -ai -ad -ad -ac -ac -ac -af -af -af -af -af -ak -ak -ak -af -af -af -af -af -af -af -af -af -af -af -af -af -ak -ak -ak -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -ac -ab -aa -"} -(48,1,1) = {" -aa -ab -ab -ac -ad -ai -ad -ah -ad -ad -ad -ad -ac -ac -ac -af -af -af -af -af -ak -ak -ak -ak -ak -ak -af -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -ac -ac -aa -"} -(49,1,1) = {" -aa -ab -ab -ac -ad -ad -ad -ad -ad -ah -ac -ac -ac -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -ac -aa -"} -(50,1,1) = {" -aa -ab -ac -ac -ah -ad -ad -ad -ad -ac -ac -am -af -af -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -ac -aa -"} -(51,1,1) = {" -aa -ab -ad -ad -ad -aj -ad -ad -am -ac -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af -ak -ak -ak -ak -ak -ak -af -ak -ak -af -af -af -ac -aa -"} -(52,1,1) = {" -aa -ad -ad -ad -ad -ac -ac -ac -ac -af -af -af -af -af -af -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -ak -af -af -af -af -af -ak -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -aa -"} -(53,1,1) = {" -aa -ad -ad -ah -ac -ac -af -af -af -af -af -af -af -af -af -af -af -ak -ak -ak -af -af -af -ak -ak -ak -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ab -aa -"} -(54,1,1) = {" -aa -ad -ad -ad -ac -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ak -ak -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ac -ab -aa -"} -(55,1,1) = {" -aa -ab -ad -ac -ac -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ac -ab -ab -ab -aa -"} -(56,1,1) = {" -aa -ab -ac -af -af -af -af -af -af -af -af -af -af -af -ac -ac -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ac -af -af -af -af -ac -ac -ac -ac -ab -ab -ab -ab -ab -aa -"} -(57,1,1) = {" -aa -ab -ac -af -af -af -af -af -af -af -af -af -af -af -ac -ac -ac -ac -af -af -af -af -ac -ac -af -af -af -af -ac -ac -af -af -af -af -af -af -af -af -af -af -ac -ac -ac -ac -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -aa -"} -(58,1,1) = {" -aa -ae -ac -ac -ac -ac -af -af -af -af -af -ac -ac -ac -ac -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -af -af -af -af -af -af -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ab -ab -ab -ab -aa -"} -(59,1,1) = {" -aa -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ae -ab -ab -ab -ab -ab -aa -"} -(60,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa aa aa aa diff --git a/maps/tether/submaps/aerostat/submaps/Drugden.dmm b/maps/tether/submaps/aerostat/submaps/Drugden.dmm index f12df92336..1966dbcab8 100644 --- a/maps/tether/submaps/aerostat/submaps/Drugden.dmm +++ b/maps/tether/submaps/aerostat/submaps/Drugden.dmm @@ -4,118 +4,116 @@ /area/template_noop) "b" = ( /turf/template_noop, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "c" = ( -/turf/simulated/mineral/ignore_mapgen, -/area/submap/Drugd) -"d" = ( -/turf/simulated/wall, -/area/submap/Drugd) +/turf/simulated/mineral/ignore_mapgen/virgo2, +/area/submap/virgo2/Drugd) "e" = ( /obj/machinery/door/airlock, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "f" = ( /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "g" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "h" = ( /obj/random/trash, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "i" = ( /obj/structure/closet/cabinet, /obj/item/weapon/lipstick/random, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "j" = ( /obj/structure/bed, /obj/item/weapon/bedsheet, /obj/structure/curtain/open/bed, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "k" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/pill/happy{ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "l" = ( +/obj/tether_away_spawner/aerostat_inside, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "m" = ( /obj/structure/curtain/black, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "n" = ( /obj/random/trash, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "o" = ( /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "p" = ( /obj/effect/decal/remains/mouse, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "q" = ( /obj/structure/closet/cabinet, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "r" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/pill/methylphenidate{ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "s" = ( /obj/structure/bed/chair/comfy/beige{ icon_state = "armchair_preview"; dir = 1 }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "t" = ( /obj/item/weapon/reagent_containers/pill/citalopram{ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "u" = ( /obj/random/junk, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "v" = ( /obj/structure/closet/cabinet, /obj/item/weapon/contraband/poster, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "w" = ( /obj/structure/bed/chair/comfy/beige, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "x" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp, /obj/item/weapon/reagent_containers/syringe/drugs, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "y" = ( /obj/structure/bed/chair/comfy/beige, /obj/item/weapon/reagent_containers/pill/citalopram{ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "z" = ( /obj/structure/loot_pile/maint/junk, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "A" = ( /obj/item/weapon/reagent_containers/pill/citalopram{ name = "pill" @@ -124,111 +122,117 @@ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "B" = ( /obj/structure/table/standard, /obj/item/weapon/storage/pill_bottle/happy, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "C" = ( /obj/structure/table/standard, /obj/item/stack/medical/splint, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "D" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/pill/citalopram, /obj/item/weapon/reagent_containers/pill/citalopram, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "E" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/pill/tramadol, /obj/item/weapon/reagent_containers/pill/tramadol, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "F" = ( /obj/structure/closet/cabinet, /obj/item/clothing/accessory/jacket, /obj/item/weapon/material/butterfly/switchblade, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "G" = ( /obj/item/weapon/reagent_containers/pill/zoom{ name = "pill" }, /obj/random/trash, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "H" = ( /obj/item/weapon/reagent_containers/pill/zoom{ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "I" = ( /obj/structure/loot_pile/maint/boxfort, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "J" = ( /obj/structure/table/standard, /obj/item/weapon/surgical/scalpel, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "K" = ( /obj/item/wheelchair, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "L" = ( /obj/structure/table/standard, /obj/random/firstaid, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "M" = ( /obj/structure/loot_pile/maint/junk, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "N" = ( /obj/effect/floor_decal/rust, /obj/structure/table/standard, /obj/item/device/survivalcapsule, /turf/simulated/floor/tiled, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "O" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/pill/zoom, /obj/item/weapon/reagent_containers/pill/zoom, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "P" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/pill/tramadol{ name = "pill" }, /turf/simulated/floor/carpet, -/area/submap/Drugd) -"Q" = ( -/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard, -/turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "R" = ( /obj/structure/girder, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "S" = ( /obj/item/weapon/material/shard, /turf/simulated/floor, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "T" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) "U" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/syringe/drugs, /turf/simulated/floor/carpet, -/area/submap/Drugd) +/area/submap/virgo2/Drugd) +"V" = ( +/turf/simulated/floor, +/area/submap/virgo2/Drugd) +"W" = ( +/turf/simulated/wall/virgo2, +/area/submap/virgo2/Drugd) +"X" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor, +/area/submap/virgo2/Drugd) (1,1,1) = {" a @@ -407,13 +411,13 @@ c c c c -d -d -d -d -d -d -d +W +W +W +W +W +W +W c c c @@ -434,13 +438,13 @@ c c c c -d +W B J N -l +V R -d +W c c c @@ -461,13 +465,13 @@ c c c c -d +W C K -l -Q -l -d +V +V +V +W c c c @@ -488,13 +492,13 @@ c c c c -d +W D g l -l +V S -d +W c c c @@ -515,13 +519,13 @@ c c c c -d +W E L O -l -l -d +V +V +W c c b @@ -535,20 +539,20 @@ b b b b -d -d -d -d -d -d -d -d -d -d -d +W +W +W +W +W +W +W +W +W +W +W e -d -d +W +W c c b @@ -560,22 +564,22 @@ b b b b -b -b -d +W +W +W f g g p u -l +V z -l -l +V +V h -l -l -l +V +V +V c c b @@ -587,21 +591,21 @@ b b b b -b -b -e +X +V +X f g +V +V +V l -l -l -l -l -l +V +V f -l -l -l +V +V +V u c c @@ -614,22 +618,22 @@ b b b b -b -b -d +W +W +W f h -l -l +V +V h -l +V g f M g -l +V h -d +W c c b @@ -643,20 +647,20 @@ b b b b -d -d -d +W +W +W m -d -d -d +W +W +W m -d -d -d +W +W +W m -d -d +W +W c c c @@ -671,19 +675,19 @@ b b c c -d +W i n q -d +W v o F -d +W q o q -d +W c c c @@ -698,19 +702,19 @@ b c c c -d +W j o r -d +W w o G -d +W P o T -d +W c c c @@ -725,19 +729,19 @@ b c c c -d +W k o s -d +W x o H -d +W w o U -d +W c c c @@ -752,19 +756,19 @@ b c c c -d +W j o t -d +W y A I -d +W w o n -d +W c c b @@ -779,19 +783,19 @@ b c c c -d -d -d -d -d -d -d -d -d -d -d -d -d +W +W +W +W +W +W +W +W +W +W +W +W +W c c c diff --git a/maps/tether/submaps/aerostat/submaps/Epod3.dmm b/maps/tether/submaps/aerostat/submaps/Epod3.dmm index 2aefeefde7..23eafb7790 100644 --- a/maps/tether/submaps/aerostat/submaps/Epod3.dmm +++ b/maps/tether/submaps/aerostat/submaps/Epod3.dmm @@ -4,25 +4,25 @@ /area/template_noop) "b" = ( /turf/template_noop, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "c" = ( /turf/simulated/floor/outdoors/dirt, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "d" = ( /obj/tether_away_spawner/aerostat_surface, /turf/template_noop, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "e" = ( /turf/simulated/shuttle/wall, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "f" = ( /obj/tether_away_spawner/aerostat_surface, /turf/simulated/floor/outdoors/dirt, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "g" = ( /obj/effect/spider/stickyweb, /turf/template_noop, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "h" = ( /obj/structure/bed/chair{ dir = 4 @@ -34,7 +34,7 @@ pixel_y = -26 }, /turf/simulated/shuttle/floor, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "i" = ( /obj/structure/bed/chair{ dir = 4 @@ -46,7 +46,7 @@ /obj/machinery/light, /obj/item/weapon/weldingtool/largetank, /turf/simulated/shuttle/floor, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "j" = ( /obj/machinery/status_display{ density = 0; @@ -65,40 +65,37 @@ /obj/item/clothing/shoes/dress, /obj/item/clothing/glasses/sunglasses, /obj/random/multiple/gun/projectile/handgun, +/obj/effect/spider/eggcluster/small/frost, /turf/simulated/shuttle/floor, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "k" = ( /obj/structure/shuttle/engine/propulsion/burst{ icon_state = "propulsion"; dir = 8 }, /turf/simulated/shuttle/wall, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "l" = ( /obj/effect/spider/stickyweb, /turf/simulated/floor/outdoors/dirt, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "m" = ( /obj/machinery/door/airlock/external{ name = "Escape Pod Hatch"; welded = 1 }, /turf/simulated/shuttle/floor, -/area/submap/Epod3) -"n" = ( -/obj/effect/spider/eggcluster/small/frost, -/turf/simulated/floor/outdoors/dirt, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "p" = ( /obj/effect/spider/stickyweb, /obj/effect/spider/stickyweb, /turf/template_noop, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) "r" = ( /obj/structure/shuttle/window, /obj/structure/grille, /turf/simulated/shuttle/plating, -/area/submap/Epod3) +/area/submap/virgo2/Epod3) (1,1,1) = {" a @@ -225,7 +222,7 @@ a b l c -n +c l l f diff --git a/maps/tether/submaps/aerostat/submaps/Epod4.dmm b/maps/tether/submaps/aerostat/submaps/Epod4.dmm index 4df5b86f87..2fd3c9bb4d 100644 --- a/maps/tether/submaps/aerostat/submaps/Epod4.dmm +++ b/maps/tether/submaps/aerostat/submaps/Epod4.dmm @@ -4,21 +4,18 @@ /area/template_noop) "b" = ( /turf/template_noop, -/area/submap/Epod4) +/area/submap/virgo2/Epod4) "c" = ( -/turf/simulated/floor/outdoors/dirt, -/area/submap/Epod4) -"f" = ( -/turf/simulated/floor/water, -/area/submap/Epod4) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Epod4) "h" = ( /turf/simulated/shuttle/wall, -/area/submap/Epod4) +/area/submap/virgo2/Epod4) "i" = ( /obj/structure/shuttle/window, /obj/structure/grille, /turf/simulated/shuttle/plating, -/area/submap/Epod4) +/area/submap/virgo2/Epod4) "k" = ( /obj/structure/bed/chair{ icon_state = "chair_preview"; @@ -31,11 +28,8 @@ pixel_y = 0 }, /obj/structure/loot_pile/maint/junk, -/turf/simulated/floor/water, -/area/submap/Epod4) -"l" = ( -/turf/simulated/floor/water/deep, -/area/submap/Epod4) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Epod4) "m" = ( /obj/structure/bed/chair{ icon_state = "chair_preview"; @@ -56,8 +50,8 @@ /obj/item/clothing/shoes/brown, /obj/item/clothing/under/mbill, /obj/item/clothing/head/soft/mbill, -/turf/simulated/floor/water, -/area/submap/Epod4) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Epod4) "n" = ( /obj/structure/bed/chair{ icon_state = "chair_preview"; @@ -74,18 +68,21 @@ name = "exotic seeds crate"; starts_with = list(/obj/item/seeds/random = 6, /obj/item/seeds/replicapod = 2, /obj/item/seeds/ambrosiavulgarisseed = 2, /obj/item/seeds/kudzuseed, /obj/item/seeds/libertymycelium, /obj/item/seeds/reishimycelium) }, -/turf/simulated/floor/water, -/area/submap/Epod4) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Epod4) "o" = ( /obj/structure/shuttle/engine/propulsion/burst, /turf/simulated/shuttle/wall, -/area/submap/Epod4) +/area/submap/virgo2/Epod4) "p" = ( /obj/structure/door_assembly/door_assembly_ext{ anchored = 1 }, -/turf/simulated/floor/water, -/area/submap/Epod4) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Epod4) +"Y" = ( +/turf/simulated/floor/outdoors/dirt, +/area/submap/virgo2/Epod4) (1,1,1) = {" a @@ -128,10 +125,10 @@ c c c c -f -f -f -f +c +c +c +c c c c @@ -144,13 +141,13 @@ b c c c -f -f -l -l -l -f -f +c +c +c +c +c +c +c c c a @@ -160,15 +157,15 @@ a b c c -f +c h h h h o -l -l -f +c +c +c c a "} @@ -177,22 +174,22 @@ a b c c -f +c i k m n p -l -l -f +c +c +c c a "} (7,1,1) = {" a b -c +Y c c h @@ -200,9 +197,9 @@ h h h o -l -f -f +c +c +c c a "} @@ -214,10 +211,10 @@ c c c c -f -f -f -f +c +c +c +c c c c diff --git a/maps/tether/submaps/aerostat/submaps/Flake.dmm b/maps/tether/submaps/aerostat/submaps/Flake.dmm index fe1f502d87..37a5070d76 100644 --- a/maps/tether/submaps/aerostat/submaps/Flake.dmm +++ b/maps/tether/submaps/aerostat/submaps/Flake.dmm @@ -4,19 +4,27 @@ /area/template_noop) "b" = ( /turf/template_noop, -/area/submap/Lake1) +/area/submap/virgo2/Lake1) +"d" = ( +/obj/machinery/crystal/lava, +/turf/simulated/floor/outdoors/rocks, +/area/submap/virgo2/Lake1) "f" = ( /turf/simulated/floor/outdoors/rocks, -/area/submap/Lake1) +/area/submap/virgo2/Lake1) "h" = ( -/turf/simulated/floor/water, -/area/submap/Lake1) +/turf/simulated/floor/lava, +/area/submap/virgo2/Lake1) "i" = ( -/turf/simulated/floor/outdoors/dirt, -/area/submap/Lake1) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Lake1) "j" = ( -/turf/simulated/mineral, -/area/submap/Lake1) +/turf/simulated/mineral/ignore_mapgen/virgo2, +/area/submap/virgo2/Lake1) +"R" = ( +/obj/machinery/crystal/lava, +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Lake1) (1,1,1) = {" a @@ -69,7 +77,7 @@ a a b b -f +d f f f @@ -166,7 +174,7 @@ h h h h -f +d f b b @@ -287,7 +295,7 @@ a b b b -f +d h h h @@ -513,12 +521,12 @@ b b b i +R i i i i -i -i +R b b a @@ -578,7 +586,7 @@ b b b b -i +R j j j @@ -626,7 +634,7 @@ b b i i -i +R b b b diff --git a/maps/tether/submaps/aerostat/submaps/GovPatrol.dmm b/maps/tether/submaps/aerostat/submaps/GovPatrol.dmm index bbdd2930c1..857bb008ea 100644 --- a/maps/tether/submaps/aerostat/submaps/GovPatrol.dmm +++ b/maps/tether/submaps/aerostat/submaps/GovPatrol.dmm @@ -29,7 +29,7 @@ /turf/simulated/mineral/floor/ignore_mapgen/virgo2, /area/submap/virgo2/GovPatrol) "i" = ( -/obj/item/clothing/under/utility/sifguard, +/obj/item/clothing/under/solgov/utility/sifguard, /obj/item/clothing/shoes/boots/jackboots, /obj/effect/decal/remains, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, diff --git a/maps/tether/submaps/aerostat/submaps/MHR.dmm b/maps/tether/submaps/aerostat/submaps/MHR.dmm index 5e39209496..06a7705e14 100644 --- a/maps/tether/submaps/aerostat/submaps/MHR.dmm +++ b/maps/tether/submaps/aerostat/submaps/MHR.dmm @@ -62,12 +62,6 @@ outdoors = 0 }, /area/submap/virgo2/MHR) -"m" = ( -/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2{ - outdoors = 0 - }, -/area/submap/virgo2/MHR) "n" = ( /obj/effect/decal/cleanable/spiderling_remains, /obj/tether_away_spawner/aerostat_surface, @@ -102,13 +96,6 @@ outdoors = 0 }, /area/submap/virgo2/MHR) -"s" = ( -/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, -/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2{ - outdoors = 0 - }, -/area/submap/virgo2/MHR) (1,1,1) = {" a @@ -296,7 +283,7 @@ e e e e -m +d d d n @@ -323,7 +310,7 @@ d d d d -s +d e e e @@ -366,7 +353,7 @@ e f d d -s +d d e e diff --git a/maps/tether/submaps/aerostat/submaps/Manor1.dmm b/maps/tether/submaps/aerostat/submaps/Manor1.dmm index 65c5a5e20b..6d3c998571 100644 --- a/maps/tether/submaps/aerostat/submaps/Manor1.dmm +++ b/maps/tether/submaps/aerostat/submaps/Manor1.dmm @@ -1,144 +1,138 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( /turf/template_noop, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ab" = ( /turf/simulated/wall/virgo2, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ac" = ( /obj/structure/window/reinforced/full, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ad" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 4 }, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ae" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "af" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 8 }, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ag" = ( /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ah" = ( /obj/structure/flora/pottedplant/dead, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ai" = ( /obj/structure/flora/pottedplant/drooping, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aj" = ( /obj/structure/table/woodentable, /obj/item/clothing/mask/smokable/cigarette/cigar, /obj/item/weapon/material/ashtray/glass, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ak" = ( /obj/structure/flora/pottedplant/dead, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "al" = ( /obj/structure/table/woodentable, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "am" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "an" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ao" = ( /obj/structure/mopbucket, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ap" = ( /obj/structure/sink, /turf/simulated/wall/virgo2, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aq" = ( /turf/simulated/floor/carpet/bcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ar" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet/bcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "as" = ( /obj/structure/simple_door/wood, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "at" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp, /obj/effect/decal/cleanable/blood/gibs/robot, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "au" = ( /obj/structure/bed, /obj/item/weapon/bedsheet, /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "av" = ( /obj/structure/janitorialcart, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aw" = ( /obj/structure/table/woodentable, /obj/item/weapon/mop, /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ax" = ( /obj/structure/closet/cabinet, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ay" = ( /obj/effect/decal/cleanable/blood/gibs/robot/limb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "az" = ( /obj/structure/table/woodentable, /obj/item/trash/candle, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aA" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) -"aB" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aC" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/maglight, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aD" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aE" = ( /obj/structure/closet/cabinet, /obj/effect/decal/cleanable/cobweb2, @@ -146,127 +140,118 @@ /obj/item/clothing/shoes/boots/winter, /obj/item/clothing/suit/storage/hooded/wintercoat, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aF" = ( /obj/structure/table/woodentable, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aG" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aH" = ( /obj/structure/table/woodentable, /obj/item/weapon/pen, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aI" = ( /obj/structure/flora/pottedplant/dead, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aJ" = ( /obj/effect/spider/stickyweb, -/mob/living/simple_mob/animal/giant_spider/lurker, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) -"aK" = ( -/obj/effect/spider/stickyweb, -/turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aL" = ( /obj/structure/fireplace, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) -"aM" = ( -/mob/living/simple_mob/animal/giant_spider/lurker, -/turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aN" = ( /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aO" = ( /obj/structure/bed, /obj/item/weapon/bedsheet, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aP" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aQ" = ( /turf/simulated/floor/carpet/purcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aR" = ( /obj/structure/table/standard, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aS" = ( /obj/structure/table/standard, /obj/machinery/microwave, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aT" = ( /obj/structure/closet/cabinet, /obj/random/projectile/shotgun, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aU" = ( /obj/structure/bookcase, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aV" = ( /obj/structure/table/woodentable, /obj/item/weapon/material/kitchen/utensil/fork, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aW" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/condiment/small/peppermill, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aX" = ( /obj/structure/table/standard, /obj/item/weapon/material/knife, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aY" = ( /obj/machinery/cooker/oven, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "aZ" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/condiment/small/saltshaker, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ba" = ( /obj/machinery/cooker/grill, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bb" = ( /obj/structure/table/standard, /obj/item/weapon/tray, /obj/item/weapon/tray, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bc" = ( /obj/structure/table/standard, /obj/item/weapon/material/knife/butch, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bd" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, /obj/item/weapon/reagent_containers/food/drinks/cans/waterbottle, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "be" = ( /obj/random/trash, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bf" = ( /obj/structure/closet/cabinet, /obj/item/clothing/head/hood/winter, @@ -274,57 +259,57 @@ /obj/item/clothing/suit/storage/hooded/wintercoat, /obj/random/contraband, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bg" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper_bin, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bh" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; dir = 1 }, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bi" = ( /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/holofloor/wood{ icon_state = "wood_broken0" }, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bj" = ( /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bk" = ( /obj/random/plushielarge, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bl" = ( /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bm" = ( /obj/structure/loot_pile/surface/bones, /obj/item/clothing/accessory/sweater/blue, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bn" = ( /obj/structure/window/reinforced/full, /turf/template_noop, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bo" = ( /obj/item/weapon/material/twohanded/baseballbat/metal, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bp" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bq" = ( /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "br" = ( /obj/structure/bed/chair/comfy/purp{ icon_state = "comfychair_preview"; @@ -333,11 +318,11 @@ /turf/simulated/floor/holofloor/wood{ icon_state = "wood_broken5" }, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bs" = ( /obj/structure/table, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bt" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; @@ -345,7 +330,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bu" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; @@ -353,51 +338,51 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bv" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/condiment/small/sugar, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bw" = ( /obj/effect/decal/cleanable/blood/drip, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bx" = ( /obj/structure/bed/chair/comfy/purp{ icon_state = "comfychair_preview"; dir = 4 }, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "by" = ( /obj/structure/closet/cabinet, /obj/item/clothing/suit/storage/hooded/wintercoat, /obj/item/clothing/head/hood/winter, /obj/item/clothing/shoes/boots/winter, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bz" = ( /obj/structure/table/woodentable, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bA" = ( /obj/structure/table/standard, /obj/item/weapon/material/kitchen/utensil/fork, /obj/item/weapon/material/kitchen/utensil/fork, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bB" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/weapon/reagent_containers/food/snacks/stew, /obj/item/weapon/reagent_containers/food/snacks/stew, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bC" = ( /obj/item/weapon/shovel, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bD" = ( /obj/structure/bed/chair/wood{ icon_state = "wooden_chair"; @@ -405,7 +390,7 @@ }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bE" = ( /obj/structure/table/standard, /obj/item/weapon/material/kitchen/utensil/spoon, @@ -413,169 +398,169 @@ /obj/item/weapon/material/kitchen/utensil/spoon, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bF" = ( /obj/structure/table/standard, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bG" = ( /obj/structure/closet/secure_closet/freezer/fridge, /obj/item/weapon/reagent_containers/food/snacks/sausage, /obj/item/weapon/reagent_containers/food/snacks/sausage, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bH" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant/drooping, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/flora/pottedplant/dead, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bJ" = ( /obj/structure/table/standard, /obj/item/weapon/material/kitchen/rollingpin, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bK" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/glass/bottle/stoxin, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bL" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/fancy/candle_box, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bM" = ( /obj/machinery/papershredder, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bN" = ( /obj/structure/simple_door/wood, /turf/simulated/floor/carpet/purcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bO" = ( /obj/machinery/icecream_vat, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bP" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bQ" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bR" = ( /obj/effect/decal/cleanable/cobweb, /obj/structure/table/woodentable, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bS" = ( /obj/structure/flora/pottedplant/subterranean, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bT" = ( /obj/item/weapon/material/minihoe, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bU" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/carpet/purcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bV" = ( /turf/simulated/floor/holofloor/wood{ icon_state = "wood_broken6" }, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bW" = ( /obj/machinery/washing_machine, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bX" = ( /obj/structure/table/woodentable, /obj/structure/bedsheetbin, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bY" = ( /obj/structure/table/rack, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "bZ" = ( /obj/structure/closet/crate, /obj/item/stack/cable_coil/random_belt, /obj/random/cash, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ca" = ( /obj/structure/table/woodentable, /obj/item/weapon/melee/umbrella/random, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cb" = ( /obj/structure/closet/cabinet, /obj/random/gun/random, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cc" = ( /obj/structure/closet/cabinet, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, /obj/random/medical, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cd" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ce" = ( /obj/structure/bed/double, /obj/item/weapon/bedsheet/rddouble, /obj/structure/curtain/open/bed, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cf" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/wallet/random, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cg" = ( /obj/structure/flora/pottedplant/dead, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ch" = ( /obj/structure/loot_pile/surface/bones, /obj/item/clothing/accessory/sweater, /turf/simulated/floor/carpet/blucarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ci" = ( /obj/structure/closet/crate, /obj/item/weapon/flame/lighter/random, /obj/random/powercell, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cj" = ( /obj/structure/closet/cabinet, /obj/item/clothing/shoes/boots/winter, /obj/item/clothing/suit/storage/hooded/wintercoat, /obj/item/clothing/head/hood/winter, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ck" = ( /obj/effect/decal/cleanable/spiderling_remains, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cl" = ( /turf/simulated/floor/carpet/turcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cm" = ( /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair/comfy/purp{ @@ -583,107 +568,107 @@ dir = 4 }, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cn" = ( /obj/structure/closet/crate, /obj/item/weapon/storage/wallet/random, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "co" = ( /obj/structure/coatrack, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cp" = ( /obj/structure/loot_pile/surface/bones, /obj/item/clothing/suit/storage/hooded/wintercoat, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cq" = ( /obj/structure/loot_pile/surface/bones, /obj/item/clothing/under/suit_jacket, /obj/item/clothing/shoes/black, /obj/random/projectile/random, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cr" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/external, /turf/simulated/floor/carpet/purcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cs" = ( /obj/item/weapon/material/twohanded/spear, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "ct" = ( /obj/structure/closet/cabinet{ opened = 1 }, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cu" = ( /obj/effect/decal/remains, /obj/item/weapon/material/knife/tacknife/combatknife, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cv" = ( /obj/structure/sink{ pixel_y = 30 }, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cw" = ( /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cx" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/cobweb2, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cy" = ( /obj/structure/table/standard, /obj/item/weapon/towel/random, /obj/item/weapon/towel/random, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cz" = ( /obj/effect/decal/cleanable/cobweb2, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cA" = ( /obj/item/weapon/paper/crumpled, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cB" = ( /turf/simulated/floor/holofloor/wood{ icon_state = "wood_broken3" }, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cC" = ( /obj/effect/decal/cleanable/spiderling_remains, /obj/effect/spider/stickyweb, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cD" = ( /obj/structure/closet/crate, /obj/item/clothing/suit/armor/vest, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cE" = ( /obj/structure/closet/crate, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cF" = ( /obj/structure/simple_door/wood, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cG" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 8 }, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cH" = ( /obj/machinery/shower{ icon_state = "shower"; @@ -691,11 +676,11 @@ }, /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cI" = ( /obj/item/stack/material/wood, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cJ" = ( /obj/machinery/shower{ icon_state = "shower"; @@ -704,30 +689,42 @@ /obj/structure/curtain/open/shower, /obj/random/soap, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cK" = ( /obj/structure/table/standard, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cL" = ( /obj/structure/toilet{ icon_state = "toilet00"; dir = 1 }, /turf/simulated/floor/tiled/hydro, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cM" = ( /obj/structure/table/woodentable, /obj/item/modular_computer/laptop/preset/custom_loadout/standard, /turf/simulated/floor/holofloor/wood, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) "cN" = ( /turf/template_noop, /area/template_noop) "cO" = ( /obj/machinery/door/airlock/external, /turf/simulated/floor/carpet/purcarpet, -/area/submap/Manor1) +/area/submap/virgo2/Manor1) +"kI" = ( +/obj/tether_away_spawner/aerostat_surface, +/turf/simulated/floor/holofloor/wood, +/area/submap/virgo2/Manor1) +"KY" = ( +/obj/tether_away_spawner/aerostat_surface, +/turf/simulated/floor/carpet/turcarpet, +/area/submap/virgo2/Manor1) +"VR" = ( +/obj/tether_away_spawner/aerostat_surface, +/turf/simulated/floor/carpet/purcarpet, +/area/submap/virgo2/Manor1) (1,1,1) = {" cN @@ -1120,7 +1117,7 @@ ab ag ab aT -aM +ag aO ab bg @@ -1302,7 +1299,7 @@ ag ag ag ag -ag +kI ag ag ag @@ -1458,7 +1455,7 @@ ag ag ag ag -ag +kI ag ag an @@ -1622,7 +1619,7 @@ ar an ab aI -aK +aJ ag ag ag @@ -1642,7 +1639,7 @@ an ab ag ag -ag +kI ag ag cC @@ -1664,7 +1661,7 @@ ar aA ab aJ -aK +aJ ad ad ad @@ -1686,7 +1683,7 @@ bZ ci cn ag -aK +aJ aJ ab aa @@ -1703,9 +1700,9 @@ ag ag aq ar -aB +aA ab -aK +aJ aP al al @@ -1727,8 +1724,8 @@ ab ab ab ab -aK -aK +aJ +aJ cD ab aa @@ -1848,7 +1845,7 @@ aQ bN aQ aQ -aQ +VR bU bU bU @@ -1880,7 +1877,7 @@ aQ aQ aQ aQ -aQ +VR aQ aQ aQ @@ -2209,7 +2206,6 @@ aq aq ag ab -aM ag ag ag @@ -2223,7 +2219,8 @@ ag ag ag ag -aK +ag +aJ ab ag ag @@ -2265,7 +2262,7 @@ aR bA bE bF -aK +aJ ab ag ag @@ -2300,14 +2297,14 @@ aR bc ag ag -ag +kI ag ag bv aR bF bJ -aK +aJ ab ag ag @@ -2315,7 +2312,7 @@ ab ag cl cl -cl +KY cl cl cl @@ -2670,7 +2667,7 @@ ap ag ag ab -ag +kI ag ab ag @@ -2718,7 +2715,7 @@ as ag as ag -ag +kI ab ag bm diff --git a/maps/tether/submaps/aerostat/submaps/Rocky1.dmm b/maps/tether/submaps/aerostat/submaps/Rocky1.dmm index d34ea33311..76725279f7 100644 --- a/maps/tether/submaps/aerostat/submaps/Rocky1.dmm +++ b/maps/tether/submaps/aerostat/submaps/Rocky1.dmm @@ -4,23 +4,23 @@ /area/template_noop) "b" = ( /turf/template_noop, -/area/submap/Rocky1) +/area/submap/virgo2/Rocky1) "c" = ( -/turf/simulated/floor/outdoors/dirt, -/area/submap/Rocky1) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Rocky1) "d" = ( /obj/structure/boulder, -/turf/simulated/floor/outdoors/dirt, -/area/submap/Rocky1) +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Rocky1) "e" = ( -/turf/simulated/mineral, -/area/submap/Rocky1) +/turf/simulated/mineral/ignore_mapgen/virgo2, +/area/submap/virgo2/Rocky1) "g" = ( /obj/random/handgun/sec, /obj/effect/decal/remains/human, -/obj/item/weapon/spacecash/c200, -/turf/simulated/floor/outdoors/dirt, -/area/submap/Rocky1) +/obj/item/weapon/storage/secure/briefcase/money, +/turf/simulated/mineral/floor/ignore_mapgen/virgo2, +/area/submap/virgo2/Rocky1) (1,1,1) = {" a diff --git a/maps/tether/submaps/aerostat/submaps/Rocky4.dmm b/maps/tether/submaps/aerostat/submaps/Rocky4.dmm index 1194b94595..fb7a78f363 100644 --- a/maps/tether/submaps/aerostat/submaps/Rocky4.dmm +++ b/maps/tether/submaps/aerostat/submaps/Rocky4.dmm @@ -4,16 +4,20 @@ /area/template_noop) "b" = ( /turf/template_noop, -/area/submap/Rocky4) +/area/submap/virgo2/Rocky4) "c" = ( -/turf/simulated/mineral/ignore_mapgen, -/area/submap/Rocky4) +/turf/simulated/mineral/ignore_mapgen/virgo2, +/area/submap/virgo2/Rocky4) "e" = ( /turf/simulated/floor/outdoors/rocks, -/area/submap/Rocky4) +/area/submap/virgo2/Rocky4) "f" = ( -/turf/simulated/floor/water, -/area/submap/Rocky4) +/turf/simulated/floor/lava, +/area/submap/virgo2/Rocky4) +"Y" = ( +/obj/machinery/crystal/lava, +/turf/simulated/floor/outdoors/rocks, +/area/submap/virgo2/Rocky4) (1,1,1) = {" a @@ -210,7 +214,7 @@ c c b b -e +Y e e e diff --git a/maps/tether/submaps/aerostat/submaps/butchershack.dmm b/maps/tether/submaps/aerostat/submaps/butchershack.dmm index b983b8a552..95937cc842 100644 --- a/maps/tether/submaps/aerostat/submaps/butchershack.dmm +++ b/maps/tether/submaps/aerostat/submaps/butchershack.dmm @@ -3,11 +3,8 @@ /turf/template_noop, /area/template_noop) "b" = ( -/turf/simulated/wall/log_sif, -/area/submap/ButcherShack) -"c" = ( -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/wall/virgo2, +/area/submap/virgo2/ButcherShack) "d" = ( /obj/structure/closet, /obj/effect/decal/cleanable/cobweb, @@ -15,12 +12,12 @@ /obj/item/weapon/beartrap, /obj/item/weapon/packageWrap, /obj/item/weapon/material/knife/hook, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "e" = ( /obj/structure/closet/secure_closet/freezer/meat, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "f" = ( /obj/structure/closet/crate/freezer, /obj/effect/decal/cleanable/blood/gibs, @@ -34,85 +31,86 @@ /obj/random/meat, /obj/random/meat, /obj/random/meat, -/turf/simulated/floor/wood/sif/broken, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "g" = ( /obj/machinery/gibber/autogibber, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "h" = ( -/turf/simulated/floor/wood/sif/broken, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "i" = ( /obj/structure/window/basic, /obj/structure/curtain, /turf/simulated/floor/wood/sif/broken, -/area/submap/ButcherShack) +/area/submap/virgo2/ButcherShack) "j" = ( /turf/template_noop, -/area/submap/ButcherShack) -"k" = ( -/obj/structure/simple_door/sifwood, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/area/submap/virgo2/ButcherShack) "l" = ( /obj/structure/loot_pile/maint/trash, -/turf/simulated/floor/outdoors/dirt, -/area/submap/ButcherShack) +/turf/simulated/mineral/floor/virgo2, +/area/submap/virgo2/ButcherShack) "m" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "n" = ( /obj/structure/kitchenspike, /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "o" = ( /obj/effect/decal/cleanable/blood, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "p" = ( /obj/structure/table/standard, /obj/item/clothing/suit/chef/classic, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "q" = ( /obj/structure/table/standard, /obj/effect/decal/cleanable/blood, /obj/item/weapon/material/knife/butch, -/turf/simulated/floor/wood/sif/broken, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "r" = ( /obj/structure/table/standard, /obj/item/weapon/reagent_containers/food/snacks/cutlet, /obj/item/weapon/reagent_containers/food/snacks/cutlet, /obj/item/weapon/reagent_containers/food/snacks/cutlet, /obj/item/weapon/reagent_containers/food/snacks/sausage, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "s" = ( /obj/structure/coatrack, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "t" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/brown, -/turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "u" = ( /obj/effect/decal/cleanable/blood/drip, -/turf/simulated/floor/wood/sif/broken, -/area/submap/ButcherShack) +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) "v" = ( -/turf/simulated/floor/outdoors/dirt, -/area/submap/ButcherShack) +/turf/simulated/mineral/floor/virgo2, +/area/submap/virgo2/ButcherShack) "w" = ( /obj/structure/window/basic, /obj/structure/curtain, /turf/simulated/floor/wood/sif, -/area/submap/ButcherShack) +/area/submap/virgo2/ButcherShack) +"x" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled, +/area/submap/virgo2/ButcherShack) (1,1,1) = {" a @@ -143,44 +141,44 @@ a b d h -c +h s b b -v +b a "} (4,1,1) = {" a b m -c +h p o u -k -v +h +x a "} (5,1,1) = {" a b n -c +h q -c +h +b b b -v a "} (6,1,1) = {" a b e -c +h r -c +h i l v @@ -191,7 +189,7 @@ a b f o -c +h h w l @@ -202,8 +200,8 @@ a a b g -c -c +h +h t b v diff --git a/maps/tether/submaps/aerostat/submaps/virgo2_submap_areas.dm b/maps/tether/submaps/aerostat/submaps/virgo2_submap_areas.dm index 24dd005c0c..ddfa01ebaf 100644 --- a/maps/tether/submaps/aerostat/submaps/virgo2_submap_areas.dm +++ b/maps/tether/submaps/aerostat/submaps/virgo2_submap_areas.dm @@ -5,50 +5,80 @@ base_turf = /turf/simulated/mineral/floor/ignore_mapgen/virgo2 /area/submap/virgo2/spider1 - name = "spider nest" + name = "POI - spider nest" /area/submap/virgo2/Field1 - name = "Field 1" + name = "POI - Field 1" /area/submap/virgo2/Lake1 - name = "Lake 1" + name = "POI - Lake 1" /area/submap/virgo2/MilitaryCamp1 - name = "Military Camp 1" + name = "POI - Military Camp 1" /area/submap/virgo2/Mudpit - name = "Mudpit" + name = "POI - Mudpit" /area/submap/virgo2/Shack1 - name = "Shack1" + name = "POI - Shack1" /area/submap/virgo2/Small1 - name = "Small1" + name = "POI - Small1" /area/submap/virgo2/SnowR1 - name = "SnowR1" + name = "POI - SnowR1" /area/submap/virgo2/BoomBase - name = "Boom1" + name = "POI - Boom1" /area/submap/virgo2/Blackshuttledown - name = "BSD" + name = "POI - BSD" requires_power = FALSE /area/submap/virgo2/Lab1 - name = "Lab1" + name = "POI - Lab1" /area/submap/virgo2/MHR - name = "Manhack Rock" + name = "POI - Manhack Rock" /area/submap/virgo2/Rockybase - name = "Rockybase" + name = "POI - Rockybase" /area/submap/virgo2/GovPatrol - name = "GovPatrol" + name = "POI - GovPatrol" /area/submap/virgo2/DecoupledEngine - name = "DecoupledEngine" + name = "POI - DecoupledEngine" /area/submap/virgo2/CaveS - name = "CaveS" + name = "POI - CaveS" + +/area/submap/virgo2/ButcherShack + name = "POI - CaveS" + +/area/submap/virgo2/DJOutpost1 + name = "POI - DJOutpost1" + +/area/submap/virgo2/DoomP + name = "POI - DoomP" + +/area/submap/virgo2/Drugd + name = "POI - Drugd" + +/area/submap/virgo2/Epod3 + name = "POI - Epod3" + +/area/submap/virgo2/Epod4 + name = "POI - Epod4" + +/area/submap/virgo2/Lake1 + name = "POI - Lake1" + +/area/submap/virgo2/Manor1 + name = "POI - Manor1" + +/area/submap/virgo2/Rocky1 + name = "POI - Rocky1" + +/area/submap/virgo2/Rocky4 + name = "POI - Rocky4" diff --git a/maps/tether/submaps/aerostat/surface.dmm b/maps/tether/submaps/aerostat/surface.dmm index a912e56993..9c80bcc8a9 100644 --- a/maps/tether/submaps/aerostat/surface.dmm +++ b/maps/tether/submaps/aerostat/surface.dmm @@ -21,10 +21,6 @@ /obj/structure/metal_edge, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, /area/tether_away/aerostat/surface/explored) -"s" = ( -/obj/structure/stairs/east, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) "A" = ( /obj/structure/railing{ icon_state = "railing0"; @@ -57,10 +53,6 @@ }, /turf/simulated/mineral/floor/ignore_mapgen/virgo2, /area/tether_away/aerostat/surface/explored) -"Z" = ( -/obj/structure/stairs/west, -/turf/simulated/mineral/floor/ignore_mapgen/virgo2, -/area/tether_away/aerostat/surface/explored) (1,1,1) = {" b @@ -8792,8 +8784,8 @@ X X X X -s -s +I +I X X X @@ -10780,8 +10772,8 @@ A A A A -Z -Z +I +I A A A diff --git a/maps/tether/submaps/gateway/carpfarm.dm b/maps/tether/submaps/gateway/carpfarm.dm new file mode 100644 index 0000000000..b5f0524e2c --- /dev/null +++ b/maps/tether/submaps/gateway/carpfarm.dm @@ -0,0 +1,22 @@ +/area/awaymission/carpfarm + icon_state = "blank" + requires_power = 0 + +/area/awaymission/carpfarm/arrival + icon_state = "away" + requires_power = 0 + +/area/awaymission/carpfarm/base + icon_state = "away" + +/area/awaymission/carpfarm/base/entry + icon_state = "blue" + +/obj/item/weapon/paper/awaygate/carpfarm/suicide + name = "suicide letter" + info = "dear rescue,

my name markov. if reading this, i am dead. i am was miner for 3rd union of soviet socialist republiks. \ + comrades yuri, dimitri, ivan, all eaten by space carp. all started month ago when soviet shipment sent new sonic jackhammers. \ + carp attracted to vibrations. killed dimitri. yuri thought good idea to jury-rig hoverpods with lasers. not good idea. \ + very bad idea. only pissed them off. giant white carp appeared. killed ivan. then giant carp cracked yuri pod like \ + eggshell and swallowed yuri.

no food. can't call help. carp chewed comms relay. 2 weeks since then. \ + can't eat carp. is poison.

avenge comrades. avenge me. i die in glory.

-markov" \ No newline at end of file diff --git a/maps/tether/submaps/gateway/carpfarm.dmm b/maps/tether/submaps/gateway/carpfarm.dmm new file mode 100644 index 0000000000..167369911c --- /dev/null +++ b/maps/tether/submaps/gateway/carpfarm.dmm @@ -0,0 +1,20645 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/obj/effect/blocker, +/turf/space{ + density = 1; + desc = "You can't go there!"; + name = "The 4th Wall" + }, +/area/space) +"ac" = ( +/turf/simulated/mineral, +/area/space) +"ad" = ( +/obj/effect/blocker, +/turf/space, +/area/space) +"ae" = ( +/mob/living/simple_mob/animal/space/carp, +/turf/space, +/area/space) +"af" = ( +/obj/effect/landmark/gateway_scatter, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"ah" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"aj" = ( +/obj/item/weapon/pickaxe/jackhammer, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/space) +"ak" = ( +/turf/simulated/mineral, +/area/mine/unexplored) +"al" = ( +/obj/structure/lattice, +/turf/space, +/area/space) +"am" = ( +/turf/simulated/wall/iron, +/area/awaymission/carpfarm/base) +"an" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/smes/buildable, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"ao" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 8 + }, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"ap" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aq" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"ar" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"as" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"at" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 5 + }, +/obj/machinery/door/window, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/carpfarm/base) +"au" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"av" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aw" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"ax" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"ay" = ( +/obj/structure/bedsheetbin, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"az" = ( +/obj/item/weapon/storage/toolbox/electrical, +/obj/structure/cable, +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/item/weapon/paper/awaygate/carpfarm/suicide, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aA" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aB" = ( +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aC" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aD" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aE" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aF" = ( +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aG" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aH" = ( +/obj/item/weapon/bedsheet, +/obj/structure/bed/padded, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aI" = ( +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aJ" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/void/mining, +/obj/item/clothing/mask/breath, +/obj/item/clothing/head/helmet/space/void/mining, +/obj/item/weapon/mining_scanner, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aK" = ( +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aL" = ( +/obj/structure/closet/toolcloset, +/obj/item/weapon/pickaxe/jackhammer, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aM" = ( +/obj/machinery/gateway{ + density = 0; + dir = 10 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aN" = ( +/obj/machinery/gateway, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aO" = ( +/obj/machinery/gateway{ + density = 0; + dir = 6 + }, +/turf/simulated/floor/bluegrid, +/area/awaymission/carpfarm/base) +"aP" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -32; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/carpfarm/base) +"aQ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aR" = ( +/obj/structure/table/woodentable, +/obj/random/action_figure, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"aS" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aU" = ( +/obj/structure/closet/jcloset, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aV" = ( +/obj/structure/closet/secure_closet/medical1, +/obj/random/medical, +/obj/random/medical, +/obj/random/medical, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"aW" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aX" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aY" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"aZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/lino, +/area/awaymission/carpfarm/base) +"ba" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bb" = ( +/obj/structure/table/reinforced, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bc" = ( +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"be" = ( +/obj/structure/closet/gimmick/russian, +/obj/machinery/light{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bf" = ( +/obj/structure/closet/gimmick/russian, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer, +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bh" = ( +/obj/structure/closet/wardrobe/black, +/obj/item/clothing/under/syndicate/tacticool, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bi" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/costume, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bj" = ( +/obj/machinery/door/airlock/maintenance_hatch, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bk" = ( +/obj/machinery/light{ + dir = 8 + }, +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bl" = ( +/obj/structure/closet/crate/internals, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/weapon/tank/emergency/oxygen/engi, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/item/clothing/mask/breath, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bm" = ( +/obj/structure/closet/crate/plastic, +/obj/random/contraband, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bn" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bo" = ( +/obj/machinery/door/airlock/mining, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bp" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bq" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"br" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill, +/obj/item/weapon/storage/toolbox/mechanical, +/obj/structure/table/steel, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bs" = ( +/obj/structure/ore_box, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bt" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bu" = ( +/obj/structure/table/rack, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bv" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bw" = ( +/obj/structure/table, +/obj/machinery/microwave{ + pixel_x = -2; + pixel_y = 6 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bx" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"by" = ( +/obj/machinery/vending/coffee{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bz" = ( +/obj/machinery/vending/sovietsoda, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bA" = ( +/obj/machinery/vending/snack{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bB" = ( +/obj/machinery/vending/cigarette{ + prices = list() + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bC" = ( +/obj/machinery/vending/dinnerware, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bD" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bE" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bF" = ( +/obj/structure/dispenser/oxygen, +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 1; + icon_state = "map" + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 10; + icon_state = "intact" + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1375; + master_tag = "carp_airlock"; + name = "interior access button"; + pixel_x = 26; + pixel_y = -26; + req_one_access = newlist() + }, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bK" = ( +/obj/machinery/suit_cycler/mining, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bL" = ( +/obj/structure/bed/chair, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bM" = ( +/obj/mecha/working/hoverpod/combatpod, +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bN" = ( +/obj/machinery/mech_recharger, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bO" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/portable_atmospherics/canister/air/airlock, +/turf/simulated/floor/tiled/dark, +/area/awaymission/carpfarm/base) +"bP" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; + icon_state = "space"; + layer = 4; + name = "EXTERNAL AIRLOCK"; + pixel_x = 0; + pixel_y = 0 + }, +/turf/simulated/wall/iron, +/area/awaymission/carpfarm/base) +"bQ" = ( +/obj/machinery/door/airlock/external{ + frequency = 1375; + icon_state = "door_locked"; + id_tag = "carp_inner"; + locked = 1; + name = "External Access"; + req_access = newlist() + }, +/obj/machinery/atmospherics/pipe/simple/hidden, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bR" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bS" = ( +/obj/item/weapon/reagent_containers/food/snacks/cubancarp, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bT" = ( +/obj/item/weapon/reagent_containers/food/snacks/carpmeat, +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/table/glass, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bU" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bV" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1375; + id_tag = "carp_pump" + }, +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1375; + id_tag = "carp_airlock"; + pixel_x = -28; + pixel_y = 0; + req_access = null; + tag_airpump = "carp_pump"; + tag_chamber_sensor = "carp_sensor"; + tag_exterior_door = "carp_outer"; + tag_interior_door = "carp_inner" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bW" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 1; + frequency = 1375; + id_tag = "carp_pump" + }, +/obj/effect/floor_decal/industrial/warning/cee{ + icon_state = "warningcee"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bX" = ( +/obj/structure/closet/emcloset, +/obj/item/weapon/storage/toolbox/emergency, +/obj/machinery/airlock_sensor{ + frequency = 1375; + id_tag = "carp_sensor"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"bY" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"bZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/corner/white/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"ca" = ( +/obj/effect/floor_decal/corner/white/diagonal, +/obj/structure/closet/crate/bin, +/obj/item/trash/candy/proteinbar, +/turf/simulated/floor/tiled, +/area/awaymission/carpfarm/base) +"cb" = ( +/obj/machinery/door/airlock/external{ + frequency = 1375; + icon_state = "door_locked"; + id_tag = "carp_outer"; + locked = 1; + name = "External Access"; + req_access = newlist() + }, +/turf/simulated/floor/plating, +/area/awaymission/carpfarm/base) +"cc" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"cd" = ( +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"ce" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1375; + master_tag = "carp_airlock"; + name = "exterior access button"; + pixel_x = 26; + pixel_y = 26; + req_access = newlist() + }, +/turf/simulated/floor/airless, +/area/awaymission/carpfarm/base) +"cf" = ( +/obj/structure/lattice, +/obj/structure/grille, +/turf/space, +/area/space) +"cg" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/airless, +/area/space) +"ch" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/space) +"ci" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/airless, +/area/space) +"cj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/space) +"ck" = ( +/turf/simulated/floor/airless, +/area/space) +"cl" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/space) +"cm" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/airless, +/area/space) +"cn" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/airless, +/area/space) +"co" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/airless, +/area/space) +"cp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/airless, +/area/space) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +aj +af +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +af +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +af +ah +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ae +aa +aa +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +af +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +aj +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +af +ah +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +af +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ac +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +ak +ak +ak +ak +ak +ak +aa +ak +ak +ak +am +am +am +am +am +am +am +ba +ba +ba +am +am +am +am +am +am +al +al +cf +cf +cf +cf +cf +cf +cf +cf +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ah +ah +ah +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +an +az +aJ +aJ +aJ +am +bb +bb +bb +am +bq +bc +bc +bM +am +al +aa +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ao +aA +aK +aK +aK +aW +bc +bc +bc +am +br +bc +bc +bN +am +al +aa +aa +al +al +al +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ap +aB +aL +aL +aL +am +bc +bc +bc +am +bs +bc +bG +bO +am +al +aa +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +bt +bc +bH +bP +am +am +cc +cg +cj +cj +cj +cj +cj +cn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aq +aC +aM +aQ +aS +am +bc +bc +bc +am +bu +bc +bI +bQ +bV +cb +cd +ch +ck +ck +ck +ck +cm +co +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ar +aD +aN +aQ +aS +aX +bc +bc +bc +bo +bc +bc +bJ +bQ +bW +cb +ce +ch +ck +ck +ck +ck +ck +co +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +as +aE +aO +aQ +aS +am +bc +bc +bc +am +bv +bF +bK +am +bX +am +cd +ci +cl +cl +cl +cl +cl +cp +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +am +am +am +am +am +am +ak +aa +al +al +aa +al +al +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +at +aF +aP +aP +aP +am +bc +bc +bc +am +bw +bx +bx +bx +bY +am +ak +ak +al +al +al +al +al +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +au +aG +aG +aG +aG +aY +bc +bc +bc +bp +bx +bx +bx +bx +bx +am +ak +ak +ak +al +aa +al +al +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +av +am +av +am +av +am +bc +bc +bc +am +by +bx +bx +bR +bx +am +ak +ak +ak +ak +ak +ak +al +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aw +am +aw +am +aw +am +bc +bc +bc +am +bz +bx +bL +bS +bZ +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +bd +bc +bc +am +bA +bx +bL +bT +bZ +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ax +aH +aI +aR +aH +am +bc +bc +bc +am +bB +bx +bx +bU +bx +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ay +aI +aI +aI +aI +aZ +bc +bc +bc +bp +bx +bx +bx +bx +bx +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +ax +aH +aI +ax +aH +am +bc +bc +bc +am +bC +bx +bx +bx +ca +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +bj +am +am +am +am +am +am +am +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aT +aS +be +aS +bk +aS +bD +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aT +aS +bf +aS +bl +aS +bE +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aS +aS +aS +aS +aS +aS +aS +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aS +aS +aS +aS +aS +aS +aS +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aU +aS +bg +aS +bm +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aV +aS +bh +aS +aT +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +aV +aS +bi +aS +bn +aS +aT +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +am +am +am +am +am +am +am +am +am +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ae +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +ak +aa +ak +ak +ak +ak +ak +ak +ak +ak +ak +ak +aa +aa +aa +ak +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +af +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ak +ak +ak +aa +aa +aa +aa +aa +aa +aa +aa +ak +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +aj +ah +af +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ah +ah +ah +ah +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +af +ah +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ah +ah +ah +ah +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ah +ah +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ae +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/gateway/listeningpost.dm b/maps/tether/submaps/gateway/listeningpost.dm new file mode 100644 index 0000000000..5f32d82147 --- /dev/null +++ b/maps/tether/submaps/gateway/listeningpost.dm @@ -0,0 +1,221 @@ +/obj/item/weapon/paper/listneningpost/mission + name = "\improper Operation: Watchtower" + info = {"Mission Details: You have been assigned to a newly constructed listening post + constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. + Accurate intel is crucial to the success of our operatives onboard, do not fail us."} + +/obj/item/weapon/paper/listneningpost/reciept + name = "\improper SpacEx reciept" + info = {"1 x Stechtkin pistol plus ammo - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"} + + +//////// 2558 //////// + +/obj/item/weapon/paper/listneningpost/year2558/april + name = "\improper April 2558 report" + info = {"A good start to the operation: intercepted Nanotrasen military communications. + A convoy is scheduled to transfer nuclear warheads to a new military base. This + is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."} + +/obj/item/weapon/paper/listneningpost/year2558/may + name = "\improper May 2558 report" + info = {"I have intercepted faint transmissions from what appears to be some sort of pirate + radio station. They do not appear to be relevant to my assignment. I also learned that + the NDV Brutus is back in operation after being taken out of commission during our + attack in March. Ever since Townes got killed, we've lost our eyes on the inside at + Nanotrasen. Hence my being here..."} + +/obj/item/weapon/paper/listneningpost/year2558/june + name = "\improper June 2558 Report" + info = {"Sounds like Nanotrasen stepped up their recruitment efforts. Virgo is no longer a + secluded research station, and its scientists are no longer hand-picked. This could + be a major oppertunity for us to start snooping around."} + +/obj/item/weapon/paper/listneningpost/year2558/july + name = "\improper July 2558 Report" + info = {"The crew has at least tripled in size since NT got rid of the application-based + process of recruitment. We've managed to find a few people interested in aiding + our cause. From atmospherics sabotoge to straight up bombing the place, we've got + several people ready to go in posing as nothing but more grey tide. It's perfect."} + +/obj/item/weapon/paper/listneningpost/year2558/august + name = "\improper August 2558 Report" + info = {"Sounds like our agents have been successful in rattling things up. With their recuitment + policies laxed, we've been able to carry out several attacks on the VORE. It sounds like + we're the least of their problems, though. They've discovered a new technology. Something + they're calling Redspace."} + +/obj/item/weapon/paper/listneningpost/year2558/september + name = "\improper September 2558 Report" + info = {"Something REALLY BAD is brewing at the VORE. This Redspace shit seems to have attracted + the attention of the cult of Nar-Sie. I think Nanotrasen is trying to weaponize it. We + need to put a stop to this before Nanotrasen can use these weapons against innocent + people and rival companies."} + +/obj/item/weapon/paper/listneningpost/year2558/october + name = "\improper October 2558 Report" + info = {"Oh my god, if it weren't for the impending doom, I'd be laughing my ass off at + all the hell VORE has put up with this month. Near mutiny over a retarded clown, + redspace aliens coming to kill them, and then V.G. Station crew getting mixed up + in a transfer which led to a major riot where DEATHSQUAD had to come clean up the + mess! We shouldn't have to worry about the VORE, but they know about something + called the Citadel. Apparently the cultists are trying to use redspace to bring + in an army from another dimension. We have no time left. We have to strike while + there's still something worth saving."} + +/obj/item/weapon/paper/listneningpost/year2558/november + name = "\improper November 2558 Report" + info = {"Maybe these VORE people aren't so bad after all. Mike says they actually HELPED during + our (apparently failed) attack on the Citadel. Shame they work for an evil corporation + like Nanotrasen though. They seem like a group of okay guys. Anyway, beside that, there + was a lot of commotion at the VORE recently. Space-time anomalies or something. Some + crazy guy showed up on the station claiming he's from 1945. The crew seems to think it's + legit though. Maybe he is. I don't think he is though. I'll keep monitoring the situation."} + +/obj/item/weapon/paper/listneningpost/year2558/december + name = "\improper December 2558 Report" + info = {"We hired a merc to capture their top Redspace scientist Kisuke Gema. Unfortunately, Colonel + Morgan was a fucking idiot as usual and turned his back for half a second, and the nerd cut + his fucking head off WITH HIS OWN ENERGY SWORD. At least the asshole didn't get any credit + for it. Sicko fuck took Morgan's severed head back with him as proof, but some janitor found + it and got all the credit and a big promotion. Just to add insult to injury, Santa visited + their station. IN PERSON. Meanwhile all I got was fucking socks... Okay fine I did need the + socks. It's cold as balls on this outpost... Damn it I'm lonely."} + +//////// 2559 //////// + +/obj/item/weapon/paper/listneningpost/year2559/january + name = "\improper January 2559 Report" + info = {"So, this guy from 1945 is legit. His name is Chase Monroe and he's a former Seargent in + the USCM or something. Although I feel like the USCM didn't exist in 1945. Also a pirate + stole one of our ships this month. A week later, the VORE gets attacked by some asshole + pirate flying one of our ships. Probably the same guy. They managed to take a hostage, + blow several bombs on the station, and even steal the nuke. VORE's security forces are + showing serious signs of weakness. Maybe we could exploit this."} + +/obj/item/weapon/paper/listneningpost/year2559/february + name = "\improper February 2559 Report" + info = {"Sounds like the World War 2 guy from Earth brought some unwanted friends along. Early + in the month, a battlecruiser showed up out of nowhere and started shooting up the station + and Central Command. They even knocked the Brutus out of commission. The Icarus apparently + sacrificed its self to protect the station and CentCom until the Soviets showed up. I guess + the Soviets got a beef with these guys too. Sounds like they jacked one of the Soviet's ships. + Makes sense, because a battleship like that doesn't just appear out of nowhere."} + +/obj/item/weapon/paper/listneningpost/year2559/march + name = "\improper March 2559 Report" + info = {"Hard to believe it's already been a year. NT's private navy has been running exercises more + often than usual. They also replaced the Icarus with a new and more heavily armed cruiser called + the Daedalus. They also have this new Battlenet AI which brought the VORE crew on a simulated + reenactment of Operation Magnum. They even had a copy of Townes, played by a cyborg. There have + been some really cryptic messages popping up though. It's eerily familiar. The message just keeps + repeating Bible verses and saying 'The Truth will set you free'... It's like what Townes used to + say about Nanotrasen. The Truth will set us free. The truth about all the atrocities Nanotrasen + has done over the years."} + +/obj/item/weapon/paper/listneningpost/year2559/april + name = "\improper April 2559 Report" + info = {"We were approached today by a man calling himself the 'Werwolf', alleged to be part of that group + that attacked Nanotrasen in early February. We never understood his motives WHY he attacked them. + Maybe he was trying to win brownie points with the Syndicate. If that was his goal, he's done well. + He offered to buy those nukes we stole last year. He also expressed great interest in our singularity + beacons. He's offered us a huge cache of weapons and a hefty sum in ancient gold and silver artifacts. + I think we're going to take the deal. When I get confirmation, I'll forward a line to Mike and Dave to + make the trade."} + +/obj/item/weapon/paper/listneningpost/year2559/may + name = "\improper May 2559 Report" + info = {"V.O.R.E. found something. An abandoned space station with a weapon called a mind flayer. There's also + rumor about some sort of a secret weapon NT was developing; a singularity bomb. Nothing of else of + real interest to report."} + +/obj/item/weapon/paper/listneningpost/year2559/june + name = "\improper June 2559 Report" + info = {"The WW2 guy is dead. Went out in a blaze of glory killing Space Nazis. Mike and Dave are pissed. + They apparently broke protocol and went to help the V.O.R.E. crew in the attack, and they want to + keep helping. I know it's unorthodox but I have to side with Mike and Dave on this one. Respectfully + command, if we do not neutralize this so-called Fourth Reich, we'll have an enemy much worse than + NanoTrasen to deal with. Curiously, NanoTrasen refuses to officially support helping to remove this + threat. Possible collaberation?"} + +/obj/item/weapon/paper/listneningpost/year2559/july + name = "\improper July 2559 Report" + info = {"USDF ships have been spotted in the area. Admiral Glenn Pink is on board. This guy went MIA almost + ten years ago, and now he's back? Why? Apparently he's got some kind of connection with V.O.R.E.'s + captain Ace. Sounds like they're gearing up to go kick some Nazi ass. It's like a bad action movie + plot. I don't know who this Admiral Pink is, but I guess Ace has at least a couple friends in high + places."} + +/obj/item/weapon/paper/listneningpost/year2559/august + name = "\improper August 2559 Report" + info = {"So, the reason Admiral Pink showed up in the last report was because these Space Nazis hijacked + one of his vessels; the USDF Jormungandr or something. Well, the crazy bastards took it back. + We overheard radio transmissions about some kind of huge mech, bigger than anything we've ever seen + in regard to exosuits. Tore up the crew bad. Killed a few, wounded all of them, but after-action + report says someone got close and slapped C4 on its leg while its anti-tank cannon was firing. + They managed to even capture another one and bring it home. Recommend command try to figure out + what this mech is, and if we can steal it. Furthermore, Dr. Kisuke Gema was KIA. His mechanical + arm was destroyed, and with it, all of his genetic information to get around his cloning disorder. + So he's finally out of our hair."} + +/obj/item/weapon/paper/listneningpost/year2559/september + name = "\improper September 2559 Report" + info = {"Of course it's not that simple. The nerd is back from the dead. Wonderful. I don't know how but + he's back, or they have a fake Kisuke Gema, or whatever bullshit. In other news, the station has + been slated for demolition. They're shipping a new Mark-3 Exodus-class station from Bay Shipyards + all the way from the NanoTrasen branch in Nyx. The demolition keeps getting delayed."} + +/obj/item/weapon/paper/listneningpost/year2559/october + name = "\improper October 2559 Report" + info = {"Station was demolished and operations were put on pause for a whole week. In other news, captain + Ace reportedly got a promotion to CentCom but something went wrong. The stronger loyalty implant + had a negative effect on him and almost killed him. He was quickly demoted back to Captain. This + could be useful information later. Recommend command investigate thoroughly."} + +/obj/item/weapon/paper/listneningpost/year2559/november + name = "\improper November 2559 Report" + info = {"A clown federation owned vessel called the Calypso was discovered in the Virgo system. It was a + ghost ship. Allegedly everyone on board perished due to a joke so funny that everyone laughed + themselves to madness, then death. NanoTrasen is trying to cover it up. No one knows why."} + +/obj/item/weapon/paper/listneningpost/year2559/december + name = "\improper December 2559 Report" + info = {"The V.O.R.E. discovered a new gateway location; a clown temple. We need to send someone to see + this. Reportedly it's full of tunnel clowns and these mutants called cluwnes. A clown researcher + came and tried to study the ruins and translate the glyphs, but I guess he discovered the joke. + I remember listening to him one week just absolutely losing it. Over the command channel, captain + Ace and the others talked about what they had to do, how he couldn't go back to the clown planet. + They never said it outright, but I think Ace put him out of his misery. All I know is the clown + researcher turned up dead. In other news, someone stole the station's entire cloning facility at + the end of the month right before Xmas. That shit was hilarious. We gotta find who this guy is + and see if he wants a job. Ask our contacts on station. Surely one of them knows who's behind + the heist."} + +/obj/item/weapon/paper/listneningpost/year2560/january + name = "\improper January 2560 Report" + info = {"A group of Akula pirates tried to kidnap Kisuke Gema. They succeded, but their leader died of + his injuries soon after. The other pirates defected. I wonder why?"} + +/obj/item/weapon/paper/listneningpost/year2560/february + name = "\improper February 2560 Report" + info = {"There were a few incidents regarding a redspace anomaly in the chapel but the effects have long + since subsided. Nothing of major interest otherwise."} + +/obj/item/weapon/paper/listneningpost/year2560/march + name = "\improper March 2560 Report" + info = {"Very quiet month. Nothing of interest to report. Perhaps the calm before the storm?"} + +/obj/item/weapon/paper/listneningpost/year2560/april + name = "\improper April 2560 Report" + info = {"A loud, painfully high pitched SSTV signal came across global comms. It seems to be a distress signal + of some kind. To what, I have no idea. Efforts to trace the signal's origin have fallen inconclusive."} + +/obj/item/weapon/paper/listneningpost/oddreport + name = "\improper Odd Report" + info = {"I wonder how much longer they will accept my empty reports. They will cancel the case soon without + results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic + solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. + If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space + will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that + stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should + it ever rear it's ugly head again. -Donk Co. Operative #451"} \ No newline at end of file diff --git a/maps/tether/submaps/gateway/listeningpost.dmm b/maps/tether/submaps/gateway/listeningpost.dmm new file mode 100644 index 0000000000..b5d285c63a --- /dev/null +++ b/maps/tether/submaps/gateway/listeningpost.dmm @@ -0,0 +1,20192 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"a" = ( +/turf/space, +/area) +"b" = ( +/obj/effect/blocker, +/turf/space, +/area) +"c" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/listeningpost) +"d" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"e" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"f" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"g" = ( +/turf/simulated/wall, +/area/awaymission/listeningpost) +"h" = ( +/turf/simulated/mineral, +/area/mine/unexplored) +"i" = ( +/turf/simulated/floor, +/area/awaymission/listeningpost) +"j" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper/monitorkey, +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/item/clothing/glasses/regular, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"k" = ( +/obj/structure/table/standard, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"l" = ( +/turf/simulated/mineral/floor/vacuum, +/area/mine/explored) +"m" = ( +/obj/machinery/computer/message_monitor{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"n" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/merc{ + desc = "A weary looking syndicate operative."; + faction = "syndicate" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"o" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "november report" + }, +/obj/item/weapon/pen, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"p" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"q" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/mask/gas, +/obj/item/clothing/head/helmet/space/syndicate, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"r" = ( +/obj/machinery/door/airlock, +/obj/item/weapon/paper{ + info = "I wonder how much longer they will accept my empty reports. They will cancel the case soon without results. When the pickup comes, I will tell them I have lost faith in our cause, and beg them to consider a diplomatic solution. How many nuclear teams have been dispatched with those nukes? I must try and prevent more from ever being sent. If they will not listen to reason, I will detonate the warehouse myself. Maybe some day in the immediate future, space will be peaceful, though I don't intend to live to see it. And that is why I write this down- it is my sacrifice that stabilised your worlds, traveller. Spare a thought for me, and please attempt to prevent nuclear proliferation, should it ever rear it's ugly head again. -Donk Co. Operative #451"; + name = "odd report" + }, +/obj/item/weapon/gun/projectile/pistol, +/obj/item/weapon/silencer, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"s" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/mineral, +/area/mine/unexplored) +"t" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/mineral, +/area/mine/unexplored) +"u" = ( +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area) +"v" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/brown, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"w" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"x" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"y" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/mineral, +/area/mine/unexplored) +"z" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"A" = ( +/obj/structure/closet, +/obj/item/clothing/gloves/boxing, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"B" = ( +/obj/structure/filingcabinet, +/obj/item/weapon/paper{ + info = "A good start to the operation: intercepted Nanotrasen military communications. A convoy is scheduled to transfer nuclear warheads to a new military base. This is as good a chance as any to get our hands on some heavy weaponry, I suggest we take it."; + name = "april report" + }, +/obj/item/weapon/paper{ + info = "Nothing of real interest to report this month. I have intercepted faint transmissions from what appears to be some sort of pirate radio station. They do not appear to be relevant to my assignment."; + name = "may report" + }, +/obj/item/weapon/paper{ + info = "Nanotrasen communications have been noticably less frequent recently. The pirate radio station I found last month has been transmitting pro-Nanotrasen propaganda. I will continue to monitor it."; + name = "june report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "july report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "august report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "september report" + }, +/obj/item/weapon/paper{ + info = "Nothing of interest to report."; + name = "october report" + }, +/obj/item/weapon/paper{ + info = "1 x Stechtkin pistol - $600
1 x silencer - $200
shipping charge - $4360
total - $5160"; + name = "receipt" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"C" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper{ + info = "Mission Details: You have been assigned to a newly constructed listening post constructed within an asteroid in Nanotrasen space to monitor their plasma mining operations. Accurate intel is crucial to the success of our operatives onboard, do not fail us."; + name = "mission briefing" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"D" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"E" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/awaymission/listeningpost) +"F" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/mineral, +/area/mine/unexplored) +"G" = ( +/obj/machinery/door/airlock{ + name = "Toilet" + }, +/turf/simulated/floor, +/area/awaymission/listeningpost) +"H" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/listeningpost) +"I" = ( +/obj/machinery/shower{ + icon_state = "shower"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/listeningpost) +"J" = ( +/obj/structure/toilet{ + icon_state = "toilet00"; + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/listeningpost) +"K" = ( +/turf/simulated/mineral/floor, +/area/mine/unexplored) +"L" = ( +/turf/simulated/floor/greengrid, +/area/mine/explored) +"M" = ( +/turf/simulated/mineral/floor, +/area/mine/explored) +"N" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 9 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"O" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 1 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"P" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 5 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"Q" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 8 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"R" = ( +/obj/machinery/gateway/centeraway, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"S" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 4 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"T" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 10 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"U" = ( +/obj/machinery/gateway, +/turf/simulated/floor/greengrid, +/area/mine/explored) +"V" = ( +/obj/machinery/gateway{ + icon_state = "off"; + dir = 6 + }, +/turf/simulated/floor/greengrid, +/area/mine/explored) + +(1,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(2,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(3,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(4,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(5,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(6,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(7,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(8,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(9,1,1) = {" +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +"} +(10,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(11,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(12,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(13,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(14,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(15,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(16,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(17,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(18,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(19,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(20,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(21,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(22,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(23,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(24,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(25,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(26,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(27,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(28,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(29,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(30,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(31,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(32,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(33,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(34,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(35,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(36,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(37,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(38,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +l +l +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(39,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +l +l +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(40,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(41,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(42,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(43,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(44,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(45,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(46,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(47,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(48,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(49,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(50,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(51,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(52,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +L +M +h +h +h +h +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(53,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +L +L +L +h +L +M +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(54,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +L +L +N +Q +T +L +L +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(55,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +L +L +O +R +U +L +L +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(56,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +M +L +P +S +V +L +L +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(57,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +M +L +L +L +L +L +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(58,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +M +M +L +M +M +M +M +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(59,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +K +K +K +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(60,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(61,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(62,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +a +a +h +h +h +h +a +a +a +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(63,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(64,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(65,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(66,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(67,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(68,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(69,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(70,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +l +l +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(71,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(72,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +a +a +a +h +h +h +h +h +h +h +h +h +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(73,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +h +h +h +h +h +h +h +h +h +l +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(74,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +h +h +h +h +h +h +h +h +h +h +l +a +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(75,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +l +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(76,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +l +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(77,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(78,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(79,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(80,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +c +c +c +c +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(81,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +c +v +i +A +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(82,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +c +c +c +h +c +w +i +B +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(83,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +c +c +m +c +c +c +g +f +g +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(84,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +c +j +n +p +i +r +i +i +C +c +c +c +c +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(85,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +c +c +k +o +k +i +g +i +i +i +G +H +H +c +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(86,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +i +f +i +i +i +i +g +i +i +D +g +I +J +c +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(87,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +d +g +i +i +i +q +g +x +z +E +c +c +c +c +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(88,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +c +c +c +e +e +c +c +c +c +c +E +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(89,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +c +i +i +c +h +h +h +h +t +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(90,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +c +i +i +c +h +s +y +y +F +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(91,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +c +e +e +c +h +t +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(92,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +a +a +a +a +h +t +h +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(93,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +a +a +a +a +a +u +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(94,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(95,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(96,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +a +h +h +h +h +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(97,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +a +a +a +h +h +h +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(98,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +h +h +h +h +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(99,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(100,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(101,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(102,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(103,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(104,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(105,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(106,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(107,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(108,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(109,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(110,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(111,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(112,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(113,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(114,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(115,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(116,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(117,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(118,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(119,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(120,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(121,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(122,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(123,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(124,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(125,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(126,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(127,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(128,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(129,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(130,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(131,1,1) = {" +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +b +a +a +a +a +a +a +a +a +"} +(132,1,1) = {" +a +a +a +a +a +a +a +a +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +b +a +a +a +a +a +a +a +a +"} +(133,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(134,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(135,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(136,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(137,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(138,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(139,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} +(140,1,1) = {" +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +a +"} diff --git a/maps/tether/submaps/gateway/snow_outpost.dm b/maps/tether/submaps/gateway/snow_outpost.dm new file mode 100644 index 0000000000..de9d70dfb1 --- /dev/null +++ b/maps/tether/submaps/gateway/snow_outpost.dm @@ -0,0 +1,41 @@ +// -- Areas -- // + +/area/awaymission/snow_outpost + icon_state = "blank" + requires_power = 0 + base_turf = /turf/snow/snow2 + ambience = list('sound/music/main.ogg', 'sound/ambience/maintenance/maintenance4.ogg', 'sound/ambience/sif/sif1.ogg', 'sound/ambience/ruins/ruins1.ogg') + base_turf = /turf/simulated/floor/snow/snow2 + +/area/awaymission/snow_outpost/outside + icon_state = "away1" + requires_power = 1 + always_unpowered = 1 + dynamic_lighting = 1 + power_light = 0 + power_equip = 0 + power_environ = 0 + mobcountmax = 100 + floracountmax = 7000 + valid_mobs = list(/mob/living/simple_mob/animal/sif/savik, /mob/living/simple_mob/animal/wolf, /mob/living/simple_mob/animal/sif/shantak, + /mob/living/simple_mob/animal/sif/kururak, /mob/living/simple_mob/animal/sif/frostfly) + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snow_outpost/restricted // No mob spawns! + icon_state = "red" + mobcountmax = 1 // Hacky fix. + floracountmax = 100 + valid_mobs = list(/obj/structure/flora/tree/pine) // Hacky fix. + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snow_outpost/outpost + icon_state = "away" + ambience = list('sound/ambience/chapel/chapel1.ogg', 'sound/ambience/ruins/ruins5.ogg', 'sound/ambience/ruins/ruins1.ogg') // Rykka was here. <3 diff --git a/maps/tether/submaps/gateway/snow_outpost.dmm b/maps/tether/submaps/gateway/snow_outpost.dmm new file mode 100644 index 0000000000..c3d57c4ece --- /dev/null +++ b/maps/tether/submaps/gateway/snow_outpost.dmm @@ -0,0 +1,22581 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/simulated/wall/snowbrick, +/area/awaymission/snow_outpost/restricted) +"ab" = ( +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ac" = ( +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ad" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ae" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"af" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ag" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ah" = ( +/obj/machinery/gateway/centeraway, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ai" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"aj" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"ak" = ( +/obj/machinery/gateway, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"al" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/tiled/old_tile/white, +/area/awaymission/snow_outpost/restricted) +"an" = ( +/obj/machinery/door/airlock/alien/public, +/turf/simulated/wall/snowbrick, +/area/awaymission/snow_outpost/restricted) +"ao" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ap" = ( +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"aq" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/floor/dungeon, +/area/awaymission/snow_outpost/outside) +"ar" = ( +/turf/simulated/floor/water/deep, +/area/awaymission/snow_outpost/outside) +"as" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/snow_outpost/outpost) +"at" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"au" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"av" = ( +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + icon_state = "map"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"ax" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1379; + id_tag = "sec_fore_pump" + }, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"ay" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"az" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, +/obj/structure/grille, +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aC" = ( +/obj/structure/railing, +/turf/simulated/floor/dungeon, +/area/awaymission/snow_outpost/outside) +"aD" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"aE" = ( +/turf/simulated/wall, +/area/awaymission/snow_outpost/outpost) +"aF" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southleft, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aH" = ( +/obj/machinery/suit_cycler, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aI" = ( +/obj/machinery/suit_cycler/mining, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aJ" = ( +/obj/machinery/suit_cycler/medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aK" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"aL" = ( +/obj/machinery/suit_cycler/engineering, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aM" = ( +/obj/machinery/suit_cycler/security, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aN" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aO" = ( +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aP" = ( +/obj/machinery/replicator, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aQ" = ( +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"aR" = ( +/obj/structure/AIcore, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"aS" = ( +/obj/machinery/porta_turret/stationary/syndie, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aT" = ( +/mob/living/simple_mob/mechanical/viscerator/mercenary, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"aU" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aV" = ( +/obj/machinery/clonepod/transhuman/full, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aW" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aX" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/mob/living/simple_mob/humanoid/merc/ranged/ionrifle, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aY" = ( +/obj/machinery/implantchair, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"aZ" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"ba" = ( +/obj/machinery/bodyscanner, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bb" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bc" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bd" = ( +/obj/machinery/telecomms/relay, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"be" = ( +/obj/machinery/telecomms/broadcaster, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bf" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bg" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bh" = ( +/obj/structure/ore_box, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bi" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bj" = ( +/obj/machinery/porta_turret/stationary/syndie, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"bk" = ( +/obj/machinery/power/breakerbox/activated, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bl" = ( +/obj/machinery/power/smes/magical, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bm" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bn" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bo" = ( +/obj/machinery/atmospherics/unary/vent_scrubber, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bp" = ( +/obj/machinery/door/airlock/highsecurity, +/obj/machinery/door/firedoor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bq" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"br" = ( +/obj/structure/table/standard, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bs" = ( +/obj/random/landmine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"bt" = ( +/turf/simulated/wall/solidrock{ + block_tele = 0 + }, +/area/awaymission/snow_outpost/outside) +"bu" = ( +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"bv" = ( +/obj/machinery/crystal/ice, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"bw" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/wall/r_wall, +/area/awaymission/snow_outpost/outpost) +"bx" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outpost) +"by" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bz" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bA" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + icon_state = "intact"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bC" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ + icon_state = "map"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bD" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 4; + use_power = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bE" = ( +/obj/machinery/door/firedoor, +/obj/machinery/door/airlock/security{ + being_shocked = 1; + locked = 1; + name = "Outpost Security Airlock"; + use_power = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bF" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bI" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bJ" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bK" = ( +/obj/machinery/atmospherics/pipe/manifold4w/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bL" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bM" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bN" = ( +/obj/machinery/door/airlock/silver, +/obj/machinery/door/firedoor, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 4; + icon_state = "intact" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bO" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bP" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 1; + external_pressure_bound = 0; + external_pressure_bound_default = 0; + icon_state = "map_vent_in"; + initialize_directions = 1; + internal_pressure_bound = 4000; + internal_pressure_bound_default = 4000; + pressure_checks = 2; + pressure_checks_default = 2; + pump_direction = 0; + use_power = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bQ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber{ + icon_state = "map_scrubber_off"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bR" = ( +/obj/structure/table/standard{ + name = "plastic table frame" + }, +/obj/machinery/door/firedoor, +/obj/machinery/door/window/southright, +/obj/machinery/door/window/northleft, +/obj/machinery/atmospherics/pipe/simple/hidden/cyan, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bS" = ( +/obj/tether_away_spawner/underdark_hard, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bT" = ( +/mob/living/simple_mob/humanoid/merc/ranged/laser, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bU" = ( +/mob/living/simple_mob/humanoid/merc/ranged/space, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/awaymission/snow_outpost/outpost) +"bV" = ( +/mob/living/simple_mob/humanoid/merc/ranged, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bW" = ( +/mob/living/simple_mob/humanoid/merc/melee, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bX" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/space, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"bY" = ( +/obj/structure/loot_pile/surface/bones, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"bZ" = ( +/obj/random/firstaid, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ca" = ( +/obj/random/landmine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cb" = ( +/obj/random/ammo, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cc" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cd" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"ce" = ( +/turf/simulated/wall/sandstone, +/area/awaymission/snow_outpost/outside) +"cf" = ( +/obj/item/weapon/ore/diamond, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cg" = ( +/obj/structure/boulder, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"ch" = ( +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"ci" = ( +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cj" = ( +/obj/item/weapon/ore, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"ck" = ( +/obj/structure/bed/alien, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cl" = ( +/obj/structure/cult/talisman, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cm" = ( +/obj/machinery/artifact, +/obj/structure/anomaly_container, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cn" = ( +/obj/structure/simple_door/sandstone, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"co" = ( +/obj/structure/loot_pile/surface/alien, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cp" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/floor/tiled/kafel_full/yellow, +/area/awaymission/snow_outpost/outside) +"cq" = ( +/obj/structure/closet/crate/secure/loot, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"cr" = ( +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"cs" = ( +/obj/item/weapon/ore, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ct" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cu" = ( +/obj/structure/anomaly_container, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"cv" = ( +/turf/simulated/wall, +/area/awaymission/snow_outpost/outside) +"cw" = ( +/obj/item/frame/apc, +/obj/item/weapon/module/power_control, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cx" = ( +/obj/structure/table/steel, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cy" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/excavation, +/obj/item/device/measuring_tape, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cz" = ( +/obj/machinery/power/port_gen/pacman/super, +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cA" = ( +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cB" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cC" = ( +/obj/structure/table/steel, +/obj/item/weapon/folder, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cD" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cE" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cF" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cG" = ( +/obj/structure/table/steel, +/obj/random/tech_supply, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cH" = ( +/obj/structure/table/rack, +/obj/item/weapon/shovel, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cI" = ( +/obj/structure/boulder, +/obj/effect/decal/mecha_wreckage/ripley, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cJ" = ( +/obj/structure/boulder, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cK" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/plating/external, +/area/awaymission/snow_outpost/outside) +"cL" = ( +/obj/structure/table/steel, +/obj/item/weapon/tool/wrench, +/obj/item/weapon/storage/box/samplebags, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cM" = ( +/obj/structure/table/steel, +/obj/item/stack/flag/yellow, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cN" = ( +/obj/random/toolbox, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cO" = ( +/obj/structure/closet/crate, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cP" = ( +/obj/machinery/floodlight, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cQ" = ( +/obj/structure/ore_box, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"cR" = ( +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"cS" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"cT" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cU" = ( +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cV" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cW" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cX" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cY" = ( +/obj/structure/table/standard, +/obj/structure/bedsheetbin, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"cZ" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"da" = ( +/obj/structure/old_roboprinter, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"db" = ( +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dc" = ( +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/obj/item/weapon/ore/gold, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dd" = ( +/obj/structure/table/standard, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"de" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"df" = ( +/obj/structure/window/reinforced/full, +/turf/simulated/wall, +/area/awaymission/snow_outpost/outside) +"dg" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dh" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"di" = ( +/obj/structure/table/standard, +/obj/item/weapon/cell/high, +/obj/item/weapon/cell/high, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dj" = ( +/obj/structure/loot_pile/maint/trash, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dk" = ( +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dl" = ( +/obj/machinery/power/apc{ + operating = 0; + pixel_x = 31 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dm" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dn" = ( +/obj/structure/closet/crate/trashcart, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"do" = ( +/obj/structure/closet/crate/engineering, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dp" = ( +/obj/machinery/light, +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dq" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dr" = ( +/obj/structure/closet/secure_closet/engineering_welding, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"ds" = ( +/obj/structure/table/rack, +/obj/item/weapon/pickaxe/drill, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dt" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"du" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dv" = ( +/obj/machinery/washing_machine, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dw" = ( +/obj/structure/ore_box, +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"dx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dy" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dz" = ( +/obj/machinery/light/small{ + brightness_color = "#DA0205"; + brightness_power = 1; + brightness_range = 5; + dir = 8 + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dA" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/asteroid_steel, +/area/awaymission/snow_outpost/outside) +"dB" = ( +/obj/structure/table/standard, +/obj/item/pizzabox, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"dC" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dD" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 1 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"dE" = ( +/obj/machinery/light/small, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dF" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/awaymission/snow_outpost/restricted) +"dG" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dH" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"dI" = ( +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dJ" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dK" = ( +/obj/structure/table/steel, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dL" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dM" = ( +/mob/living/simple_mob/humanoid/merc/ranged/smg/poi, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dN" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark6"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dO" = ( +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark0"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dP" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark10"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dQ" = ( +/mob/living/simple_mob/humanoid/merc/ranged/laser/poi, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dR" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark0"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"dS" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4; + icon_state = "propulsion_l" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/restricted) +"dT" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/table/rack, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"dU" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"dV" = ( +/obj/machinery/door/airlock/external{ + density = 1; + frequency = 1331; + id_tag = "merc_shuttle_outer"; + name = "Ship External Access"; + req_access = list(150) + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"dW" = ( +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"dX" = ( +/obj/machinery/gibber, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"dY" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"dZ" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ea" = ( +/obj/machinery/body_scanconsole, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eb" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark5"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"ec" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ed" = ( +/obj/structure/table/steel, +/obj/item/weapon/gun/projectile/automatic/wt550, +/obj/item/weapon/gun/projectile/automatic/p90, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ee" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ef" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eg" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eh" = ( +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ei" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ej" = ( +/obj/effect/decal/cleanable/blood, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ek" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"el" = ( +/obj/machinery/organ_printer/flesh, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"em" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark9"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"en" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark6"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"eo" = ( +/mob/living/simple_mob/mechanical/viscerator, +/mob/living/simple_mob/mechanical/viscerator, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ep" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"eq" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"er" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"es" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"et" = ( +/obj/effect/decal/cleanable/blood/drip, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eu" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ev" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"ew" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor/full, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ex" = ( +/obj/structure/table/steel, +/obj/item/weapon/grenade/smokebomb, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"ey" = ( +/obj/effect/floor_decal/borderfloor/corner, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ez" = ( +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eA" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eB" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/surgery, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eC" = ( +/obj/structure/table/standard, +/obj/item/weapon/tank/anesthetic, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eD" = ( +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eE" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/gloves/sterile, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eF" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/item/weapon/reagent_containers/spray/sterilizine, +/obj/effect/floor_decal/corner/green/border, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eG" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/masks, +/obj/effect/floor_decal/corner/green/border{ + icon_state = "bordercolor"; + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eH" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eI" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eJ" = ( +/obj/machinery/door/airlock/security{ + locked = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eK" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/restricted) +"eL" = ( +/turf/simulated/floor/tiled/steel, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark10"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"eM" = ( +/obj/machinery/computer/communications, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eN" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eO" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eP" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eQ" = ( +/obj/structure/table/steel, +/obj/item/weapon/material/knife, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eR" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eS" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eT" = ( +/mob/living/simple_mob/humanoid/merc/ranged/smg/poi, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eU" = ( +/obj/structure/table/steel, +/obj/random/toolbox, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"eV" = ( +/obj/structure/table/steel, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"eW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snow_outpost/restricted) +"eX" = ( +/obj/structure/table/steel, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eY" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"eZ" = ( +/mob/living/simple_mob/animal/giant_spider/ion, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"fa" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fb" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fc" = ( +/obj/structure/table/steel, +/obj/random/projectile, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fd" = ( +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fe" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/snow_outpost/restricted) +"ff" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fg" = ( +/obj/effect/floor_decal/corner/grey, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fh" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fi" = ( +/obj/structure/table/steel, +/obj/item/pizzabox, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fj" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fk" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fl" = ( +/obj/machinery/door/airlock/glass, +/obj/effect/floor_decal/borderfloor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fm" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snow_outpost/restricted) +"fo" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "BSD APC"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fp" = ( +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fq" = ( +/obj/machinery/computer/area_atmos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/merc/ranged/laser/poi, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fs" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"ft" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fu" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper{ + info = "We need to take a short stop. The engine's are in need of minor repairs due to turbulence, should be a week's time. We've got reserve food supplies but pleanty of locale fauna to subsist on too if need be. PCRC is keeping most of there assets near New Reykjavik and locale authorities are more mindful then most to travel in this kind of weather. Our outfit should be at the rendezvous point in less then ten days assuming the upper ecehelon hasn't dropped ties with us yet."; + name = "Operation Progress/M-53" + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fv" = ( +/obj/structure/table/steel, +/obj/item/weapon/paper_bin, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fw" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fx" = ( +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fy" = ( +/obj/machinery/portable_atmospherics/canister/empty/oxygen, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fz" = ( +/obj/machinery/atmospherics/pipe/tank/oxygen, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/yellow, +/area/awaymission/snow_outpost/restricted) +"fA" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fB" = ( +/obj/structure/bed/chair/office/dark, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fC" = ( +/obj/structure/table/steel, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fD" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fE" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fF" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fG" = ( +/obj/machinery/door/airlock, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fH" = ( +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fI" = ( +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fJ" = ( +/obj/structure/table/steel, +/obj/item/weapon/gun/projectile/pistol, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fK" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fL" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/bed, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fM" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fN" = ( +/mob/living/simple_mob/mechanical/viscerator, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fO" = ( +/obj/structure/table/steel, +/obj/random/energy, +/turf/simulated/floor/tiled/steel_grid, +/area/awaymission/snow_outpost/restricted) +"fP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/mob/living/simple_mob/humanoid/merc/melee/sword/poi, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fQ" = ( +/obj/structure/toilet{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snow_outpost/restricted) +"fR" = ( +/obj/machinery/light, +/obj/structure/table/rack, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/head/helmet/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/item/clothing/suit/space, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fS" = ( +/obj/structure/dispenser/oxygen, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fT" = ( +/obj/structure/table/woodentable, +/obj/random/projectile, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fU" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"fV" = ( +/obj/tether_away_spawner/aerostat_inside, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fW" = ( +/obj/item/weapon/ore/gold, +/obj/tether_away_spawner/aerostat_inside, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fX" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fY" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"fZ" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ga" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gb" = ( +/obj/item/weapon/shovel, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gc" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gd" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ge" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gf" = ( +/obj/item/ammo_casing/a45, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gg" = ( +/obj/item/ammo_casing/a45, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gh" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gi" = ( +/obj/structure/flora/tree/sif, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gj" = ( +/obj/item/ammo_casing/a45, +/obj/random/landmine, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gk" = ( +/obj/random/landmine, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gl" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gm" = ( +/obj/item/ammo_casing/a45, +/obj/item/ammo_casing/a45, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gn" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"go" = ( +/obj/item/weapon/reagent_containers/food/snacks/xenomeat/spidermeat, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gp" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"gq" = ( +/obj/item/clothing/accessory/storage/webbing, +/obj/item/weapon/material/knife/tacknife/combatknife, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gr" = ( +/mob/living/simple_mob/animal/giant_spider, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gs" = ( +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gt" = ( +/obj/random/mob/spider, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gu" = ( +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gv" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gw" = ( +/mob/living/simple_mob/animal/giant_spider/webslinger, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gx" = ( +/obj/effect/decal/cleanable/cobweb2, +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gy" = ( +/obj/random/landmine, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gz" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gA" = ( +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"gB" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gC" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_3" + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gD" = ( +/obj/structure/closet/crate, +/obj/item/stack/cable_coil, +/obj/item/stack/cable_coil, +/obj/item/weapon/storage/toolbox, +/obj/random/toolbox, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gE" = ( +/obj/structure/loot_pile/maint/technical, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gF" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gG" = ( +/obj/machinery/power/port_gen/pacman, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gH" = ( +/obj/structure/closet/crate, +/obj/item/weapon/reagent_containers/hypospray, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin, +/obj/item/weapon/reagent_containers/pill/antitox, +/obj/item/weapon/reagent_containers/pill/antitox, +/obj/item/weapon/reagent_containers/pill/antitox, +/obj/item/weapon/reagent_containers/pill/paracetamol, +/obj/random/firstaid, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gI" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gJ" = ( +/obj/structure/closet/crate, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/contraband, +/obj/random/energy, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/obj/item/weapon/material/star, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gK" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/lurker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"gL" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gM" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gN" = ( +/obj/machinery/computer/communications, +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gO" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"gP" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gQ" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gR" = ( +/obj/structure/flora/tree/dead, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gS" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gT" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gU" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gV" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"gW" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gX" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/outside) +"gY" = ( +/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"gZ" = ( +/obj/random/trash, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"ha" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/lipstick/random, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hb" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/structure/curtain/open/bed, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hc" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/pill/happy{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hd" = ( +/obj/structure/curtain/black, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"he" = ( +/obj/random/trash, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hf" = ( +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hg" = ( +/obj/effect/decal/remains/mouse, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hh" = ( +/obj/structure/closet/cabinet, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hi" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/pill/methylphenidate{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hj" = ( +/obj/structure/bed/chair/comfy/beige{ + icon_state = "armchair_preview"; + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hk" = ( +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hl" = ( +/obj/random/junk, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hm" = ( +/obj/structure/closet/cabinet, +/obj/item/weapon/contraband/poster, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hn" = ( +/obj/structure/bed/chair/comfy/beige, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"ho" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/obj/item/weapon/reagent_containers/syringe/drugs, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hp" = ( +/obj/structure/bed/chair/comfy/beige, +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hq" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hr" = ( +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/obj/item/weapon/reagent_containers/pill/citalopram{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hs" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/pill_bottle/happy, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"ht" = ( +/obj/structure/table/standard, +/obj/item/stack/medical/splint, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hu" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/pill/citalopram, +/obj/item/weapon/reagent_containers/pill/citalopram, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hv" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/pill/tramadol, +/obj/item/weapon/reagent_containers/pill/tramadol, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hw" = ( +/obj/structure/closet/cabinet, +/obj/item/clothing/accessory/jacket, +/obj/item/weapon/material/butterfly/switchblade, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hx" = ( +/obj/item/weapon/reagent_containers/pill/zoom{ + name = "pill" + }, +/obj/random/trash, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hy" = ( +/obj/item/weapon/reagent_containers/pill/zoom{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hz" = ( +/obj/structure/loot_pile/maint/boxfort, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hA" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/scalpel, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hB" = ( +/obj/item/wheelchair, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hC" = ( +/obj/structure/table/standard, +/obj/random/firstaid, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hD" = ( +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hE" = ( +/obj/effect/floor_decal/rust, +/obj/structure/table/standard, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"hF" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/pill/zoom, +/obj/item/weapon/reagent_containers/pill/zoom, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hG" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/pill/tramadol{ + name = "pill" + }, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hH" = ( +/mob/living/simple_mob/mechanical/hivebot/ranged_damage/strong/guard, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hI" = ( +/obj/structure/girder, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hJ" = ( +/obj/item/weapon/material/shard, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"hK" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hL" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/syringe/drugs, +/turf/simulated/floor/carpet, +/area/awaymission/snow_outpost/outside) +"hM" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hN" = ( +/obj/effect/spider/spiderling/frost, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hO" = ( +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hP" = ( +/obj/random/mob/spider/mutant, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hQ" = ( +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/spacecash/c100, +/obj/effect/decal/remains, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hR" = ( +/obj/random/mob/spider, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hS" = ( +/obj/item/weapon/grenade/spawnergrenade/spider, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hT" = ( +/obj/random/toolbox, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hU" = ( +/obj/effect/decal/mecha_wreckage/ripley, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hV" = ( +/obj/item/mecha_parts/mecha_equipment/tool/drill/diamonddrill, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hW" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hX" = ( +/obj/effect/spider/stickyweb, +/obj/effect/spider/stickyweb, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/snow_outpost/outside) +"hY" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/floor/outdoors/ice{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"hZ" = ( +/mob/living/simple_mob/animal/giant_spider/frost, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ia" = ( +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ib" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ic" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"id" = ( +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"ie" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"if" = ( +/turf/simulated/shuttle/wall, +/area/awaymission/snow_outpost/outside) +"ig" = ( +/obj/structure/shuttle/window, +/obj/structure/grille, +/turf/simulated/shuttle/plating, +/area/awaymission/snow_outpost/outside) +"ih" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ii" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = -32; + pixel_y = 0 + }, +/obj/structure/loot_pile/maint/junk, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"ij" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/obj/effect/decal/remains/posi, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/vending/wallmed1{ + layer = 3.3; + name = "Emergency NanoMed"; + pixel_x = 28; + pixel_y = 0 + }, +/obj/item/clothing/shoes/brown, +/obj/item/clothing/under/mbill, +/obj/item/clothing/head/soft/mbill, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"ik" = ( +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 1 + }, +/obj/structure/closet/walllocker/emerglocker/east, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -28 + }, +/obj/structure/closet/crate/hydroponics{ + desc = "All you need to destroy that pesky planet."; + name = "exotic seeds crate"; + starts_with = list(/obj/item/seeds/random = 6, /obj/item/seeds/replicapod = 2, /obj/item/seeds/ambrosiavulgarisseed = 2, /obj/item/seeds/kudzuseed, /obj/item/seeds/libertymycelium, /obj/item/seeds/reishimycelium) + }, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"il" = ( +/obj/structure/shuttle/engine/propulsion/burst, +/turf/simulated/shuttle/wall, +/area/awaymission/snow_outpost/outside) +"im" = ( +/obj/structure/door_assembly/door_assembly_ext{ + anchored = 1 + }, +/turf/simulated/floor/water, +/area/awaymission/snow_outpost/outside) +"in" = ( +/turf/unsimulated/mineral, +/area/awaymission/snow_outpost/outside) +"io" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/outdoors/dirt, +/area/awaymission/snow_outpost/outside) +"ip" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iq" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"ir" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"is" = ( +/turf/simulated/mineral, +/area/awaymission/snow_outpost/outside) +"it" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iu" = ( +/obj/structure/shuttle/engine/propulsion/burst{ + icon_state = "propulsion"; + dir = 8 + }, +/turf/simulated/shuttle/wall, +/area/awaymission/snow_outpost/outside) +"iv" = ( +/obj/effect/spider/eggcluster/small/frost, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iw" = ( +/obj/machinery/door/airlock/external{ + name = "Escape Pod Hatch"; + welded = 1 + }, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"ix" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 28 + }, +/obj/item/device/radio/intercom{ + pixel_y = -26 + }, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"iy" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/vending/wallmed1{ + name = "Emergency NanoMed"; + pixel_y = 28 + }, +/obj/machinery/light, +/obj/item/weapon/weldingtool/largetank, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"iz" = ( +/obj/machinery/status_display{ + density = 0; + layer = 4; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/bed/chair{ + icon_state = "chair_preview"; + dir = 8 + }, +/obj/effect/decal/remains, +/obj/effect/decal/cleanable/blood/splatter, +/obj/item/ammo_casing/spent, +/obj/item/clothing/under/suit_jacket/really_black, +/obj/item/clothing/shoes/dress, +/obj/item/clothing/glasses/sunglasses, +/obj/random/multiple/gun/projectile/handgun, +/turf/simulated/shuttle/floor, +/area/awaymission/snow_outpost/outside) +"iA" = ( +/mob/living/simple_mob/animal/giant_spider/frost/sif{ + ai_holder_type = /datum/ai_holder/simple_mob/guard/give_chase + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iB" = ( +/mob/living/simple_mob/animal/giant_spider/carrier{ + ai_holder_type = /datum/ai_holder/simple_mob/guard/give_chase + }, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iC" = ( +/obj/effect/spider/stickyweb, +/obj/effect/spider/stickyweb, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iD" = ( +/obj/structure/closet/crate/mimic/dangerous, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"iE" = ( +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iF" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/outside) +"iG" = ( +/obj/structure/closet/grave, +/obj/structure/gravemarker, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iH" = ( +/obj/structure/closet/crate/mimic/dangerous, +/turf/simulated/floor, +/area/awaymission/snow_outpost/outside) +"iI" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/tiled, +/area/awaymission/snow_outpost/outside) +"iJ" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iK" = ( +/turf/simulated/floor/outdoors/ice, +/area/awaymission/snow_outpost/restricted) +"iL" = ( +/obj/vehicle/bike, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iM" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/floor/snow/snow2, +/area/awaymission/snow_outpost/outside) +"iN" = ( +/turf/simulated/floor/water/deep, +/area/awaymission/snow_outpost/restricted) +"iO" = ( +/obj/mecha/combat/phazon/equipped, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iP" = ( +/obj/machinery/atmospherics/unary/vent_pump, +/obj/item/weapon/cell/infinite, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ + dir = 5; + icon_state = "intact" + }, +/obj/item/weapon/cell/infinite, +/obj/item/weapon/cat_box, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iR" = ( +/obj/machinery/atmospherics/unary/vent_pump{ + dir = 8; + external_pressure_bound = 140; + external_pressure_bound_default = 140; + icon_state = "map_vent_out"; + pressure_checks = 1; + pressure_checks_default = 1; + use_power = 1 + }, +/obj/item/stack/material/phoron, +/turf/simulated/floor/tiled/white, +/area/awaymission/snow_outpost/outpost) +"iS" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"iT" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/item/toy/plushie/spider, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snow_outpost/restricted) +"iU" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark5"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"iV" = ( +/turf/simulated/floor/snow/snow2, +/turf/simulated/shuttle/wall/dark{ + icon_state = "dark9"; + name = "Unknown Shuttle" + }, +/area/awaymission/snow_outpost/restricted) +"iW" = ( +/obj/effect/decal/remains/deer, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iX" = ( +/obj/structure/bonfire/permanent, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iY" = ( +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"iZ" = ( +/obj/structure/dogbed, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"ja" = ( +/obj/structure/closet/crate/mimic/dangerous, +/turf/simulated/floor/outdoors/dirt{ + outdoors = 0 + }, +/area/awaymission/snow_outpost/restricted) +"jb" = ( +/obj/structure/flora/tree/sif, +/turf/unsimulated/mineral, +/area/awaymission/snow_outpost/outside) +"je" = ( +/turf/unsimulated/mineral, +/area/awaymission/snow_outpost/restricted) + +(1,1,1) = {" +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +"} +(2,1,1) = {" +in +hZ +ia +ia +ic +id +id +id +id +ib +ia +ih +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(3,1,1) = {" +in +ab +ia +ic +id +id +ar +ar +ar +id +id +ia +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +hX +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(4,1,1) = {" +in +ab +ib +id +if +if +if +if +il +ar +ar +id +io +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +cd +cd +cd +cd +hO +hQ +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +hX +hX +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(5,1,1) = {" +in +ab +ia +id +ig +ii +ij +ik +im +ar +ar +id +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cr +cr +hO +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +da +da +da +da +ab +ab +ab +ab +ab +ab +dz +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(6,1,1) = {" +in +ab +ia +ie +if +if +if +if +il +ar +id +id +io +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +hN +cr +cd +cd +cd +hM +hM +cd +cd +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(7,1,1) = {" +in +ab +ia +ia +ih +ia +id +id +id +id +ia +io +ia +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +cd +hM +cr +cr +cd +cd +cr +cr +cr +hP +cr +cr +cr +cr +cr +cr +hN +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +fW +fV +fV +fV +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(8,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cr +cr +hR +cr +cr +cr +cr +cr +cr +hM +cr +cr +cr +cr +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +db +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(9,1,1) = {" +in +ab +ab +iq +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +hM +cr +cr +cr +cr +hM +hM +cr +cr +cr +cr +cd +cr +cr +hP +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +dc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(10,1,1) = {" +in +ab +ab +ab +ap +ap +ar +ar +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ce +ce +ce +ce +ce +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(11,1,1) = {" +in +ab +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cQ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ce +ce +ch +ch +ch +ce +ce +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(12,1,1) = {" +in +ab +ab +ge +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +hM +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +hM +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +dm +ab +ab +ab +cR +dA +cR +cR +cR +ab +ab +cd +cd +cd +ce +ch +ch +cm +ch +ch +ce +cd +cd +cd +cd +cd +cd +cJ +cN +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(13,1,1) = {" +in +ab +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +hM +hN +cr +cr +hT +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +hM +cd +cd +cd +cd +cd +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +cR +dw +cR +cv +dC +cv +cR +ab +ab +cd +cd +cd +ce +ch +ch +ch +ch +ch +ce +cd +cd +cd +cv +cz +cF +cK +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(14,1,1) = {" +in +ab +ab +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +hM +cr +cr +cr +hM +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +hM +cr +cr +cd +cd +cd +cd +cd +cR +cv +cv +cv +cv +df +df +df +df +df +cv +cv +cv +cv +cv +dD +cv +cR +ab +ab +cd +cd +cd +ce +ce +ce +cn +ce +ce +ce +cq +cd +cd +cw +cA +ci +ci +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(15,1,1) = {" +in +ab +fY +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cS +cv +cT +cU +cU +cU +cU +cU +cU +cU +cT +ds +ds +cv +cv +dC +cv +cR +ab +ab +cd +cd +cd +ce +ch +ch +ch +ch +ch +ce +cr +ab +cs +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(16,1,1) = {" +in +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +cd +cd +hM +cr +cr +hM +cd +cd +hU +hV +hM +cd +cd +cd +cd +cr +cr +cr +hP +cd +cd +cd +cd +cR +cv +cU +cU +cU +dg +cU +cU +cU +cU +dg +cU +cU +cU +cU +cU +cv +cR +ab +ab +cd +cd +cd +ce +ch +ch +ch +ch +ch +cn +ch +ab +ab +ab +cB +cB +ct +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(17,1,1) = {" +in +dH +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +hM +cr +cr +cr +cr +cr +cr +cr +cr +hM +cd +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cR +cv +cv +cZ +cv +cv +cv +cZ +cv +cv +cv +cv +cv +cv +cv +dC +cv +cR +ab +dE +cd +cd +cd +ce +ch +cl +ci +ch +ch +ce +ch +ab +ab +cx +cC +cG +cL +cO +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(18,1,1) = {" +in +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +hN +cr +cr +cr +hR +cr +cr +cr +cr +hM +hW +cd +cd +cr +cr +cr +cd +cd +cd +cd +cd +cR +cv +cV +cU +cV +cv +dh +dk +dk +dn +cv +cT +cU +dx +cU +cU +cv +cR +ab +ab +cd +cd +cd +ce +ci +ci +ci +ch +ch +ce +ch +ab +ab +cy +cD +cH +cM +cP +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(19,1,1) = {" +in +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cr +cr +cr +cr +cr +cr +cr +hP +cr +cr +hM +cd +cr +cr +hM +hM +cd +cd +cd +cd +cd +cR +cv +cW +cU +dd +cv +di +dk +dk +do +cv +dt +cU +dy +cW +dy +cv +cR +cd +cd +cd +cd +cd +cg +cj +ci +ch +ch +ch +ch +ch +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(20,1,1) = {" +in +fY +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +cr +hN +hM +cd +cd +cd +cd +cd +cd +cd +cR +cv +cX +cU +de +cv +di +dk +dk +dp +cv +du +cU +dy +cW +dy +cv +cR +cd +cd +cd +cd +cd +ce +ci +ch +ch +ch +ch +cj +ab +ab +ab +ab +ct +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(21,1,1) = {" +in +ab +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +hP +cr +cr +cd +hM +hM +hM +hM +hM +hM +cr +cr +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cS +cv +cY +cU +cW +cv +dj +dk +dk +dq +cv +iI +cU +dy +dB +dy +cv +cR +cd +cd +cd +cd +cd +ce +ce +ce +ch +ci +ci +ce +cs +ab +ct +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(22,1,1) = {" +in +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +gd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cr +cr +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cR +cv +cV +cU +cV +cv +iH +dk +dl +dr +cv +dv +cU +dg +cU +cU +cv +cd +cd +cd +cd +cd +cd +ce +ch +ch +ch +ch +cp +ce +ct +ab +ab +ab +cE +ab +ct +cQ +cQ +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(23,1,1) = {" +in +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cr +hN +cr +cr +hS +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cR +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cd +cd +cd +cd +cd +cd +ce +ck +ch +ch +ch +ch +ci +ab +ab +cu +cu +cd +cI +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(24,1,1) = {" +in +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +gd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cr +cr +hN +hP +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ce +ce +ch +co +ch +ce +ci +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(25,1,1) = {" +in +dH +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +ab +dH +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +bs +aO +aO +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +cd +cd +cd +cr +cr +cr +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +fX +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ce +ce +ce +ce +ce +cd +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(26,1,1) = {" +in +ab +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ap +gd +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aT +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(27,1,1) = {" +in +ab +ab +ap +ap +ap +ar +ar +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +dH +ab +ab +cd +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(28,1,1) = {" +in +ab +ab +dH +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +bj +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aT +aO +aO +bj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(29,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +bj +as +as +bn +as +as +as +as +as +as +as +as +as +as +as +as +as +as +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +hY +bu +bu +bv +bu +cd +cd +ao +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(30,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +is +ab +ab +ab +ab +ab +ab +ca +aO +aO +aO +as +bk +at +bG +ay +bw +ay +ay +aw +ay +ay +ay +ay +bx +aw +ay +aA +au +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bu +bv +bu +bu +bu +hY +bu +bu +bu +bu +bu +bu +cd +cd +ao +ab +ao +cd +cd +cd +cd +ao +cd +cd +cd +cd +cd +cd +in +"} +(31,1,1) = {" +in +ab +ab +ab +ab +ab +dH +ab +ab +ab +is +is +is +ab +ab +dH +ab +ab +ab +ab +aO +aO +aO +as +bl +at +aG +bm +as +aX +at +bH +at +at +at +at +av +ax +az +ax +aB +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +bu +bu +cd +cd +ao +ab +ao +ab +ab +cd +ao +ao +cd +cd +cd +cd +cd +cd +in +"} +(32,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +is +is +is +is +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +as +as +as +as +as +bg +at +bH +at +at +at +at +bq +at +at +at +au +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +bu +bu +hY +bu +bu +bu +bu +bu +bu +bu +bu +bu +cd +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +in +"} +(33,1,1) = {" +in +ge +ab +ab +ab +ab +ab +ab +ab +ab +is +is +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +aP +bz +aW +bD +aE +at +at +bH +at +at +at +bV +as +as +as +as +as +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +iJ +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +bu +bu +bu +bu +bu +bv +bu +bu +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +ao +ab +ab +ab +ab +ao +ab +cd +cd +cd +in +"} +(34,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aT +aO +aO +as +aY +bH +aZ +bH +aF +at +at +bH +at +at +at +at +as +bj +aO +aO +bj +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +fX +ab +ab +ab +gc +ab +ab +cd +ab +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bv +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +cd +ao +ab +ab +hZ +ab +ab +cd +cd +cd +in +"} +(35,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +aO +aO +aO +as +aU +aG +ay +bC +bR +aw +ay +bK +ay +ay +ay +aA +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +cd +cd +cd +cd +cd +ab +fZ +ab +dH +ab +fZ +gb +ab +fY +ab +ab +ab +ab +cd +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +cd +cd +bt +ab +ab +ab +hZ +cd +cd +cd +in +"} +(36,1,1) = {" +in +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +it +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +aV +at +bW +at +br +bH +at +bH +at +at +at +bH +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +fY +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +gd +ab +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +hY +bu +bu +bu +bu +bu +bu +bv +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(37,1,1) = {" +in +ab +ab +ab +ir +ab +ab +ab +ab +ab +ab +it +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +aE +bg +at +bc +aE +bL +bT +bH +bT +at +bT +bO +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +fX +ab +ab +ab +ab +ab +ab +fZ +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bv +bu +bu +bu +bv +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(38,1,1) = {" +in +ab +ab +ab +ab +ir +ab +ab +ab +ir +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +ba +at +at +as +as +as +as +bN +as +bn +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +fZ +ab +ab +dH +ab +ab +ab +ab +ab +ab +fX +cd +cd +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(39,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bb +at +at +bn +at +at +as +bH +at +at +bG +bP +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +eZ +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +ao +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(40,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +bj +as +as +as +as +as +bG +ay +bF +bK +ay +ay +bC +bQ +as +aO +aO +aO +aO +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +cd +cd +cd +ab +ga +ab +ab +ab +ab +fX +ab +ab +fZ +ab +ab +cd +cd +ab +ab +cd +cd +bu +bu +bu +bu +bv +bu +bu +hY +bu +bu +bu +bu +bv +bv +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(41,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bo +aA +bS +as +bH +at +bn +bH +at +aS +at +aS +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ga +ab +ab +ab +cd +cd +cd +cd +ab +ab +cd +cd +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bu +bv +bv +bv +bu +bu +bu +bu +bu +bu +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(42,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +aO +aO +aO +as +bS +bA +ay +bE +bI +at +as +bN +as +as +bp +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +cd +cd +bu +bu +bv +bu +bu +bu +bu +bu +bu +bu +bu +bu +ab +bv +bu +bu +bu +bu +bu +bu +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(43,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +by +bB +bS +as +bH +bX +as +bH +as +aQ +aQ +aQ +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +bv +bv +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +ab +bv +cd +cd +cd +cd +bu +bu +bv +bv +cd +cd +cd +cd +cd +cd +in +"} +(44,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aT +aO +aO +as +as +as +as +as +bJ +at +as +bH +as +aK +aR +aQ +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +ab +ab +cd +cd +bv +bv +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +ab +ao +cd +cd +cd +cd +bu +bu +bv +bv +cd +cd +cd +cd +cd +cd +in +"} +(45,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +iP +iQ +iO +as +bH +at +as +bH +as +aQ +bU +aQ +as +aO +aO +aO +aO +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +ab +ao +cd +cd +ao +ab +ab +ao +cd +cd +cd +cd +hY +bu +bu +bu +cd +cd +cd +cd +cd +cd +in +"} +(46,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bo +bC +ay +bF +bK +aA +as +bH +as +as +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ge +ab +ab +cd +cd +cd +cd +cd +cd +cd +ab +ao +cd +cd +ao +ab +ab +ao +cd +cd +cd +cd +bu +bu +bu +bu +cd +cd +cd +cd +cd +cd +in +"} +(47,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +bd +be +bd +as +bL +bM +as +bi +ay +aA +at +bf +as +aO +aO +bs +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +cd +cd +ab +ab +ao +ao +cd +cd +cd +cd +bv +bv +ab +ab +cd +cd +cd +cd +cd +cd +in +"} +(48,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +as +as +as +as +as +as +as +as +as +as +bN +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ao +ab +cd +cd +ab +ab +ab +ao +cd +cd +cd +cd +bv +bv +ab +ab +cd +cd +cd +cd +cd +cd +in +"} +(49,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +bj +as +aH +at +bH +at +aL +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ao +ao +cd +cd +ao +ab +cd +cd +cd +bv +bu +bu +bu +bv +bv +ao +ab +ab +ao +cd +cd +cd +cd +cd +cd +ao +ab +ab +ao +cd +cd +cd +cd +in +"} +(50,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +as +aI +bG +bC +aA +aM +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +ao +cf +ao +ao +ab +ab +cd +cd +cd +hY +bu +bv +bu +bv +bv +bv +ao +ab +ab +cd +cd +ao +ab +ab +cd +ab +ab +ab +ao +cd +cd +cd +cd +in +"} +(51,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aT +aO +aO +aO +as +aJ +iR +bh +bO +aN +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bu +bu +bu +bu +cd +cd +cd +cd +ab +ab +ab +ao +ab +ab +ab +ao +ab +ab +ab +ao +cd +cd +cd +cd +in +"} +(52,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +as +as +as +as +as +as +as +aO +aO +aO +aO +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +dH +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +bu +bu +bu +bu +cd +ao +ao +cd +ab +ao +ab +ao +ab +ab +ab +ab +ab +ab +ao +ao +cd +cd +cd +cd +in +"} +(53,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aO +aT +aO +aO +aO +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ab +cd +ao +cf +ab +ab +ab +ab +ab +ab +ab +bu +bu +bu +bv +cd +bY +ab +cd +ab +ab +ab +ao +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(54,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +ab +cd +cd +ao +cf +ab +ab +ao +cd +cd +cd +bu +bv +bu +bv +cd +ab +ab +ab +ab +ab +ao +ao +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(55,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +bv +bv +hY +bv +cd +ab +ab +cd +cd +cd +cd +cd +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(56,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ao +ao +ab +ao +cd +ab +ab +ab +ab +ab +ao +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(57,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ao +ab +ao +cd +ab +ab +ao +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(58,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(59,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ao +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(60,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +bY +ab +ab +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(61,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +hZ +ab +bY +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(62,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ga +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +ao +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(63,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +gh +ab +ab +gh +ga +ab +ab +ab +ab +gh +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ao +ao +ab +ab +ab +ao +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(64,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +bZ +cb +bY +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(65,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(66,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gQ +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(67,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ge +ab +ab +ab +gh +ga +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(68,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gT +ab +gT +ab +ab +ab +ab +ga +ab +ga +ga +ab +ab +gh +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ga +ga +ga +ga +ab +ab +gh +ab +ab +ga +ab +ab +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(69,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ga +ab +ga +ga +ga +ga +gQ +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +gP +ab +ab +ga +ab +ab +ab +ab +ab +ga +ga +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(70,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gU +ga +ga +ga +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ap +ap +cd +cd +ap +ap +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(71,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +gR +ab +gh +ab +ab +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +ap +gi +ap +ap +ap +ap +ap +ap +cd +cd +cd +cd +cd +cd +cd +in +"} +(72,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gP +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +gr +gl +cd +cd +cd +cd +cd +cd +ap +ap +gy +ap +ap +ap +ap +ap +cd +cd +cd +cd +cd +cd +cd +in +"} +(73,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ga +ga +ga +gP +ga +ga +ga +ga +gP +ga +ga +ga +ga +ga +ab +gh +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +dH +ab +ab +cd +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +cd +ab +ab +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +ap +ap +ap +ap +ap +ap +ap +ap +ap +gi +cd +cd +cd +cd +cd +cd +in +"} +(74,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +gP +ga +ga +ga +ga +ga +ga +gQ +gS +gQ +gQ +gQ +gQ +gQ +ab +ab +ab +ga +ab +ab +ab +ga +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +cd +cd +cd +cd +cd +gq +gn +gn +gt +cd +cd +cd +cd +ap +ap +ap +ap +gi +gy +ap +ap +ap +ap +cd +cd +cd +cd +cd +cd +in +"} +(75,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +gQ +gQ +gQ +gQ +gQ +gS +gQ +ab +ga +ga +ab +ga +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +ap +ap +ap +ap +ap +ap +gn +ap +cd +cd +cd +cd +cd +in +"} +(76,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ga +ab +ga +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +gl +gn +ap +gn +gn +gn +gl +cd +cd +cd +cd +cd +in +"} +(77,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ga +ab +ga +ga +ga +ga +ga +ga +ga +gP +ga +gU +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +gh +gh +ab +ab +ab +ga +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +gw +cd +cd +cd +cd +cd +gn +gn +gn +gn +cd +cd +cd +cd +cd +cd +cd +in +"} +(78,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ga +gQ +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +gl +gn +gu +cd +gn +gn +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +gA +cd +cd +cd +cd +cd +cd +cd +in +"} +(79,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +gh +ga +ga +gP +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gP +ga +ab +gh +ab +ab +ge +ab +ab +ab +ab +ga +ab +gC +ab +ab +gQ +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gv +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(80,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ab +ab +ab +ab +ga +ga +ab +ga +ga +gU +ga +ga +ga +ga +ga +gP +ga +ga +ga +ga +ga +ab +iM +ab +ab +ab +ab +ab +ab +gC +ga +ga +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +gf +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gz +gn +gn +cd +cd +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(81,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +gh +ab +ab +ab +ab +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ap +ap +cd +cd +gn +gn +gn +gn +gn +gn +gn +gn +gl +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(82,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +gf +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +cd +cd +cd +gn +gn +cd +cd +gu +gn +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(83,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ap +ap +ap +ap +gX +ab +ab +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gP +gU +ga +ga +ab +gB +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +cd +cd +cd +cd +gn +gn +cd +cd +cd +gn +gn +cd +cd +cd +cd +gl +gK +gn +cd +cd +cd +cd +in +"} +(84,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gW +ar +ar +ar +ab +gh +ga +ab +ga +ga +ga +ga +ga +ga +ga +gR +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +gm +gf +ab +ap +cd +cd +cd +cd +cd +cd +gn +gn +cd +cd +cd +gn +gn +gn +cd +cd +cd +gn +gn +gn +gn +cd +cd +cd +in +"} +(85,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ga +ga +ab +ab +ga +ga +gP +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ga +ga +ab +ab +gR +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +gj +ab +ab +ab +ap +cd +cd +cd +cd +cd +gs +gn +gn +gA +cd +cd +iF +gn +gn +gl +cd +gn +gn +gn +gn +gl +cd +cd +cd +in +"} +(86,1,1) = {" +in +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +cd +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ge +ga +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +go +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +gn +cd +cd +cd +cd +in +"} +(87,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +gX +ar +ar +ar +ar +ar +ar +ar +ap +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gU +gP +ga +ga +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ca +ab +cd +cd +cd +cd +cd +cd +cd +gt +gn +gn +cd +cd +cd +cd +gn +gn +gn +gk +gn +gn +gn +gn +cd +cd +cd +cd +in +"} +(88,1,1) = {" +in +ab +ab +cd +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gX +ar +ar +ar +ar +ar +ar +ar +ap +ab +gQ +ga +ga +ga +ga +ga +ga +gP +ga +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ca +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +gk +gn +gn +gn +gl +cd +cd +cd +cd +cd +cd +cd +in +"} +(89,1,1) = {" +in +ab +ab +cd +dF +dI +dI +dI +dI +dI +dI +dI +en +dO +eW +fe +fe +fn +dO +eb +dI +dI +dI +dI +dI +dI +dI +dJ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gX +ar +ar +ar +ar +ar +ar +ar +ap +ab +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +gh +ga +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +dH +ab +ab +ab +ab +ab +dH +gf +ab +ab +gk +gn +gp +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +gl +gl +gk +gn +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(90,1,1) = {" +in +dG +ab +cd +dF +dF +dI +dI +dI +dI +dI +en +dO +eM +eX +eX +eX +eX +fq +dO +eb +dI +dI +dI +dI +dI +dI +dI +ab +cc +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +gh +ar +ap +gX +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +cd +cd +ab +ab +gf +gg +cd +gl +gn +gn +gp +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +in +"} +(91,1,1) = {" +in +ab +ab +ab +dF +dF +dN +dO +dO +eb +en +dO +eH +eN +eR +eR +eR +eR +fm +fA +dO +eb +en +dO +dO +iU +dI +dI +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ap +gh +ar +ar +ar +ar +ar +ap +ab +ab +ga +ga +gP +ga +ga +ga +ga +ga +ga +ga +ga +gU +ga +ga +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +gf +cd +cd +cd +cd +gl +gn +cd +cd +gs +gn +gn +gk +gn +gn +gn +gl +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gz +cd +cd +cd +in +"} +(92,1,1) = {" +in +ab +ab +ab +dI +dI +dO +dO +dO +dO +dO +ew +eI +ef +ef +eq +ey +ef +fr +fB +ew +dO +dO +dO +dO +dO +dI +dI +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ap +ab +ab +ga +ga +ga +ga +ga +ga +ga +ga +gV +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gC +ab +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +cd +cd +cd +cd +cd +gl +gn +gk +gn +gn +gn +gn +gn +cd +cd +gn +gn +gn +cd +cd +cd +gn +gn +gn +dk +dk +dk +gn +gn +gu +cd +cd +in +"} +(93,1,1) = {" +in +ab +ab +ab +dJ +dL +dO +dO +dO +dO +dO +dO +dO +dO +dO +ff +fl +dO +dO +dO +dO +dO +dO +dO +dO +dO +dL +dI +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ab +ga +ga +ga +ga +ga +ga +gQ +ga +ga +ga +ga +ga +ga +ga +ga +gh +ab +ab +ab +ga +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +dH +ab +ab +cd +cd +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +cd +ab +ab +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +gx +gn +gn +cd +cd +gn +gn +gn +dk +gG +gI +gL +gn +gn +gn +cd +cd +in +"} +(94,1,1) = {" +in +ab +ab +ab +dI +dI +dO +dO +dO +ec +eo +ec +eJ +eO +eY +eN +fm +eY +fs +eJ +ec +fI +fN +dO +dO +dO +dI +dL +ab +ab +ab +ab +cc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ab +ab +ga +ga +ga +ga +ga +ga +gQ +gQ +ga +ga +ga +gQ +ga +ga +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +gp +gn +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +gu +gn +dk +dk +gF +cv +cv +gM +dk +dk +gn +cd +cd +in +"} +(95,1,1) = {" +in +ab +ab +dH +dI +dI +dP +dO +dO +ed +ep +ex +dO +er +eR +eR +eR +eR +ez +dO +fC +fJ +fO +dO +dO +iV +dI +dI +dG +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +gh +ar +ar +ar +ap +ab +ab +ab +ab +ab +gh +ab +ga +ga +ga +ab +ab +gP +ab +ab +ab +ga +ab +ab +ga +ab +ab +gh +ab +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +cd +cd +cd +gn +gn +cd +gn +gn +dk +dk +gF +cv +cv +gN +dk +gO +cd +cd +cd +in +"} +(96,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dO +dO +dO +dO +dO +dO +er +eR +fg +eR +eR +ez +dO +dO +dO +dO +dO +dO +dI +dI +dI +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ga +ga +ga +ga +ga +ab +ga +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +cd +cd +gs +gk +gn +gn +gt +cd +cd +gn +gD +dk +dk +gH +gJ +dk +dk +cd +cd +cd +cd +in +"} +(97,1,1) = {" +in +ab +cd +ab +dI +dI +dI +dO +dT +ee +ee +ee +ee +eN +eR +eR +eR +eR +fm +ee +ee +ee +ee +fR +dO +dI +dI +dI +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ap +ap +ar +gh +ab +ap +gh +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ga +ab +ab +gh +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +ab +gC +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +gn +gn +gn +gn +cd +cd +cd +gn +gn +gE +dk +gz +gn +dk +cd +cd +cd +cd +cd +in +"} +(98,1,1) = {" +in +cd +cd +ab +dK +dK +dK +dO +dU +ef +eq +ey +ef +ef +fa +eR +eR +fa +ft +ef +fD +ey +fP +fS +dO +dK +dK +dK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ap +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +gt +cd +gv +gn +cd +cd +cd +cd +cd +cd +cd +cd +gn +gn +gn +gn +gn +cd +cd +cd +cd +cd +cd +in +"} +(99,1,1) = {" +in +cd +ab +ab +dK +dM +dI +dO +dO +dO +er +ez +dO +dO +dO +fh +fh +dO +dO +dO +er +ez +dO +dO +dO +dQ +dI +dK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +gn +cd +gn +gn +cd +cd +cd +cd +cd +cd +cd +in +"} +(100,1,1) = {" +in +ab +ab +ab +dK +dI +dI +dI +dV +eg +er +ez +dO +eP +eR +eR +eR +eR +fu +dO +er +ez +eg +dV +dI +dI +dI +dK +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ap +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(101,1,1) = {" +in +ab +ab +ab +dK +dI +dI +dI +dV +eg +es +eA +dO +eQ +eR +eR +eR +eR +fv +dO +fE +fK +eg +dV +dI +dI +dI +dK +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +gh +ab +ga +ab +ab +ab +ab +gh +ga +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(102,1,1) = {" +in +ab +dH +ab +dK +dI +dQ +dO +dO +dO +dO +dO +dO +eR +fb +fi +fj +fb +eR +dO +dO +dO +dO +dO +dO +dI +dM +dK +ab +ab +cc +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ap +ap +ar +ap +gW +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +gh +ab +ge +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(103,1,1) = {" +in +ab +ab +ab +dK +dK +dK +dO +dW +eh +eh +eB +dO +eS +fb +fj +fj +fb +fw +dO +fF +fL +fF +fF +dO +dK +dK +dK +ab +ab +ab +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ap +ab +ab +gh +ab +ab +ge +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(104,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dO +dX +ei +et +eC +dO +eR +fb +fj +fj +fb +eT +dO +eR +eR +eR +fT +dO +dI +dI +dI +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iE +iE +iY +iE +je +"} +(105,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dO +dY +ej +et +ek +eK +eT +eR +eR +eR +eR +eR +fh +eR +fF +fF +fU +dO +dI +dI +dI +ab +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ga +ga +ga +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ap +iG +iE +iE +iX +je +"} +(106,1,1) = {" +in +ab +dH +ab +dI +dI +dI +dO +dZ +ek +ek +eD +dO +eR +eR +eR +eR +eR +eR +dO +eR +eR +eR +iS +dO +dI +dL +dI +cd +cd +cd +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +gh +ar +ap +ap +ab +ab +ab +ab +ab +ab +gh +ga +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ap +iK +iK +iW +iE +je +"} +(107,1,1) = {" +in +ab +ab +ab +dI +dI +dL +dO +ea +ek +eu +eE +dO +dO +dO +fk +fk +dO +dO +dO +eR +fF +fF +iT +dO +iU +dI +dI +cd +cd +dH +ab +dG +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ar +ar +iN +iK +iK +iE +je +"} +(108,1,1) = {" +in +ab +ab +ab +dI +dI +dN +dO +dO +ek +ej +eF +dO +eU +fc +eR +eR +fo +fx +dO +fG +dO +dO +dO +dO +dO +dL +dJ +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iZ +je +"} +(109,1,1) = {" +in +ab +dG +ab +dJ +dI +dO +dO +dO +el +ev +eG +dO +eU +eR +eR +eR +eR +fy +dO +fH +fM +fQ +dO +dO +dO +dI +dI +ab +ab +ab +ab +cc +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +gh +ap +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ga +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ap +ap +ap +ap +ab +ab +ap +ap +ap +ab +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iE +je +"} +(110,1,1) = {" +in +ab +ab +ab +dI +dI +dO +dO +dO +dO +dO +dO +dO +eV +eR +eR +eR +eR +fz +dO +dO +dO +dO +dO +dO +dO +dI +dI +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ga +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ar +ap +ab +ap +ar +ar +ap +ap +ap +ap +ar +ap +ap +ap +ar +ar +ap +ap +ar +ar +ar +ar +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iE +je +"} +(111,1,1) = {" +in +ab +ab +ab +dL +dI +dO +dO +dO +dO +em +dI +eL +dO +fd +fd +fd +fp +dO +em +dI +eL +dO +dO +dO +dO +dI +dF +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ap +ap +ap +ar +ar +ar +ar +ar +ap +ar +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +ja +je +"} +(112,1,1) = {" +in +cd +cd +cd +dI +dI +dO +dO +dO +em +dI +dI +dI +eL +dR +dR +dR +dR +em +dI +dI +dI +eL +dR +dR +iV +dF +dF +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ap +ap +ar +ar +ap +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +iN +iN +iK +iK +je +"} +(113,1,1) = {" +in +dH +cd +cd +dF +dI +dP +dR +dR +dI +dI +dI +dI +dI +dS +dS +dS +dS +dI +dI +dI +dL +dI +dS +dS +dI +dF +dF +cd +cd +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ap +ap +ap +ar +ar +ar +ar +ar +ar +ar +ar +ap +ap +ap +ap +ap +ap +ap +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ar +ar +ar +ar +ar +ap +iN +iN +iK +iN +je +"} +(114,1,1) = {" +in +ab +ab +ab +dI +dI +dI +dS +dS +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dI +dF +dF +cd +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ar +ar +ap +ap +ar +ar +ar +ar +ap +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ap +ap +ap +gn +gn +gn +gn +gn +gn +gn +ap +ap +ap +ap +ap +ap +ap +iK +iN +iN +iN +je +"} +(115,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ap +ap +ab +ab +ab +ab +ge +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ar +ar +ap +ap +ar +ar +ar +ar +ar +ar +ap +ap +ap +ap +ar +ar +ar +ar +ap +ab +ab +ab +ab +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +gn +iK +iN +iN +iN +je +"} +(116,1,1) = {" +in +cc +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ap +ap +ar +ar +ar +ar +ar +ap +ar +ap +ap +ap +ap +ab +ab +ap +ap +ap +ar +ar +ap +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +gn +iK +iN +iN +iN +je +"} +(117,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ar +ar +ap +ap +ar +ar +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +iD +iK +iK +iK +iK +je +"} +(118,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(119,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(120,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(121,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ap +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(122,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ap +ap +ab +ap +ap +ab +ab +ab +ab +ap +ab +ap +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(123,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ap +ab +ap +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gh +ab +ab +ab +ab +ap +ap +ar +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cv +cv +cv +cv +cv +cv +cv +cd +cd +in +"} +(124,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ap +ap +ap +ab +ap +ap +ap +ap +ab +ab +ab +ap +ap +ap +ab +ap +ap +ab +ap +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cv +hs +hA +hE +dk +hI +cv +cd +cd +in +"} +(125,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ap +ap +ab +ap +ap +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ar +ar +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cv +ht +hB +dk +hH +dk +cv +cd +cd +in +"} +(126,1,1) = {" +in +ab +ab +ab +ab +ap +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ap +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cd +cd +cd +cd +cd +cd +cv +hu +gY +dk +dk +hJ +cv +cd +cd +in +"} +(127,1,1) = {" +in +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cv +hv +hC +hF +dk +dk +cv +cd +cd +in +"} +(128,1,1) = {" +in +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ab +ab +aq +aC +ab +ap +ap +ap +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +dC +cv +cv +cd +cd +in +"} +(129,1,1) = {" +in +ab +ab +ab +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +ap +aq +aC +ap +ap +ar +ar +ar +ar +ar +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cv +cU +gY +gY +hg +hl +dk +hq +dk +dk +gZ +dk +dk +dk +cd +cd +in +"} +(130,1,1) = {" +in +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ap +ap +aq +aC +ap +ar +ar +ar +ar +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +dC +cU +gY +dk +dk +dk +dk +dk +dk +cU +dk +dk +dk +hl +cd +cd +in +"} +(131,1,1) = {" +in +ab +ab +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +ip +iC +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aq +aC +ap +ar +ar +ar +ar +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cv +cU +gZ +dk +dk +gZ +dk +gY +cU +hD +gY +dk +gZ +cv +cd +cd +in +"} +(132,1,1) = {" +in +ap +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +ip +ab +iB +ip +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aq +aC +ap +ap +ap +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cv +cv +cv +hd +cv +cv +cv +hd +cv +cv +cv +hd +cv +cv +cd +cd +in +"} +(133,1,1) = {" +in +ap +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +dH +iu +iw +iu +ab +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aq +aC +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +cd +cd +cv +ha +he +hh +cv +hm +hf +hw +cv +hh +hf +hh +cv +cd +cd +in +"} +(134,1,1) = {" +in +ap +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +if +ix +if +ab +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cv +hb +hf +hi +cv +hn +hf +hx +cv +hG +hf +hK +cv +cd +cd +in +"} +(135,1,1) = {" +in +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +if +iy +if +ip +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +ab +ap +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cv +hc +hf +hj +cv +ho +hf +hy +cv +hn +hf +hL +cv +cd +cd +in +"} +(136,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +if +iz +if +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iL +aa +ac +ac +ac +ac +ac +aa +ap +aD +ap +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cv +hb +hf +hk +cv +hp +hr +hz +cv +hn +hf +he +cv +cd +cd +in +"} +(137,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +if +ig +if +ip +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +ac +ad +ag +aj +ac +an +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +gn +gn +cd +cd +cd +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cv +cd +cd +in +"} +(138,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +dH +iv +ip +ip +iA +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +iL +aa +ac +ae +ah +ak +ac +aa +ab +ab +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(139,1,1) = {" +in +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ip +ip +ip +dH +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +ac +af +ai +al +ac +aa +ao +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +gn +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +cd +in +"} +(140,1,1) = {" +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +jb +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +je +je +je +je +je +je +je +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +in +"} diff --git a/maps/tether/submaps/gateway/snowfield.dm b/maps/tether/submaps/gateway/snowfield.dm new file mode 100644 index 0000000000..8cfed032f5 --- /dev/null +++ b/maps/tether/submaps/gateway/snowfield.dm @@ -0,0 +1,171 @@ +// -- Areas -- // + +/area/awaymission/snowfield + icon_state = "blank" +// requires_power = 0 + base_turf = /turf/snow/snow2 + ambience = list('sound/ambience/ambispace.ogg','sound/music/title2.ogg','sound/music/space.ogg','sound/music/main.ogg','sound/music/traitor.ogg') + base_turf = /turf/simulated/floor/snow/snow2 + +/area/awaymission/snowfield/outside + icon_state = "green" + requires_power = 1 + always_unpowered = 1 + dynamic_lighting = 1 + power_light = 0 + power_equip = 0 + power_environ = 0 + mobcountmax = 100 + floracountmax = 7000 + + valid_mobs = list(/mob/living/simple_mob/animal/sif/sakimm/polar, /mob/living/simple_mob/animal/sif/diyaab/polar, + /mob/living/simple_mob/animal/sif/shantak/polar, /mob/living/simple_mob/animal/space/bear/polar, + /mob/living/simple_mob/animal/wolf) + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snowfield/restricted // No mob spawns! + icon_state = "red" + mobcountmax = 1 // Hacky fix. + floracountmax = 100 + valid_mobs = list(/obj/structure/flora/tree/pine) // Hacky fix. + valid_flora = list(/obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, /obj/structure/flora/tree/pine, + /obj/structure/flora/tree/dead, /obj/structure/flora/grass/brown, /obj/structure/flora/grass/green, + /obj/structure/flora/grass/both, /obj/structure/flora/bush, /obj/structure/flora/ausbushes/grassybush, + /obj/structure/flora/ausbushes/sunnybush, /obj/structure/flora/ausbushes/genericbush, /obj/structure/flora/ausbushes/pointybush, + /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/fullgrass) + +/area/awaymission/snowfield/base + icon_state = "away" + ambience = null // Todo: Add better ambience. + +// -- Mobs -- // + +/mob/living/simple_mob/animal/space/bear/polar // More aggressive than normal bears so none of that fancy life() stuff. + name = "polar bear" + desc = "The real question is, why are you examining it, instead of running away?" + icon = 'icons/mob/vore.dmi' + icon_state = "polarbear" + icon_living = "polarbear" + icon_dead = "polarbear-dead" + icon_gib = "bear-gib" + vore_icons = SA_ICON_LIVING + vore_active = 1 + say_list_type = /datum/say_list/polar_bear + + faction = "polar" + maxHealth = 80 + health = 80 // Polar bear will fuck you up. + + //stop_when_pulled = 0 //VORESTATION AI TEMPORARY REMOVAL + //turns_per_move = 5 //VORESTATION AI TEMPORARY REMOVAL + see_in_dark = 6 + + response_help = "pets" + response_disarm = "gently pushes aside" + response_harm = "desperately attacks" + + melee_damage_lower = 20 + melee_damage_upper = 50 // srsly u gon get rekt + + minbodytemp = 0 + + //speak_chance = 1 //VORESTATION AI TEMPORARY REMOVAL + meat_type = /obj/item/weapon/reagent_containers/food/snacks/bearmeat +/datum/say_list/polar_bear + speak = list("RAWR!","Rawr!","GRR!","Growl!") + emote_hear = list("rawrs","grumbles","grawls") + emote_see = list("stares ferociously", "stomps") + + + +/mob/living/simple_mob/animal/space/bear/polar/death() + desc = "This bastard sure isn't drinking Space Cola anymore." + ..() + +/mob/living/simple_mob/animal/sif/sakimm/polar + faction = "polar" + +/mob/living/simple_mob/animal/sif/diyaab/polar + faction = "polar" + +/mob/living/simple_mob/animal/sif/shantak/polar + faction = "polar" + +// -- Items -- // + +// For fake solar power. +/obj/machinery/power/fractal_reactor/fluff/smes + name = "power storage unit" + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit. The controls are locked." + icon_state = "smes" + +/obj/effect/landmark/away + name = "awaystart" + +/obj/effect/floor_decal/derelict/d1 + name = "derelict1" + icon_state = "derelict1" + +/obj/effect/floor_decal/derelict/d2 + name = "derelict2" + icon_state = "derelict2" + +/obj/effect/floor_decal/derelict/d3 + name = "derelict3" + icon_state = "derelict3" + +/obj/effect/floor_decal/derelict/d4 + name = "derelict4" + icon_state = "derelict4" + +/obj/effect/floor_decal/derelict/d5 + name = "derelict5" + icon_state = "derelict5" + +/obj/effect/floor_decal/derelict/d6 + name = "derelict6" + icon_state = "derelict6" + +/obj/effect/floor_decal/derelict/d7 + name = "derelict7" + icon_state = "derelict7" + +/obj/effect/floor_decal/derelict/d8 + name = "derelict8" + icon_state = "derelict8" + +/obj/effect/floor_decal/derelict/d9 + name = "derelict9" + icon_state = "derelict9" + +/obj/effect/floor_decal/derelict/d10 + name = "derelict10" + icon_state = "derelict10" + +/obj/effect/floor_decal/derelict/d11 + name = "derelict11" + icon_state = "derelict11" + +/obj/effect/floor_decal/derelict/d12 + name = "derelict12" + icon_state = "derelict12" + +/obj/effect/floor_decal/derelict/d13 + name = "derelict13" + icon_state = "derelict13" + +/obj/effect/floor_decal/derelict/d14 + name = "derelict14" + icon_state = "derelict14" + +/obj/effect/floor_decal/derelict/d15 + name = "derelict15" + icon_state = "derelict15" + +/obj/effect/floor_decal/derelict/d16 + name = "derelict16" + icon_state = "derelict16" \ No newline at end of file diff --git a/maps/tether/submaps/gateway/snowfield.dmm b/maps/tether/submaps/gateway/snowfield.dmm new file mode 100644 index 0000000000..aec5b0d0be --- /dev/null +++ b/maps/tether/submaps/gateway/snowfield.dmm @@ -0,0 +1,21573 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/unsimulated/wall/planetary/sif, +/area/awaymission/snowfield/restricted) +"ab" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ac" = ( +/obj/effect/blocker, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/restricted) +"ad" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/outside) +"ae" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield) +"af" = ( +/obj/effect/landmark/gateway_scatter, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield) +"ag" = ( +/obj/machinery/light/small, +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ah" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ai" = ( +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/base) +"aj" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/base) +"ak" = ( +/obj/machinery/door/airlock/hatch, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"al" = ( +/obj/structure/cable/yellow{ + d2 = 4; + icon_state = "0-4" + }, +/obj/effect/floor_decal/industrial/warning/full, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"am" = ( +/obj/structure/table/standard, +/obj/machinery/cell_charger, +/obj/item/stack/cable_coil/yellow{ + amount = 2; + icon_state = "coil2" + }, +/obj/item/weapon/shovel, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/structure/cable/yellow{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"an" = ( +/obj/machinery/power/terminal{ + dir = 4 + }, +/obj/structure/cable/yellow{ + d2 = 8; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"ao" = ( +/obj/machinery/power/smes/buildable{ + charge = 2.5e+006; + input_attempt = 1; + input_level = 250000; + inputting = 1; + output_level = 250000; + RCon_tag = "Telecommunications Satellite" + }, +/obj/structure/cable{ + icon_state = "0-2"; + d2 = 2 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"ap" = ( +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"aq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"ar" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump-derelict"; + operating = 0; + pixel_x = -24 + }, +/obj/structure/cable{ + icon_state = "0-4"; + d2 = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"as" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"at" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"au" = ( +/obj/structure/sign/biohazard, +/turf/simulated/wall/durasteel, +/area/awaymission/snowfield/base) +"av" = ( +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"aw" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ax" = ( +/obj/structure/closet/secure_closet/hydroponics{ + req_access = list(47) + }, +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ay" = ( +/obj/machinery/smartfridge/drying_rack, +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"az" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aA" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aB" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/machinery/atmospherics/portables_connector, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aC" = ( +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"aD" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aE" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/item/weapon/tool/wrench, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aF" = ( +/obj/machinery/biogenerator, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aG" = ( +/obj/machinery/seed_extractor, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aH" = ( +/obj/machinery/reagentgrinder, +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aI" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/beakers{ + pixel_x = 2; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aJ" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"aK" = ( +/obj/structure/closet/jcloset, +/obj/item/weapon/soap/deluxe, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"aL" = ( +/obj/structure/closet/l3closet/janitor, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"aM" = ( +/obj/structure/closet/crate/hydroponics/prespawned, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aN" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aO" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced, +/obj/machinery/atmospherics/pipe/simple/hidden/universal{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"aQ" = ( +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Isolation to Waste" + }, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aR" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aS" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aT" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aU" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"aV" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/machinery/atmospherics/binary/pump{ + dir = 8; + name = "Port to Isolation" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aW" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/meter, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aY" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"aZ" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/box/botanydisk, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ba" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bb" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bc" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bd" = ( +/obj/machinery/door/airlock/research{ + name = "Xenoflora Storage"; + req_access = list(55) + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"be" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bf" = ( +/obj/machinery/botany/editor, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bg" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bh" = ( +/obj/effect/floor_decal/corner/green/full, +/obj/item/device/radio/intercom{ + dir = 8; + name = "Station Intercom (General)"; + pixel_x = -21 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bi" = ( +/obj/machinery/atmospherics/unary/freezer{ + dir = 2; + icon_state = "freezer" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bj" = ( +/obj/machinery/atmospherics/unary/heater{ + dir = 2; + icon_state = "heater" + }, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bk" = ( +/obj/machinery/atmospherics/portables_connector, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bl" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"bm" = ( +/obj/machinery/botany/extractor, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bn" = ( +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/grenade/chem_grenade/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/mousetraps, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bo" = ( +/obj/machinery/door/window/northright{ + name = "Xenoflora Containment"; + req_access = list(47) + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bp" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 5 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bq" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/visible, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"br" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bs" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bt" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bu" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bv" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bw" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bx" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/paper_bin{ + pixel_x = 1; + pixel_y = 9 + }, +/obj/item/weapon/pen, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"by" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bA" = ( +/obj/machinery/atmospherics/portables_connector, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bB" = ( +/obj/item/device/radio/intercom{ + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bC" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + pixel_x = 5; + pixel_y = -32 + }, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/syringes, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 4; + pixel_y = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bD" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + layer = 4; + name = "Station Intercom (General)"; + pixel_y = -21 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bE" = ( +/obj/machinery/portable_atmospherics/canister/carbon_dioxide, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bF" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bG" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/closet/l3closet/scientist, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bH" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bI" = ( +/obj/machinery/seed_storage/xenobotany, +/obj/machinery/light, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bJ" = ( +/obj/machinery/vending/hydronutrients{ + categories = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bK" = ( +/obj/machinery/smartfridge, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bL" = ( +/obj/structure/table/glass, +/obj/item/weapon/tape_roll, +/obj/item/device/analyzer/plant_analyzer, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/obj/structure/table/glass, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/white, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"bN" = ( +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/structure/janitorialcart, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bO" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bP" = ( +/obj/machinery/portable_atmospherics/hydroponics{ + closed_system = 1; + name = "isolation tray" + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bQ" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/machinery/atmospherics/portables_connector{ + dir = 1 + }, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"bS" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"bT" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/hydro, +/area/awaymission/snowfield/base) +"bU" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/steel, +/area/awaymission/snowfield/base) +"bV" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"bW" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"bX" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"bY" = ( +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/item/seeds/random, +/obj/effect/floor_decal/industrial/outline/blue, +/obj/structure/closet/crate, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"bZ" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ca" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cb" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/cigarette, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cc" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/sink/kitchen{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cd" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ce" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/machinery/microwave{ + pixel_y = 6 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cf" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 3; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cg" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/obj/effect/floor_decal/corner/grey/diagonal{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ch" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ci" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cj" = ( +/obj/structure/toilet, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"ck" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/door/window/southright{ + name = "Shower" + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cl" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cm" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cn" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"co" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"cp" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cq" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/item/weapon/stool/padded, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cr" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cs" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"ct" = ( +/obj/machinery/gateway, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cu" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/snowfield/base) +"cv" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cw" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cx" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cy" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cz" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"cA" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/snowfield/base) +"cB" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/sovietsoda, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cC" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cD" = ( +/obj/structure/closet/secure_closet/personal, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cE" = ( +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cF" = ( +/obj/structure/bed/padded, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cG" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cI" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cJ" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cK" = ( +/obj/structure/table/standard, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cL" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/bed/chair/comfy/beige{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cM" = ( +/obj/machinery/door/airlock/highsecurity, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"cN" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/structure/closet/crate/bin, +/obj/item/trash/pistachios, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cO" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cP" = ( +/obj/structure/simple_door/wood, +/turf/simulated/floor/wood, +/area/awaymission/snowfield/base) +"cQ" = ( +/obj/machinery/door/airlock/freezer, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/firedoor/border_only, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"cS" = ( +/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/snowfield/base) +"cT" = ( +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cU" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cV" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/derelict/d9, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cW" = ( +/obj/effect/floor_decal/derelict/d10, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cX" = ( +/obj/effect/floor_decal/derelict/d11, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cY" = ( +/obj/effect/floor_decal/derelict/d12, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"cZ" = ( +/obj/effect/floor_decal/derelict/d13, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"da" = ( +/obj/effect/floor_decal/derelict/d14, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"db" = ( +/obj/effect/floor_decal/derelict/d15, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dc" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/derelict/d16, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dd" = ( +/obj/effect/floor_decal/derelict/d1, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"de" = ( +/obj/effect/floor_decal/derelict/d2, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"df" = ( +/obj/effect/floor_decal/derelict/d3, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dg" = ( +/obj/effect/floor_decal/derelict/d4, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dh" = ( +/obj/effect/floor_decal/derelict/d5, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"di" = ( +/obj/effect/floor_decal/derelict/d6, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dj" = ( +/obj/effect/floor_decal/derelict/d7, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dk" = ( +/obj/effect/floor_decal/derelict/d8, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dl" = ( +/obj/machinery/door/airlock/security, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dm" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"dn" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/southleft, +/obj/machinery/door/window/northleft, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"do" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/firedoor/border_only, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/snowfield/base) +"dp" = ( +/obj/machinery/door/airlock/glass, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dq" = ( +/obj/machinery/door/airlock/maintenance{ + locked = 1; + name = "Storage Access" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dr" = ( +/obj/structure/closet/l3closet/security, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ds" = ( +/obj/structure/closet/fireaxecabinet{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dt" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"du" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dv" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dw" = ( +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"dx" = ( +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dy" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/gimmick/russian, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/l3closet/general, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dA" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/freezer/rations, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dB" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dC" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/loot, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dD" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/emcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dF" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dG" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/obj/item/device/radio/phone, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dH" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"dI" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dJ" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"dK" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"dL" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dM" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dN" = ( +/obj/structure/closet/bombclosetsecurity, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dO" = ( +/obj/structure/closet/medical_wall{ + pixel_y = -32 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/adv, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dP" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/backpack/satchel/sec, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet, +/obj/item/clothing/shoes/boots/winter, +/obj/item/clothing/suit/storage/hooded/wintercoat, +/obj/item/clothing/head/hood/winter, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dS" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dT" = ( +/turf/snow/snow2{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/shuttle/awaymission/oldengbase) +"dU" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/remains/human, +/obj/structure/closet/crate/mimic/guaranteed{ + name = "steel crate" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/gmcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dW" = ( +/obj/machinery/power/port_gen/pacman, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"dX" = ( +/obj/machinery/door/airlock/highsecurity{ + locked = 1; + name = "Secure Armoury Section"; + req_access = list(150) + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dY" = ( +/obj/structure/closet, +/obj/item/clothing/under/soviet, +/obj/item/clothing/shoes/boots/jackboots, +/obj/item/clothing/head/ushanka, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"dZ" = ( +/obj/structure/closet/crate/secure/gear, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/obj/item/ammo_magazine/clip/c762, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ea" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, +/obj/item/weapon/storage/backpack/dufflebag/syndie/ammo, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"eb" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/space/syndicate, +/obj/item/clothing/head/helmet/space/syndicate, +/obj/structure/closet/crate/internals, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ec" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/hgpirate, +/obj/item/clothing/head/hgpiratecap, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ed" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/suit/armor/combat, +/obj/structure/closet/crate/secure/gear, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ee" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ef" = ( +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"eg" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/mob/living/simple_mob/mechanical/viscerator, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"eh" = ( +/obj/structure/closet/crate/secure/weapon, +/obj/item/weapon/gun/projectile/shotgun/pump/rifle, +/turf/simulated/floor/tiled/dark, +/area/awaymission/snowfield/base) +"ei" = ( +/obj/structure/coatrack, +/turf/simulated/floor/grass, +/area/awaymission/snowfield/base) +"ej" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/wardrobe/red, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ek" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/medical, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/obj/item/device/flashlight/flare, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"el" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"em" = ( +/obj/effect/floor_decal/industrial/loading{ + icon_state = "loadingarea"; + dir = 1 + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"en" = ( +/obj/machinery/conveyor_switch{ + id = "away_soviet" + }, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"eo" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/secure/phoron, +/obj/fiftyspawner/phoron, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"ep" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/toolcloset, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"eq" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/obj/machinery/door/airlock/centcom, +/turf/simulated/floor/holofloor/wood, +/area/awaymission/snowfield/base) +"er" = ( +/obj/structure/plasticflaps/mining, +/obj/machinery/conveyor{ + dir = 2; + id = "away_soviet" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/snowfield/base) +"es" = ( +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"et" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eu" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ev" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ew" = ( +/obj/machinery/conveyor_switch{ + id = "away_soviet" + }, +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ex" = ( +/obj/machinery/conveyor{ + dir = 2; + id = "away_soviet" + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ey" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"ez" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 4 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eA" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eB" = ( +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eC" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eD" = ( +/obj/effect/floor_decal/industrial/warning/dust{ + icon_state = "warning_dust"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eE" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning/dust, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eF" = ( +/obj/effect/floor_decal/industrial/warning/dust/corner{ + icon_state = "warningcorner_dust"; + dir = 8 + }, +/turf/simulated/floor/tiled/asteroid_steel{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) +"eG" = ( +/turf/simulated/floor/reinforced{ + nitrogen = 93.7835; + oxygen = 20.7263; + temperature = 243.15 + }, +/area/awaymission/snowfield/base) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(3,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(4,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(5,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(6,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(7,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(8,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(9,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(10,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(11,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(12,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(13,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(14,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(15,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(16,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(17,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(18,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(19,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(20,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(21,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(22,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(23,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(24,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(25,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(26,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(27,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(28,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(29,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(30,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(31,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(32,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(33,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(34,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(35,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(36,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(37,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(38,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(39,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(40,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(41,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(42,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(43,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(44,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(45,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(46,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(47,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(48,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(49,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(50,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(51,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(52,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(53,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(54,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(55,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(56,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(57,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(58,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(59,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(60,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(61,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aw +aM +bb +bh +bo +bz +ai +ai +ci +cr +ai +cD +cJ +cD +ai +cT +cT +ai +dr +dF +dN +ai +dY +ee +dY +ai +es +es +eA +ez +ez +ez +ez +ez +ez +ez +ez +ez +ez +et +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(62,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ax +aN +aN +bi +bp +aC +bP +ai +cj +aN +cx +cE +cE +cE +cP +cT +cT +dl +cy +cy +cy +ai +dY +ef +dY +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(63,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ax +aN +bc +bj +bq +bA +bQ +ai +ck +aN +ai +cF +cK +cF +ai +cT +cT +ai +cy +cy +cy +ai +dY +ef +dY +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(64,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ay +aO +aO +bk +br +bB +ai +ai +ai +ai +ai +ai +ai +ai +ai +cU +cT +ai +ds +cy +cy +dX +cy +ef +cy +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(65,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +aP +bd +bl +ai +ai +ai +bV +cl +cs +cy +cG +cy +ai +cy +cT +cT +dm +dt +cy +dO +ai +dZ +ef +eh +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(66,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +az +aQ +aC +aC +bs +bC +ai +bW +cm +ct +cy +cy +cy +cM +cy +cT +cT +dn +du +cy +cy +ai +dZ +ef +eh +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(67,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aA +aR +aC +aC +bt +bD +ai +bX +cn +cu +cy +cH +cy +ai +cy +cT +cT +do +dv +dG +dP +ai +dZ +eg +eh +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(68,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +aA +aS +aC +aC +bt +bE +ai +ai +ai +ai +ai +ai +ai +ai +ai +cV +dd +ai +ai +ai +ai +ai +ai +ai +ai +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(69,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +al +ap +ar +ai +aB +aT +be +be +bt +bF +bR +bY +co +bY +cz +bY +co +bY +bR +cW +de +ai +dw +dH +dw +dw +dw +dH +dw +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(70,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ag +aj +am +ap +as +au +aC +aU +be +be +bu +bG +bS +bY +co +bY +co +bY +co +bY +bS +cX +df +ai +dw +dI +dI +dw +dI +dI +ei +ai +et +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(71,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ah +ak +an +ap +as +av +aC +aU +be +be +aC +aC +bT +bZ +bZ +bZ +bZ +bZ +bZ +bZ +cQ +cY +dg +dp +dx +dx +dx +dx +dx +dx +dx +eq +eu +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(72,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ao +aq +at +aj +aC +aU +be +be +aC +aC +bT +ca +ca +ca +ca +ca +ca +ca +cQ +cZ +dh +dp +dx +dx +dx +dx +dx +dx +dx +eq +eu +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(73,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +aD +aV +be +be +bv +bH +bR +bY +co +bY +co +bY +co +bY +bR +da +di +ai +dw +dJ +dJ +dw +dJ +dJ +ei +ai +ev +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(74,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aE +aW +aC +aC +bt +bI +bS +bY +co +bY +cA +bY +co +bY +bS +db +dj +ai +dw +dK +dw +dw +dw +dK +dw +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(75,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aF +aX +aC +aC +bt +bJ +ai +ai +ai +ai +ai +ai +ai +ai +ai +dc +dk +ai +ai +ai +ai +ai +ai +ai +ai +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(76,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aG +aX +aC +aC +bt +bK +ai +cb +cp +cv +cB +cI +cd +cN +bR +cT +cT +ai +dy +dL +dQ +dB +ea +dL +ej +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(77,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aH +aY +aC +aC +bw +bL +ai +cc +ch +ch +ch +ch +ch +ch +cR +cT +cT +ai +dz +dB +dC +dB +dC +dB +ek +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(78,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aI +aZ +bf +bm +bx +bM +ai +cd +ch +cq +cq +ch +ch +ch +bS +cT +cT +ai +dA +dB +dR +dB +eb +dB +el +ai +ew +ez +eC +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(79,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +ai +ai +ai +ce +cq +cd +cd +cq +ch +cO +ai +cU +cT +dq +dB +dB +dS +dB +dB +dB +em +er +ex +ex +eD +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(80,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aJ +ba +bg +bn +by +bN +ai +cf +cq +cw +cd +cq +ch +ch +ai +cT +cT +ai +dC +dB +dU +dB +dC +dB +en +ai +ey +ey +eE +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(81,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aK +ba +ba +ba +ba +bO +ai +cg +ch +cq +cq +ch +ch +ch +cS +cT +cT +ai +dD +dB +dV +dB +ec +dB +eo +ai +es +es +eB +eG +eG +eG +eG +eG +eG +eG +eG +eG +eG +eu +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(82,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +aL +ba +ba +ba +ba +ba +bU +ch +ch +ch +cC +ch +cL +cL +ai +cT +cT +ai +dE +dM +dW +dB +ed +dM +ep +ai +es +es +eF +ey +ey +ey +ey +ey +ey +ey +ey +ey +ey +ev +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(83,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ai +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(84,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +dT +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(85,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(86,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(87,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(88,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(89,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(90,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(91,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(92,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(93,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(94,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(95,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(96,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(97,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(98,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(99,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(100,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(101,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(102,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(103,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(104,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(105,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(106,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(107,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(108,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(109,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(110,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(111,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(112,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(113,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(114,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(115,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(116,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(117,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +af +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(118,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(119,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ae +ae +ae +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(120,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(121,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(122,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(123,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(124,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(125,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(126,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(127,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(128,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(129,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(130,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(131,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(132,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(133,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +aa +"} +(134,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(135,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(136,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(137,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(138,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(139,1,1) = {" +aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/gateway/zoo.dm b/maps/tether/submaps/gateway/zoo.dm new file mode 100644 index 0000000000..8dfc885783 --- /dev/null +++ b/maps/tether/submaps/gateway/zoo.dm @@ -0,0 +1,44 @@ +// -- Areas -- // + +/area/awaymission/zoo + icon_state = "green" + requires_power = 0 + dynamic_lighting = 0 + ambience = list('sound/ambience/ambispace.ogg','sound/music/title2.ogg','sound/music/space.ogg','sound/music/main.ogg','sound/music/traitor.ogg') + +/area/awaymission/zoo/solars + icon_state = "yellow" + +/area/awaymission/zoo/tradeship + icon_state = "purple" + +/area/awaymission/zoo/syndieship + icon_state = "red" + +/area/awaymission/zoo/pirateship + icon_state = "bluenew" + +/obj/item/weapon/paper/zoo + name = "\improper Quarterly Report" + info = {"There's nothing but spreadsheets and budget reports on this document, apparently regarding a zoo owned by NanoTrasen."} + +/obj/item/weapon/paper/zoo/pirate + name = "odd note" + +/obj/item/weapon/paper/zoo/pirate/volk + info = {"Lady Nebula,

We can't keep these animals here permanently. We're running out of food and they're getting hungry. + Ma'isi went missing last night when we sent her to clean up the petting zoo. This morning, we found Tajaran hair in the + horse shit. I can't speak for everyone, but I'm out. If these animals break loose, we're all fucking dead. Please get + some extra rations of meat before the carnivores realize the electrified grilles don't work right now.

-Volk"} + +/obj/item/weapon/paper/zoo/pirate/nebula + info = {"Volk,

Throw some prisoners into the cages, then. The client took too long to pay up anyway.

-Lady Nebula"} + +/obj/item/weapon/paper/zoo/pirate/haveyouseen + info = {"Has anyone seen Za'med? I sent him to get something out of the tool shed and he hasn't come back.

-Meesei"} + +/obj/item/weapon/paper/zoo/pirate/warning + info = {"Attention crew,

Since apparently you fucking idiots didn't notice, that bulltaur who delivered the bears was + Jarome Rognvaldr. I'm sorry, maybe you scabs forgot? Does the name Jarome the Bottomless ring any fucking bells? If he's + seen again without a laser bolt hole through his fucking skull, I'm shoving anyone on guard duty up Zed's arse. Are we + clear?

-Lady Nebula"} \ No newline at end of file diff --git a/maps/tether/submaps/gateway/zoo.dmm b/maps/tether/submaps/gateway/zoo.dmm new file mode 100644 index 0000000000..33ce2d311b --- /dev/null +++ b/maps/tether/submaps/gateway/zoo.dmm @@ -0,0 +1,69572 @@ +//MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE +"aa" = ( +/turf/space, +/area/space) +"ab" = ( +/obj/effect/blocker, +/turf/space{ + density = 1; + desc = "You can't go there!"; + name = "The 4th Wall" + }, +/area/space) +"ac" = ( +/obj/effect/blocker, +/turf/space, +/area/space) +"ad" = ( +/turf/simulated/shuttle/wall, +/area/awaymission/zoo/pirateship) +"ae" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"af" = ( +/obj/machinery/porta_turret{ + dir = 8; + emagged = 1; + installation = /obj/item/weapon/gun/energy/lasercannon + }, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"ag" = ( +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"ah" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ai" = ( +/obj/structure/table/marble, +/obj/structure/safe/floor, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/spacecash/c1000, +/obj/item/weapon/card/emag, +/obj/item/weapon/beartrap, +/obj/item/weapon/grenade/spawnergrenade/spesscarp, +/obj/item/weapon/grenade/spawnergrenade/spesscarp, +/obj/item/weapon/grenade/spawnergrenade/spesscarp, +/obj/item/clothing/glasses/thermal/plain/monocle, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/stolenpackage, +/obj/item/weapon/plastique, +/obj/item/weapon/plastique, +/obj/item/weapon/melee/energy/sword/pirate, +/turf/space, +/area/awaymission/zoo) +"aj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ak" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"al" = ( +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"am" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"an" = ( +/obj/machinery/light/small, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"ao" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ap" = ( +/obj/structure/bed/roller, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aq" = ( +/obj/item/weapon/handcuffs, +/obj/item/weapon/handcuffs, +/obj/structure/closet/crate, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ar" = ( +/obj/item/weapon/surgical/scalpel, +/obj/structure/closet/crate, +/obj/item/weapon/tank/anesthetic, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"as" = ( +/obj/item/bodybag, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"at" = ( +/obj/item/weapon/storage/box/syringes, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"au" = ( +/obj/machinery/optable, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"av" = ( +/obj/machinery/computer/operating, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aw" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ax" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ay" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"az" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/packageWrap, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aA" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aB" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aC" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aD" = ( +/obj/item/weapon/storage/box, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aE" = ( +/obj/machinery/gateway{ + dir = 9 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aF" = ( +/obj/machinery/gateway{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aG" = ( +/obj/machinery/gateway{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aH" = ( +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aI" = ( +/obj/structure/largecrate, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/spacecash/c500, +/obj/item/weapon/spacecash/c100, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aK" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet/yellow, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aL" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aM" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aN" = ( +/obj/structure/sign/vacuum, +/turf/simulated/shuttle/wall, +/area/awaymission/zoo/pirateship) +"aO" = ( +/obj/item/clothing/glasses/regular/hipster, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aP" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aQ" = ( +/obj/machinery/gateway{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aR" = ( +/obj/machinery/gateway/centeraway{ + calibrated = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aS" = ( +/obj/machinery/gateway{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aT" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aU" = ( +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aV" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"aW" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aX" = ( +/obj/machinery/gateway{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aY" = ( +/obj/machinery/gateway, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"aZ" = ( +/obj/machinery/gateway{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ba" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bb" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bd" = ( +/obj/structure/symbol/pr, +/turf/simulated/shuttle/wall, +/area/awaymission/zoo/pirateship) +"be" = ( +/obj/machinery/button/remote/airlock{ + id = "packerMed"; + pixel_y = -24 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bf" = ( +/obj/machinery/sleeper, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bg" = ( +/obj/machinery/sleep_console, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bh" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo/pirateship) +"bi" = ( +/obj/machinery/door/blast/shutters{ + id = "packerMed" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bj" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bk" = ( +/obj/structure/kitchenspike, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bl" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bm" = ( +/obj/machinery/button/remote/airlock{ + id = "packerCargo"; + pixel_y = -24 + }, +/obj/machinery/light/small, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bn" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/awaymission/zoo/tradeship) +"bo" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"bp" = ( +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"bq" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/tool/screwdriver, +/obj/item/weapon/paper{ + info = "The next person who takes one of my screwdrivers gets stabbed with one. They are MINE. - Love, Madsen"; + name = "scribbled note" + }, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"br" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bs" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bt" = ( +/obj/structure/sink{ + dir = 2 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bu" = ( +/obj/machinery/vending/hydroseeds{ + slogan_delay = 700 + }, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bv" = ( +/obj/machinery/vending/hydronutrients, +/obj/effect/floor_decal/corner/beige{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bw" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bx" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/knife/butch, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"by" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donkpockets, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bz" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bA" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bB" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bC" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/material/knife, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bD" = ( +/obj/structure/table/reinforced, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bE" = ( +/obj/structure/table/reinforced, +/obj/effect/decal/cleanable/cobweb2, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bF" = ( +/obj/machinery/door/blast/shutters{ + id = "packerCargo" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"bG" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"bH" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"bI" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"bJ" = ( +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"bK" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"bL" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/tradeship) +"bM" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/tradeship) +"bN" = ( +/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bO" = ( +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bP" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bQ" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bR" = ( +/obj/item/weapon/stool, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bS" = ( +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"bT" = ( +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"bU" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bV" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bW" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bX" = ( +/obj/machinery/gibber, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"bY" = ( +/obj/machinery/button/remote/airlock{ + id = "packerCargo"; + pixel_y = 24 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"bZ" = ( +/obj/structure/closet{ + icon_closed = "cabinet_closed"; + icon_opened = "cabinet_open"; + icon_state = "cabinet_closed" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ca" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/rd, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cb" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_alc/full, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cc" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cd" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"ce" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cf" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cg" = ( +/obj/machinery/sleep_console{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ch" = ( +/obj/machinery/sleeper{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ci" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/tradeship) +"cj" = ( +/obj/item/weapon/reagent_containers/food/snacks/hugemushroomslice, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ck" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cl" = ( +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cm" = ( +/obj/machinery/door/window{ + dir = 2 + }, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cn" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/effect/floor_decal/corner/blue/diagonal, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"co" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cp" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"cq" = ( +/obj/structure/closet/secure_closet/freezer/meat{ + opened = 1 + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cr" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cs" = ( +/obj/effect/decal/cleanable/blood/splatter, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"ct" = ( +/obj/item/weapon/tool/crowbar, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo/pirateship) +"cu" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cv" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cw" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"cx" = ( +/obj/machinery/newscaster{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cy" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cz" = ( +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cA" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cB" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cC" = ( +/obj/machinery/atm{ + pixel_x = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cD" = ( +/obj/machinery/suit_cycler/syndicate, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cE" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cF" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cG" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/medical_wall{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cH" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cI" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper/zoo/pirate/volk, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"cJ" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"cK" = ( +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"cL" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cM" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cN" = ( +/obj/machinery/seed_extractor, +/obj/item/seeds/angelmycelium, +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cO" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cP" = ( +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"cQ" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"cR" = ( +/obj/item/device/multitool, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"cS" = ( +/obj/structure/shuttle/engine/heater{ + icon_state = "heater"; + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/pirateship) +"cT" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/pirateship) +"cU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"cV" = ( +/obj/structure/closet/wardrobe/pjs, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cW" = ( +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/obj/machinery/light, +/obj/structure/table/glass, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cX" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hos, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"cY" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"cZ" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"da" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/computer/security/telescreen/entertainment{ + icon_state = "frame"; + pixel_x = 32 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"db" = ( +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dc" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"dd" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"de" = ( +/obj/machinery/door/airlock/glass_medical{ + name = "Medical Bay"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"df" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dg" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l"; + dir = 4 + }, +/turf/space, +/area/awaymission/zoo/tradeship) +"dh" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"di" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dj" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dk" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dl" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/zoo/pirateship) +"dm" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"dn" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"do" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = -32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dp" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 9 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dq" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dr" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 5 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ds" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"dt" = ( +/obj/machinery/light, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"du" = ( +/obj/machinery/vending/medical{ + pixel_y = -32; + req_access = null + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dv" = ( +/obj/structure/grille, +/obj/structure/shuttle/window, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dw" = ( +/obj/machinery/computer, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dx" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dy" = ( +/obj/machinery/shieldwallgen, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dz" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey1" + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"dA" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey1" + }, +/obj/structure/plasticflaps, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"dB" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"dC" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/wall/r_wall, +/area/awaymission/zoo/pirateship) +"dD" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dE" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dF" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dH" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dI" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/lights, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dJ" = ( +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"dK" = ( +/obj/machinery/power/fractal_reactor/fluff/converter{ + mapped_in = 1; + power_generation_rate = 10000 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dL" = ( +/obj/machinery/power/terminal{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dM" = ( +/turf/space, +/area/awaymission/zoo/tradeship) +"dN" = ( +/obj/machinery/door/airlock/multi_tile/glass, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dO" = ( +/obj/structure/window/reinforced, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dP" = ( +/obj/machinery/door/window/southleft, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dQ" = ( +/obj/machinery/door/window/southright, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dR" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"dS" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/surgical/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/circular_saw, +/obj/item/stack/nanopaste, +/obj/item/weapon/surgical/hemostat{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/cautery{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dT" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"dU" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dV" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/pirateship) +"dW" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dX" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dY" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"dZ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ea" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eb" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "meatConvey1" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ec" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ed" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ee" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"ef" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eg" = ( +/obj/effect/decal/cleanable/blood/xeno, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eh" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"ei" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"ej" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"ek" = ( +/obj/machinery/vending/coffee, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"el" = ( +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"em" = ( +/obj/structure/closet/crate/secure/weapon, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"en" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eo" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ep" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eq" = ( +/obj/structure/table/rack, +/obj/item/weapon/cell/high, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"er" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"es" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/newscaster{ + pixel_x = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"et" = ( +/obj/structure/toilet, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eu" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ev" = ( +/obj/structure/mirror{ + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ew" = ( +/obj/structure/curtain/open/shower, +/obj/machinery/shower{ + pixel_y = 3 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ex" = ( +/obj/machinery/vending/snack{ + name = "hacked Getmore Chocolate Corp"; + prices = list() + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ey" = ( +/obj/structure/window/reinforced, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ez" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/mob/living/simple_mob/humanoid/pirate, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eB" = ( +/mob/living/simple_mob/animal/space/alien{ + faction = "pirate" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eC" = ( +/obj/machinery/door/window{ + base_state = "right"; + dir = 4; + icon_state = "right" + }, +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eD" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eE" = ( +/obj/item/weapon/reagent_containers/food/snacks/xenomeat, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eF" = ( +/obj/structure/table/rack, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"eH" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eI" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eJ" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eK" = ( +/obj/machinery/door/airlock/silver{ + name = "Restroom" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eL" = ( +/obj/structure/undies_wardrobe, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"eM" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eN" = ( +/obj/machinery/door/window/westright{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eO" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eP" = ( +/obj/item/weapon/tool/wrench, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eQ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eR" = ( +/obj/structure/mopbucket, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/weapon/material/knife, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"eT" = ( +/obj/item/weapon/cell/high, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"eU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"eV" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eW" = ( +/obj/machinery/door/airlock/command, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eX" = ( +/obj/structure/noticeboard{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eY" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"eZ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 6 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fb" = ( +/obj/machinery/door/window/westleft{ + name = "Storefront"; + req_access = list(160) + }, +/obj/structure/window/reinforced, +/obj/structure/table/marble, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fc" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey2" + }, +/obj/item/weapon/material/knife, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"fd" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey2" + }, +/obj/structure/plasticflaps, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"fe" = ( +/obj/machinery/conveyor{ + dir = 4; + id = "meatConvey2" + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/pirateship) +"ff" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fg" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fh" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fj" = ( +/obj/item/stack/cable_coil/random, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fk" = ( +/obj/machinery/computer/arcade/battle, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fl" = ( +/obj/structure/table/steel_reinforced, +/obj/structure/flora/pottedplant{ + icon_state = "plant-09"; + name = "Esteban"; + pixel_y = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fm" = ( +/obj/machinery/vending/assist{ + contraband = null; + name = "Old Vending Machine"; + products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fn" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fo" = ( +/obj/machinery/vending/sovietsoda, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fp" = ( +/obj/machinery/light, +/obj/structure/table/standard, +/obj/item/weapon/soap, +/obj/item/weapon/towel{ + color = "#0000FF" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fq" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 2 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fr" = ( +/obj/machinery/door/window/westright, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fs" = ( +/obj/machinery/button/remote/blast_door{ + id = "trade"; + name = "Shop Shutters"; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"ft" = ( +/obj/item/weapon/material/knife, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fu" = ( +/obj/machinery/conveyor_switch/oneway{ + id = "meatConvey2" + }, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fv" = ( +/obj/item/weapon/mop, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fw" = ( +/obj/structure/reagent_dispensers/fueltank, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fx" = ( +/obj/machinery/vending/boozeomat{ + req_access = null + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"fy" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/toolbox/mechanical, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fz" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fA" = ( +/obj/structure/closet/crate/freezer, +/obj/item/weapon/reagent_containers/food/snacks/meat, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fB" = ( +/obj/item/weapon/reagent_containers/glass/bucket, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fC" = ( +/obj/structure/reagent_dispensers, +/turf/simulated/floor/tiled/freezer, +/area/awaymission/zoo/pirateship) +"fD" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/steel_reinforced, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fE" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fF" = ( +/obj/machinery/door/window/northright, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fG" = ( +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 2; + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fH" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fI" = ( +/obj/machinery/autolathe{ + desc = "Your typical Autolathe. It appears to have much more options than your regular one, however..."; + hacked = 1; + name = "Unlocked Autolathe" + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fJ" = ( +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"fK" = ( +/obj/machinery/light/small, +/obj/effect/floor_decal/corner/red/diagonal, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fL" = ( +/obj/effect/floor_decal/corner/red/diagonal, +/obj/structure/kitchenspike, +/turf/simulated/floor/tiled, +/area/awaymission/zoo/pirateship) +"fM" = ( +/obj/machinery/door/airlock/silver, +/turf/simulated/floor, +/area/awaymission/zoo/pirateship) +"fN" = ( +/obj/structure/largecrate/animal/cat, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fO" = ( +/obj/machinery/door/airlock/glass_engineering{ + name = "Engineering"; + req_access = list(160) + }, +/turf/simulated/shuttle/floor{ + icon_state = "floor7" + }, +/area/awaymission/zoo/tradeship) +"fP" = ( +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fQ" = ( +/obj/item/weapon/stool, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fR" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper{ + info = "DEAR DAIRY: So we was doing our typpical route when the captain says we've been picking up weird signals on some backwatter planet. Madsen wanted to stay on course but he ain't the captain, so we went out of the way to check it out. There was lots of rocks on the way, but we got to the planet fine. Found a big fancy camp with nobody around and this big metal donut thing with NT stamps all over it right in the middle. Case of beer too. Captain reckons we can pass it off to some buyer in the Syndicate. Ingram says it's bad luck and that someone is going to come look for it but it sounds like better money than selling bad meat to jerky companies."; + name = "Old Diary" + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fS" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/pen/red, +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fT" = ( +/obj/structure/closet, +/obj/item/clothing/under/overalls, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"fU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"fV" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fW" = ( +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/bookcase, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fX" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"fY" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"fZ" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"ga" = ( +/obj/structure/closet/crate/solar, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gb" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/reinforced, +/area/awaymission/zoo/pirateship) +"gc" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gd" = ( +/obj/structure/ore_box, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"ge" = ( +/obj/item/stack/cable_coil/random{ + amount = 5 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gf" = ( +/obj/machinery/computer/arcade, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gh" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gi" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gj" = ( +/obj/structure/table/woodentable, +/obj/item/modular_computer/laptop/preset, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gk" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gl" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gm" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/tradeship) +"gn" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"go" = ( +/obj/structure/bed, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gp" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/obj/item/weapon/storage/wallet/random, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gq" = ( +/obj/structure/closet, +/obj/item/clothing/under/lawyer/bluesuit, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gr" = ( +/turf/simulated/shuttle/wall/dark/hard_corner, +/area/awaymission/zoo/syndieship) +"gs" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"gt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"gu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + icon_state = "shutter0"; + id = "syndieshutters"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"gv" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/captain, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gw" = ( +/obj/structure/table/glass, +/obj/machinery/computer/security/telescreen/entertainment{ + pixel_y = -35 + }, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gx" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gy" = ( +/obj/machinery/light, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gz" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/carpet, +/area/awaymission/zoo/tradeship) +"gB" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gC" = ( +/obj/machinery/vending/engivend, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gD" = ( +/obj/machinery/vending/tool, +/turf/simulated/shuttle/floor/black, +/area/awaymission/zoo/tradeship) +"gE" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gF" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen/yellow, +/obj/item/clothing/suit/space/emergency, +/obj/item/clothing/head/helmet/space/emergency, +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gG" = ( +/obj/structure/table/standard, +/obj/machinery/recharger, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gH" = ( +/obj/machinery/computer, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gI" = ( +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gJ" = ( +/obj/structure/bed, +/obj/item/weapon/bedsheet, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gK" = ( +/obj/machinery/door/unpowered/shuttle, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gL" = ( +/obj/structure/mirror{ + pixel_y = 28 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gM" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gN" = ( +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gO" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gP" = ( +/turf/simulated/wall, +/area/awaymission/zoo) +"gQ" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"gR" = ( +/obj/item/weapon/caution, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gS" = ( +/obj/machinery/portable_atmospherics/canister/air, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"gT" = ( +/obj/structure/closet/crate, +/obj/item/weapon/spacecash/c10, +/obj/item/weapon/spacecash/c200, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gU" = ( +/obj/structure/closet/crate, +/obj/item/weapon/spacecash/c10, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gV" = ( +/obj/structure/closet/crate, +/obj/item/weapon/spacecash/c1000, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gW" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/steel, +/area/awaymission/zoo/pirateship) +"gX" = ( +/obj/machinery/door/airlock/external{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"gY" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/donkpockets{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"gZ" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ha" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/machinery/computer, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hb" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hc" = ( +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hd" = ( +/obj/machinery/door/airlock/silver{ + icon_state = "door_locked"; + locked = 1 + }, +/turf/simulated/floor, +/area/awaymission/zoo/pirateship) +"he" = ( +/obj/structure/table/standard, +/obj/item/stack/material/glass{ + amount = 15 + }, +/obj/item/weapon/cell{ + charge = 100; + maxcharge = 15000 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hf" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/obj/machinery/light, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hg" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 8 + }, +/obj/item/weapon/pen{ + pixel_y = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hh" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hi" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hj" = ( +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hk" = ( +/obj/item/weapon/storage/box/matches, +/obj/item/weapon/storage/fancy/cigarettes/dromedaryco, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"hl" = ( +/obj/item/weapon/contraband/poster, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"hm" = ( +/obj/machinery/door/window/northright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hn" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ho" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-24" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hp" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hq" = ( +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hr" = ( +/obj/item/weapon/reagent_containers/food/drinks/bottle/small/beer, +/turf/simulated/floor/plating, +/area/awaymission/zoo/pirateship) +"hs" = ( +/obj/structure/flora/pottedplant, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"ht" = ( +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = -32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/stack/medical/splint, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/ointment, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/stack/medical/bruise_pack, +/obj/item/weapon/storage/belt/medical/emt, +/obj/item/weapon/storage/belt/medical/emt, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hu" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hv" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hw" = ( +/obj/structure/closet/hydrant{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hx" = ( +/obj/structure/table/rack, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hy" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-22" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hz" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-06" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hA" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-xmas" + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hB" = ( +/obj/structure/symbol/em{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hC" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hD" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hE" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"hF" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -25 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hG" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hH" = ( +/obj/structure/closet, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hI" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"hJ" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = -25 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hK" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/item/weapon/reagent_containers/food/snacks/liquidfood, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hL" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/obj/item/weapon/reagent_containers/food/snacks/tastybread, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hM" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hN" = ( +/obj/machinery/flasher{ + id = "syndieflash"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hO" = ( +/obj/item/device/radio/intercom{ + desc = "Talk through this. Evilly"; + frequency = 1213; + name = "Syndicate Intercom"; + pixel_x = 0; + pixel_y = -32; + subspace_transmission = 1; + syndie = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hP" = ( +/obj/structure/closet/walllocker/emerglocker{ + pixel_x = 28 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hQ" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hR" = ( +/obj/machinery/door/airlock/external, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"hT" = ( +/obj/machinery/door/window/southleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hU" = ( +/obj/machinery/door/window/southright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hV" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hW" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hX" = ( +/obj/machinery/vending/assist{ + contraband = null; + name = "AntagCorpVend"; + products = list(/obj/item/device/assembly/prox_sensor = 5, /obj/item/device/assembly/signaler = 4, /obj/item/device/assembly/infra = 4, /obj/item/device/assembly/prox_sensor = 4, /obj/item/weapon/handcuffs = 8, /obj/item/device/flash = 4, /obj/item/weapon/cartridge/signal = 4, /obj/item/clothing/glasses/sunglasses = 4) + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"hY" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"hZ" = ( +/obj/machinery/vending/cigarette{ + name = "hacked cigarette machine"; + prices = list(); + products = list(/obj/item/weapon/storage/fancy/cigarettes = 10, /obj/item/weapon/storage/box/matches = 10, /obj/item/weapon/flame/lighter/zippo = 4, /obj/item/clothing/mask/smokable/cigarette/cigar/havana = 2) + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ia" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/button/flasher{ + id = "syndieflash"; + name = "Flasher"; + pixel_x = 27; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ib" = ( +/mob/living/simple_mob/animal/passive/cat/kitten{ + name = "Enola" + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ic" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"id" = ( +/obj/structure/table/standard, +/obj/item/weapon/material/knife{ + pixel_x = -6 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = -1 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/reagent_containers/syringe/drugs{ + pixel_x = 3; + pixel_y = 9 + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ie" = ( +/obj/machinery/door/window/eastleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"if" = ( +/obj/machinery/door/window/westright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ig" = ( +/obj/structure/closet/syndicate/suit{ + name = "suit closet" + }, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ih" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"ii" = ( +/obj/structure/closet{ + name = "custodial" + }, +/obj/item/weapon/reagent_containers/glass/bucket, +/obj/item/weapon/mop, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ij" = ( +/obj/machinery/door/window/eastright, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ik" = ( +/mob/living/simple_mob/humanoid/merc/ranged{ + desc = "He doesn't seem like he's looking for a fight."; + faction = "neutral"; + friendly = "hugs"; + name = "Mercenary" + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"il" = ( +/obj/machinery/door/window/westleft, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"im" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"in" = ( +/obj/machinery/sleep_console, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"io" = ( +/obj/structure/sign/nosmoking_1{ + pixel_y = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ip" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iq" = ( +/obj/structure/table/standard, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_y = 32; + req_access = list(150) + }, +/obj/item/bodybag, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/glass/bottle/antitoxin{ + pixel_x = -4; + pixel_y = 8 + }, +/obj/item/weapon/reagent_containers/glass/bottle/inaprovaline{ + pixel_x = 4; + pixel_y = 7 + }, +/obj/item/weapon/reagent_containers/syringe, +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"ir" = ( +/obj/machinery/light{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"is" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/yellow, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"it" = ( +/obj/structure/table/standard, +/obj/item/borg/sight/thermal, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iu" = ( +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/table/standard, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iw" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"ix" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iy" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iz" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iA" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iB" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iC" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 8; + icon_state = "shutter0"; + id = "syndieshutters_infirmary"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iD" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 4; + icon_state = "shutter0"; + id = "syndieshutters_workshop"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iF" = ( +/obj/structure/table/rack, +/obj/item/device/multitool, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iG" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/stack/nanopaste, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iH" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/weapon/surgical/hemostat, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iI" = ( +/obj/structure/table/standard, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iJ" = ( +/obj/structure/table/standard, +/obj/item/roller, +/obj/item/roller, +/obj/item/roller, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iK" = ( +/obj/item/weapon/weldingtool, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iL" = ( +/obj/structure/sign/securearea{ + name = "CAUTION"; + pixel_x = 32 + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/structure/mopbucket, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iM" = ( +/obj/machinery/telecomms/allinone{ + intercept = 1 + }, +/obj/machinery/door/window/northright{ + name = "Telecoms Mainframe"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iN" = ( +/obj/machinery/door/blast/regular{ + id = "syndieshutters_telebay"; + name = "Outer Airlock" + }, +/turf/simulated/shuttle/plating, +/area/awaymission/zoo/syndieship) +"iO" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iP" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/weapon/tank/anesthetic, +/obj/item/clothing/mask/breath/medical, +/obj/item/clothing/mask/surgical, +/obj/item/clothing/gloves/sterile, +/obj/item/weapon/reagent_containers/syringe, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iQ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iR" = ( +/obj/item/weapon/tool/crowbar, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iS" = ( +/obj/structure/sign/nosmoking_2{ + pixel_x = 32 + }, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iT" = ( +/obj/machinery/iv_drip, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iU" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iV" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor/darkred, +/area/awaymission/zoo/syndieship) +"iW" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/syndieship) +"iX" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l" + }, +/turf/space, +/area/awaymission/zoo/syndieship) +"iY" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/awaymission/zoo/syndieship) +"iZ" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r" + }, +/turf/space, +/area/awaymission/zoo/syndieship) +"ja" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jb" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jc" = ( +/obj/structure/symbol/es{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jd" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"je" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jf" = ( +/obj/structure/symbol/sa{ + pixel_y = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jg" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jh" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ji" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jj" = ( +/obj/structure/grille, +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jk" = ( +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jl" = ( +/obj/machinery/vending/cola, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jm" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jo" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jp" = ( +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"jq" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jr" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"js" = ( +/obj/machinery/door/window/northleft, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"jt" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"ju" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jv" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jx" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jy" = ( +/obj/machinery/door/airlock/silver{ + name = "Men's Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"jz" = ( +/obj/machinery/door/airlock/silver{ + name = "Women's Restroom" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"jA" = ( +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jC" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jD" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jG" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jI" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jJ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jK" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jL" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jM" = ( +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"jN" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jO" = ( +/obj/structure/bed/chair/wood, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"jP" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"jQ" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jR" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"jT" = ( +/mob/living/simple_mob/animal/passive/chicken{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jU" = ( +/mob/living/simple_mob/animal/passive/chick, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jV" = ( +/mob/living/simple_mob/animal/passive/dog/corgi/puppy{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"jW" = ( +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jX" = ( +/obj/effect/floor_decal/corner/green{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"jY" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"jZ" = ( +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"ka" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"kb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"kc" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kd" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"ke" = ( +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kf" = ( +/obj/structure/sink/kitchen{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kg" = ( +/obj/structure/table/marble, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kh" = ( +/obj/machinery/vending/food, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"ki" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"kj" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"kk" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/ian_costume, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kl" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/storage/hooded/carp_costume, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"km" = ( +/obj/structure/table/rack, +/obj/effect/landmark/costume, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kn" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/chickensuit, +/obj/item/clothing/head/chicken, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ko" = ( +/obj/structure/table/rack, +/obj/item/clothing/head/sombrero, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kp" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kq" = ( +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"kr" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ks" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/monkeysuit, +/obj/item/clothing/mask/gas/monkeymask, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kt" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/bio_suit/plaguedoctorsuit, +/obj/item/clothing/head/plaguedoctorhat, +/obj/item/clothing/mask/gas/plaguedoctor, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ku" = ( +/obj/structure/table/rack, +/obj/item/clothing/under/owl, +/obj/item/clothing/mask/gas/owl_mask, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kv" = ( +/obj/structure/table/rack, +/obj/item/toy/waterflower, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kw" = ( +/obj/structure/table/rack, +/obj/item/toy/sword, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kx" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"ky" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"kz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"kA" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"kB" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"kC" = ( +/obj/effect/floor_decal/corner/green/full, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"kD" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kE" = ( +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kF" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kG" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kH" = ( +/obj/structure/flora/ausbushes/ywflowers, +/mob/living/simple_mob/animal/passive/bird/parrot/kea{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kI" = ( +/obj/structure/flora/ausbushes/pointybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kJ" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kK" = ( +/obj/structure/flora/ausbushes/pointybush, +/mob/living/simple_mob/animal/passive/bird/parrot/pink_cockatoo{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kL" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kM" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"kN" = ( +/obj/structure/urinal{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kO" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kP" = ( +/obj/item/frame/mirror, +/turf/simulated/wall, +/area/awaymission/zoo) +"kQ" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kR" = ( +/obj/machinery/door/airlock/silver{ + name = "Toilet" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kS" = ( +/obj/structure/toilet{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"kT" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kU" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"kV" = ( +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"kW" = ( +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"kX" = ( +/obj/structure/table/marble, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"kY" = ( +/obj/structure/table/marble, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"kZ" = ( +/obj/effect/floor_decal/corner/green{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"la" = ( +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/item/weapon/coin/gold, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lc" = ( +/obj/effect/floor_decal/corner/green{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"ld" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"le" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/white_cockatoo{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lf" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lg" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/grey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lh" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"li" = ( +/obj/structure/flora/ausbushes/brflowers, +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lj" = ( +/obj/structure/flora/ausbushes/ppflowers, +/mob/living/simple_mob/animal/passive/bird/parrot/budgerigar/bluegreen{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lk" = ( +/obj/structure/flora/pottedplant{ + icon_state = "applebush" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"ll" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lm" = ( +/mob/living/simple_mob/vore/horse{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"ln" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lo" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lp" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lq" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/fancy/crayons, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lr" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"ls" = ( +/obj/structure/table/marble, +/obj/item/toy/nanotrasenballoon, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"lt" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register{ + icon_state = "register_idle"; + dir = 1 + }, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"lu" = ( +/obj/structure/table/rack, +/obj/item/device/camera_film, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lv" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/photo_album, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lw" = ( +/obj/structure/table/rack, +/obj/item/device/camera_film, +/obj/item/device/camera, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lx" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"ly" = ( +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain_full"; + dir = 1 + }, +/obj/structure/showcase{ + name = "Statue"; + desc = "It looks almost lifelike."; + icon = 'icons/obj/statue.dmi'; + icon_state = "monkey" + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"lz" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lA" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lB" = ( +/obj/structure/toilet{ + dir = 8 + }, +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lC" = ( +/obj/structure/flora/pottedplant{ + icon_state = "plant-16" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lD" = ( +/obj/structure/table/marble, +/obj/machinery/cash_register{ + icon_state = "register_idle"; + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lE" = ( +/mob/living/simple_mob/animal/passive/chick, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"lF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lG" = ( +/obj/item/weapon/coin/silver, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lH" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"lI" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/budgerigar{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lJ" = ( +/obj/structure/flora/ausbushes/sunnybush, +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lK" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"lL" = ( +/obj/machinery/vending/dinnerware, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"lM" = ( +/mob/living/simple_mob/animal/passive/cow{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"lN" = ( +/obj/structure/table/rack, +/obj/item/toy/nanotrasenballoon, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lO" = ( +/obj/structure/table/rack, +/obj/item/toy/cultsword, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lP" = ( +/obj/structure/table/rack, +/obj/item/toy/crossbow, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lQ" = ( +/obj/structure/table/rack, +/obj/item/toy/bosunwhistle, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lR" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/wallet/poly, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lS" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/pill_bottle/dice_nerd, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lT" = ( +/obj/structure/table/rack, +/obj/item/weapon/beach_ball, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lU" = ( +/obj/structure/table/rack, +/obj/item/weapon/soap/deluxe, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lV" = ( +/obj/structure/table/rack, +/obj/item/device/binoculars, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lW" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/backpack/clown, +/obj/item/clothing/shoes/rainbow, +/obj/item/clothing/under/color/rainbow, +/obj/item/clothing/under/seromi/undercoat/standard/rainbow, +/obj/item/clothing/gloves/rainbow, +/obj/item/clothing/head/soft/rainbow, +/turf/simulated/floor/holofloor/carpet, +/area/awaymission/zoo) +"lX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"lY" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"lZ" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 2 + }, +/turf/simulated/floor/beach/water{ + icon_state = "seadeep" + }, +/area/awaymission/zoo) +"ma" = ( +/obj/effect/floor_decal/corner/green/full{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"mb" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/cockatiel/yellowish{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"mc" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/white_caique{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"md" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"me" = ( +/obj/structure/closet/crate/bin, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"mf" = ( +/obj/structure/closet/crate/bin, +/obj/item/trash/candy, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"mg" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"mh" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"mi" = ( +/obj/machinery/newscaster, +/turf/simulated/wall, +/area/awaymission/zoo) +"mj" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"mk" = ( +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"ml" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"mm" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_closed"; + locked = 0; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/holofloor/lino, +/area/awaymission/zoo) +"mn" = ( +/obj/effect/floor_decal/corner/green{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"mo" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"mp" = ( +/obj/structure/window/reinforced, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"mq" = ( +/obj/machinery/door/window/southleft, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"mr" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ms" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Not to be confused with the common Earth bat, the Space Bat is a mammalian-like creature that is capable of surviving in the vacuum of space! These creatures live and fly in groups, and are most commonly found in caves, such as those on asteroids, or small planetary bodies with light gravity and no atmosphere. These creatures survive by sucking the blood of wayward space travelers, and are considered to be a pest by the Free Trade Union for their habit of infesting space ships sitting at dock. Their origin is currently unknown."; + name = "Space Bat Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mu" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "This giant snake is a rare beast native to Paraiso, in the Carnelia system. Though normally only found deep in the jungles, these ravenous monsters have been known to slither out onto the planet's many beach resorts to swallow up unwary sunbathers. Otherwise, the creature's diet consists mainly of monkeys that were accidentally introduced to the planet by pet owners. The presence of the invasive monkey species had caused giant snake populations to swell in the 2530's, but today, due to excessive hunting, the giant snake's numbers have dwindled to the point of being an endangered species."; + name = "Giant Snake Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Catgirls (not to be confused with Nekos, an interspecies hybrid born of a union between Human and Tajaran parents) were created artificially with the intention of producing a Human-feline hybrid that could serve aboard a space-faring vessel, control pests aboard such ships, and even alleviate stress among male crew members. Their eyes are between 20% and 50% larger than the average Human, which gives them their famously 'Kawaii' appearance. The large eyes trigger a subconscious psychological 'cute' response among Humans, causing them to usually become relaxed in their presence. Some catgirls have learned to abuse this trait, and have evolved to prey upon Humans who linger too close for too long."; + name = "Catgirl Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Ir'ash'uint (translating roughly from Skrellian to 'Giant Frog' in Galactic Common), this amphibian lives on the Skrell homeworld Qerrbalak, in the Qerr�valis System. The Giant Frog shares a common, albeit distant ancestry with the Skrell, but unlike the Skrell, its diet is exclusively carnivorous. Its diet includes large insects, fish, and indeed, even Skrell."; + name = "Giant Frog Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"my" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mz" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mA" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mD" = ( +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"mE" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mG" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"mH" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"mI" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mJ" = ( +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"mK" = ( +/obj/structure/flora/ausbushes/reedbush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"mL" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mM" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mN" = ( +/obj/structure/window/phoronreinforced{ + dir = 4; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mQ" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"mR" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"mS" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mT" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mU" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"mV" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"mW" = ( +/obj/structure/window/phoronreinforced{ + dir = 8; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + dir = 1; + icon_state = "phoronrwindow"; + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/window/phoronreinforced{ + maxhealth = 10000; + name = "robust borosilicate window" + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mX" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_locked"; + locked = 1; + name = "Exhibit Airlock" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"mY" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"mZ" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"na" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"nb" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nc" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"nd" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"ne" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"nf" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"ng" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"nh" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"ni" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"nj" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"nk" = ( +/obj/structure/symbol/da, +/turf/simulated/wall, +/area/awaymission/zoo) +"nl" = ( +/obj/structure/flora/ausbushes/stalkybush, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"nm" = ( +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"nn" = ( +/obj/structure/flora/ausbushes, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"no" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"np" = ( +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nq" = ( +/obj/structure/bed/chair, +/obj/structure/showcase{ + name = "Statue"; + desc = "It looks almost lifelike."; + icon = 'icons/obj/statue.dmi'; + icon_state = "Human_male" + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nr" = ( +/turf/simulated/mineral/ignore_mapgen, +/area/awaymission/zoo) +"ns" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"nt" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nu" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nv" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nw" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nx" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"ny" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"nz" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nA" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"nB" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"nC" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nD" = ( +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/turf/flooring/misc_vr.dmi'; + icon_state = "hive"; + name = "giant honeycomb" + }, +/area/awaymission/zoo) +"nE" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"nF" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"nG" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 1 + }, +/area/awaymission/zoo) +"nH" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"nI" = ( +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"nJ" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"nK" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 2 + }, +/area/awaymission/zoo) +"nL" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"nM" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/pen/blue, +/obj/item/weapon/pen/red{ + pixel_x = -5; + pixel_y = -1 + }, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nN" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/folder{ + pixel_x = -4 + }, +/obj/item/weapon/folder/red{ + pixel_y = 3 + }, +/obj/item/weapon/folder/blue{ + pixel_x = 5 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/internalaffairs, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nO" = ( +/obj/structure/table/reinforced, +/obj/item/device/flashlight/lamp, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"nP" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Not to be confused with the common Earth bat, the Space Bat is a mammalian-like creature that is capable of surviving in the vacuum of space! These creatures live and fly in groups, and are most commonly found in caves, such as those on asteroids, or small planetary bodies with light gravity and no atmosphere. These creatures survive by sucking the blood of wayward space travelers, and are considered to be a pest by the Free Trade Union for their habit of infesting space ships sitting at dock. Their origin is currently unknown."; + name = "Space Bat Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"nQ" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"nR" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"nS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "This giant snake is a rare beast native to Paraiso, in the Carnelia system. Though normally only found deep in the jungles, these ravenous monsters have been known to slither out onto the planet's many beach resorts to swallow up unwary sunbathers. Otherwise, the creature's diet consists mainly of monkeys that were accidentally introduced to the planet by pet owners. The presence of the invasive monkey species had caused giant snake populations to swell in the 2530's, but today, due to excessive hunting, the giant snake's numbers have dwindled to the point of being an endangered species."; + name = "Giant Snake Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"nT" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"nU" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nV" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"nW" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"nX" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nY" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"nZ" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"oa" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"ob" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oc" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Catgirls (not to be confused with Nekos, an interspecies hybrid born of a union between Human and Tajaran parents) were created artificially with the intention of producing a Human-feline hybrid that could serve aboard a space-faring vessel, control pests aboard such ships, and even alleviate stress among male crew members. Their eyes are between 20% and 50% larger than the average Human, which gives them their famously 'Kawaii' appearance. The large eyes trigger a subconscious psychological 'cute' response among Humans, causing them to usually become relaxed in their presence. Some catgirls have learned to abuse this trait, and have evolved to prey upon Humans who linger too close for too long."; + name = "Catgirl Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"od" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Ir'ash'uint (translating roughly from Skrellian to 'Giant Frog' in Galactic Common), this amphibian lives on the Skrell homeworld Qerrbalak, in the Qerr�valis System. The Giant Frog shares a common, albeit distant ancestry with the Skrell, but unlike the Skrell, its diet is exclusively carnivorous. Its diet includes large insects, fish, and indeed, even Skrell."; + name = "Giant Frog Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oe" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"of" = ( +/mob/living/simple_mob/vore/aggressive/frog{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"og" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 10 + }, +/area/awaymission/zoo) +"oh" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 6 + }, +/area/awaymission/zoo) +"oi" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oj" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"ok" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"ol" = ( +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"om" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"on" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oo" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"op" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"oq" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"or" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"os" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"ot" = ( +/turf/simulated/floor/holofloor/beach/water, +/area/awaymission/zoo) +"ou" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 2 + }, +/area/awaymission/zoo) +"ov" = ( +/mob/living/simple_mob/animal/passive/dog/corgi{ + faction = "zoo" + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"ow" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"ox" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oy" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"oz" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"oA" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"oB" = ( +/mob/living/simple_mob/vore/bee{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/turf/flooring/misc_vr.dmi'; + icon_state = "hive"; + name = "giant honeycomb" + }, +/area/awaymission/zoo) +"oC" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"oD" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"oE" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"oF" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/mineral/floor/ignore_mapgen, +/area/awaymission/zoo) +"oG" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"oH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"oI" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"oJ" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"oK" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"oL" = ( +/mob/living/simple_mob/vore/aggressive/giant_snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oM" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"oN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oO" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oP" = ( +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oQ" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/obj/effect/floor_decal/spline/fancy/wood, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oR" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"oS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Corgi (Welsh for 'dwarf dog') is a small type of herding dog that originated in Wales, on the planet Earth (Sol system). Two separate breeds are recognized: the Pembroke Welsh Corgi (as seen here) and the Cardigan Welsh Corgi. Historically, the Pembroke has been attributed to the influx of dogs alongside Flemish weavers from around the 10th century, while the Cardigan is attributed to the dogs brought with Norse settlers, in particular a common ancestor of the Swedish Vallhund. A certain degree of inbreeding between the two types has been suggested to explain the similarities between the two. Here it is seen in a replica of its natural habitat, the common office building, where it participates in a symbiotic relationship with the Humans who also reside here. In exchange for treats and bellyrubs, the Corgi provides the Humans with emotional support in the otherwise soul-crushing environment of the corporate workplace."; + name = "Corgi Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oT" = ( +/obj/structure/table/reinforced, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"oU" = ( +/mob/living/simple_mob/animal/space/bats{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"oV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Tindalos is a large insect creature native to the Tubau plains of Zzarlaanis, in the Tiphonia system. The Human settlers who live on the planet have compared them to wingless grasshoppers. At high population densities and under certain environmental conditions, the Tindalos have been known to change behavior and form swarms. Tindalos are plant-eaters, sometimes becoming serious pests of cereals, vegetables and pasture, especially when they swarm in their millions and destroy crops over wide areas."; + name = "Tindalos Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"oW" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"oX" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"oY" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"oZ" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"pa" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Cats were once common features on many trading, exploration, and naval ships in the early days of Human sailing. Cats were attracted by an abundance of mice and rats, which can cause damage to ropes, woodwork, and eventually as technology progressed, electrical wiring. Rodents also presented a threat to the stores the ship carried, both as cargo and as food for sailors. Furthermore, rats and mice were also sources of disease, which was dangerous for ships at sea for long periods of time. As Humanity thrust its self into the age of slipspace, the Cat has again made the common spaceship its hunting ground for exactly the same reasons it had in times of old. Skrell scientists have noted how the common Cat has been able to tame and even control Humans. It is believed that had the cat ever achieved sentience, Humanity its self would fall to its knees before their feline overlords. Fortunately for Humans across the galaxy, there is negligible evolutionary benefit for the cat to evolve further."; + name = "Cat Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"pb" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pc" = ( +/mob/living/simple_mob/vore/catgirl{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"pd" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pe" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Space Bumble Bee is a large, usually docile stinging insect native to Virgo-Prime in the Virgo Erigone system. It normally lives in small oases around what few bodies of water exist on the arid landscape, but ever since Humans have come to colonize the world, they have been discovered in city parks even in the capital city of Anur. Despite their gentle demeanor however, they can and will attack when provoked, and are capable of opening their mandibles wide enough to swallow a Human sized victim whole. Deep in their abdomen, they process their victims along with harvested nectar into rich honey."; + name = "Space Bumble Bee Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"pf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Sobaka, also known as the Dog Shark, is an amphibious, cold-blooded animal that lives in the tropical waters of Qerrbalak, in the Qerr�valis System. The Sobaka hunts fish and small animals while on land, but would prefer to scavenge than to hunt. Its nose is far more powerful than any canine species, and are able to smell both on land, and in the sea. The Sobaka are commonly employed as drug-sniffing and bomb-sniffing animals by Skrellian security forces. The Sobaka is a close relative of the sentient species called Akula."; + name = "Sobaka Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"pg" = ( +/mob/living/carbon/human/sharkm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/awaymission/zoo) +"ph" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pi" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"pj" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pk" = ( +/mob/living/simple_mob/vore/aggressive/giant_snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"pl" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"pm" = ( +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"pn" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"po" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pp" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"pq" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"pr" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"ps" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"pt" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"pu" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"pv" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"pw" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"px" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"py" = ( +/obj/structure/flora/ausbushes/palebush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pz" = ( +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"pA" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pB" = ( +/mob/living/simple_mob/animal/passive/tindalos{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"pC" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"pD" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"pE" = ( +/mob/living/simple_mob/animal/passive/cat{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"pF" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pH" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pI" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pJ" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"pK" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"pL" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pM" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pN" = ( +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pO" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pP" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pQ" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pR" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"pS" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"pT" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"pU" = ( +/obj/structure/flora/ausbushes/genericbush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"pV" = ( +/obj/structure/closet/lawcloset, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pW" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pX" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pY" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"pZ" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qa" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"qb" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"qc" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"qd" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"qe" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 9 + }, +/area/awaymission/zoo) +"qf" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 1 + }, +/area/awaymission/zoo) +"qg" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 5 + }, +/area/awaymission/zoo) +"qh" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qi" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qj" = ( +/obj/effect/floor_decal/carpet{ + icon_state = "carpet"; + dir = 2 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qk" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"ql" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"qm" = ( +/obj/structure/flora/ausbushes/sunnybush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"qn" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 4 + }, +/area/awaymission/zoo) +"qo" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beachcorner"; + dir = 8 + }, +/area/awaymission/zoo) +"qp" = ( +/obj/machinery/photocopier, +/turf/simulated/floor/lino, +/area/awaymission/zoo) +"qq" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"qr" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"qs" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass2" + }, +/area/awaymission/zoo) +"qt" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"qu" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"qv" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass4" + }, +/area/awaymission/zoo) +"qw" = ( +/obj/structure/flora/ausbushes/fernybush, +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"qx" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qy" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"qz" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qA" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A mouse (plural: mice), native to Earth in the Sol system, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail and a high breeding rate. The best known mouse species is the common house mouse (Mus musculus). It is also a popular pet. In some places, certain kinds of field mice are locally common. They are known to invade homes and space ships for food and shelter. Cats, wild dogs, foxes, birds of prey, snakes and even certain kinds of arthropods have been known to prey heavily upon mice. Nevertheless, because of its remarkable adaptability to almost any environment, the mouse is one of the most successful mammalian genera living in the galaxy today."; + name = "Mouse Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Sparra are a bird-like race from the planets Eltus and Tal in the Vilous system. These creatures have compared intelligence comparable to avians of the Corvus genus, from Earth. The Sparra are believed to share a common ancestry with one of the sentient races on Tal, called Nevreas. The Sparra have exhibited behavior including complex use of primitive tools, and even modification of tools, a trait which has not even been witnessed in primates besides Humans."; + name = "Sparra Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qC" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Diyaab is a predatory creature whose various geneses dwell at the upper latitudes of both hemispheres of most continents on Meralar, in the Rarkajar system. They resemble wolverines in appearance, but are slightly larger, and with longer legs. They also have long ears and leonine tails tipped with a contrasting color, the specifics of which vary based on species. They live in packs of up to seven individuals. They are omnivores, consuming Chur'eech nuts and Thaa'dra, as well as fish, eggs, Arnab, and Dubaab. However, they are most notable for being able to take down larger creatures, including Tajara, by using group tactics. They communicate through body language involving the ears and tail. If forcibly separated from their packs with no means of returning, a Diyaab will lay down and die. It has been theorized that they are related to the Farwa."; + name = "Diyaab Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qD" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Neaera can be essentially described as an odd mix of Salamander, Frog and Monkey, and often travel about the swamps of Qerrbalak via the trees. They hunt the larger insects of the swamps, as well as eat the plant life in the areas. They are most often neutral to both Skrell and Human presence, but they will defend themselves if provoked."; + name = "Neaera Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qE" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 9 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qF" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 1 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qG" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 5 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qH" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qI" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qJ" = ( +/mob/living/carbon/human/sparram{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"qK" = ( +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"qL" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 4 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qM" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qN" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 1 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"qO" = ( +/obj/item/trash/syndi_cakes, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qP" = ( +/obj/item/weapon/stool/padded, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qQ" = ( +/obj/effect/decal/cleanable/generic, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qR" = ( +/mob/living/simple_mob/animal/passive/mouse{ + faction = "zoo" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qS" = ( +/obj/effect/decal/cleanable/blood/oil, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qT" = ( +/obj/item/trash/chips, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qU" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/box/lights/mixed, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qV" = ( +/obj/structure/table/rack{ + dir = 1 + }, +/obj/item/weapon/extinguisher, +/obj/item/clothing/head/hardhat/red, +/obj/item/device/flashlight, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"qW" = ( +/obj/machinery/floodlight, +/turf/simulated/floor, +/area/awaymission/zoo) +"qX" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"qY" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"qZ" = ( +/obj/structure/flora/tree/dead, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"ra" = ( +/obj/structure/flora/tree/pine, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rb" = ( +/mob/living/carbon/human/neaera{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"rc" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 8 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rd" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 4 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"re" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor, +/area/awaymission/zoo) +"rf" = ( +/mob/living/simple_mob/animal/sif/diyaab{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rg" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + icon_state = "spline_fancy"; + dir = 10 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rh" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner{ + dir = 8 + }, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"ri" = ( +/obj/structure/flora/ausbushes/ywflowers, +/obj/effect/floor_decal/spline/fancy/wood/corner, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rj" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 6 + }, +/obj/structure/flora/ausbushes/ppflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rk" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rl" = ( +/obj/machinery/space_heater, +/turf/simulated/floor, +/area/awaymission/zoo) +"rm" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/turf/simulated/floor, +/area/awaymission/zoo) +"rn" = ( +/obj/machinery/portable_atmospherics/powered/scrubber, +/turf/simulated/floor, +/area/awaymission/zoo) +"ro" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/floor, +/area/awaymission/zoo) +"rp" = ( +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor, +/area/awaymission/zoo) +"rq" = ( +/turf/simulated/floor, +/area/awaymission/zoo) +"rr" = ( +/obj/effect/floor_decal/spline/fancy/wood{ + dir = 2 + }, +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"rs" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rt" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Xenomorph XX121, better known just as Xenomorph, are an extraterrestrial, endoparasitoid species with multiple life cycles, possibly originating from the planet Proteus (also known as Xenomorph Prime), which orbits the star A6 454. One of the deadliest of all known alien species, these creatures need a host organism in order to reproduce. The appearance of the Xenomorph varies depending on its host. The Human phenotype is generally around 7�8 feet, and roughly 136.0 to 181.4 kilograms in weight, with a long, muscular tail and large, curved, oblong head. The Queen of this species is generally twice as large (they can grow even larger, some even up to 100 feet tall, and stronger if given time) and possesses superior speed, strength and intelligence. The term Xenomorph is derived from the Greek words xeno ('stranger', 'alien', and 'foreigner') and morphe ('form', 'shape'). There are no solid facts as to the origins of the Xenomorph species; instead, there are many assumptions which cannot be confirmed. Based on the limited information we have, the most commonly accepted hypothesis is that they are an artificially created species, although another hypothesis says that they evolved naturally on a planet much different than our own. The Xenomorph lives in a hive together with its queen. Amazingly, the blood and other bodily fluids of the Xenomorph are highly acidic. It is not yet understood how a creature of such biology can exist. The planet Proteus is also home to rare, red-hued Xenomorphs, who frequently fight their black-colored rivals. Some Xenomorphs are alleged to be able to cloak themselves to be invisible to the human eye, but this has not been confirmed by independent study."; + name = "Xenomorph Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ru" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Space spider is a broad classification is used to indicate a subspecies of arachnids discovered in the Tau sector. Extremely dangerous and voracious, this family of arachnids managed to evolve and adapt to grow and thrive in a variety of atmospheric conditions, even the complete lack of an atmosphere altogether. The females, bigger than the males, tend to lay their eggs in the bodies of animals killed during hunts. From there, the young specimens (spiderlings) will feed on the corpse for the first few hours of life until the body is picked clean, after which they will leave the nest to begin hunting for small parasites and anaerobic or aerobic creatures. Once they reach adulthood, their societal structure seems to change, pushing them to hunt in small packs, mostly favoring their numbers and aggressive nature, and inoculating a deadly toxin in their victims before sucking the nutrients dry."; + name = "Space Spider Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rv" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Samak are the apex predator in the various plains regions of the northern hemisphere of Meralar. Unlike many creatures of Meralar, it does not have any fur to speak of. Instead, it is completely covered in thick armored plates which act as a barrier between the Samak's internal warmth and the cold environment. However, this is still not that efficient, so the Samak feed often to keep themselves warm. The Samak have six thick legs tipped with broad claws, and roughly aerodynamic bodies. They burrow underground, detecting prey through incredibly keen thermal detection. They pop up suddenly, grab their next meal, and return underground just as quickly. They prefer larger prey, such as the Baqara, Elu'a Eli, and Tajaran. Due to their voracious appetites and tendency to ruin mine shafts and infrastructure, they have been hunted almost to extinction, mainly by the Slavemasters. For the Tajaran, being able to kill a Samak singlehandedly (and without 'cheating', such as saturation bombing and the like) is an incredible feat, and any individual who pulls it off is lauded greatly."; + name = "Samak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Space bears are the result of reckless experimentation in the early days of interplanetary travel and colonization. Rogue scientists in the beginnings of what is now known as Space Russia got very drunk one night, more than usual, and decided to 'improve' on the terran bear. The result is faster, stronger, and smarter than the original species, but most importantly they are able to survive in the airless void of space without any special equipment. It is unknown if they were originally meant to be living weapons or simply made 'because we can', but the scientists responsible were never heard from again. Now, thanks to faster than light travel and lackluster effort in making sure nothing's riding along, Space Bears can be found living on asteroids and moons across the galaxy, wherever Humanity and friends may roam."; + name = "Space Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rx" = ( +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"ry" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rz" = ( +/turf/simulated/floor/holofloor/reinforced{ + icon = 'icons/turf/floors.dmi'; + icon_state = "lava"; + name = "hololava" + }, +/area/awaymission/zoo) +"rA" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rB" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rC" = ( +/turf/simulated/floor/holofloor/space, +/area/awaymission/zoo) +"rD" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rE" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rF" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rG" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rH" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rI" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rJ" = ( +/obj/structure/flora/bush, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rK" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rL" = ( +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rM" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rN" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rO" = ( +/obj/structure/closet/crate, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"rP" = ( +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"rQ" = ( +/obj/structure/flora/grass/both, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Xenomorph XX121, better known just as Xenomorph, are an extraterrestrial, endoparasitoid species with multiple life cycles, possibly originating from the planet Proteus (also known as Xenomorph Prime), which orbits the star A6 454. One of the deadliest of all known alien species, these creatures need a host organism in order to reproduce. The appearance of the Xenomorph varies depending on its host. The Human phenotype is generally around 7�8 feet, and roughly 136.0 to 181.4 kilograms in weight, with a long, muscular tail and large, curved, oblong head. The Queen of this species is generally twice as large (they can grow even larger, some even up to 100 feet tall, and stronger if given time) and possesses superior speed, strength and intelligence. The term Xenomorph is derived from the Greek words xeno ('stranger', 'alien', and 'foreigner') and morphe ('form', 'shape'). There are no solid facts as to the origins of the Xenomorph species; instead, there are many assumptions which cannot be confirmed. Based on the limited information we have, the most commonly accepted hypothesis is that they are an artificially created species, although another hypothesis says that they evolved naturally on a planet much different than our own. The Xenomorph lives in a hive together with its queen. Amazingly, the blood and other bodily fluids of the Xenomorph are highly acidic. It is not yet understood how a creature of such biology can exist. The planet Proteus is also home to rare, red-hued Xenomorphs, who frequently fight their black-colored rivals. Some Xenomorphs are alleged to be able to cloak themselves to be invisible to the human eye, but this has not been confirmed by independent study."; + name = "Xenomorph Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rS" = ( +/mob/living/simple_mob/animal/space/alien/drone{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"rT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space spider is a broad classification is used to indicate a subspecies of arachnids discovered in the Tau sector. Extremely dangerous and voracious, this family of arachnids managed to evolve and adapt to grow and thrive in a variety of atmospheric conditions, even the complete lack of an atmosphere altogether. The females, bigger than the males, tend to lay their eggs in the bodies of animals killed during hunts. From there, the young specimens (spiderlings) will feed on the corpse for the first few hours of life until the body is picked clean, after which they will leave the nest to begin hunting for small parasites and anaerobic or aerobic creatures. Once they reach adulthood, their societal structure seems to change, pushing them to hunt in small packs, mostly favoring their numbers and aggressive nature, and inoculating a deadly toxin in their victims before sucking the nutrients dry."; + name = "Space Spider Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rU" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"rV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Samak are the apex predator in the various plains regions of the northern hemisphere of Meralar. Unlike many creatures of Meralar, it does not have any fur to speak of. Instead, it is completely covered in thick armored plates which act as a barrier between the Samak's internal warmth and the cold environment. However, this is still not that efficient, so the Samak feed often to keep themselves warm. The Samak have six thick legs tipped with broad claws, and roughly aerodynamic bodies. They burrow underground, detecting prey through incredibly keen thermal detection. They pop up suddenly, grab their next meal, and return underground just as quickly. They prefer larger prey, such as the Baqara, Elu'a Eli, and Tajaran. Due to their voracious appetites and tendency to ruin mine shafts and infrastructure, they have been hunted almost to extinction, mainly by the Slavemasters. For the Tajaran, being able to kill a Samak singlehandedly (and without 'cheating', such as saturation bombing and the like) is an incredible feat, and any individual who pulls it off is lauded greatly."; + name = "Samak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rW" = ( +/mob/living/simple_mob/animal/passive/penguin{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"rX" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space bears are the result of reckless experimentation in the early days of interplanetary travel and colonization. Rogue scientists in the beginnings of what is now known as Space Russia got very drunk one night, more than usual, and decided to 'improve' on the terran bear. The result is faster, stronger, and smarter than the original species, but most importantly they are able to survive in the airless void of space without any special equipment. It is unknown if they were originally meant to be living weapons or simply made 'because we can', but the scientists responsible were never heard from again. Now, thanks to faster than light travel and lackluster effort in making sure nothing's riding along, Space Bears can be found living on asteroids and moons across the galaxy, wherever Humanity and friends may roam."; + name = "Space Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"rY" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"rZ" = ( +/mob/living/simple_mob/animal/passive/snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"sa" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien/drone{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sb" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sc" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/mob/living/simple_mob/vore/aggressive/mimic{ + faction = "zoo" + }, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"sd" = ( +/obj/structure/flora/ausbushes/fullgrass, +/mob/living/simple_mob/animal/passive/penguin{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"se" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/animal/space/bear{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sf" = ( +/obj/structure/flora/grass/both, +/mob/living/simple_mob/animal/passive/penguin{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"sg" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"sh" = ( +/mob/living/simple_mob/hostile/samak{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"si" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 9 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sj" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 1 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sk" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sl" = ( +/mob/living/simple_mob/animal/space/carp{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/space, +/area/awaymission/zoo) +"sm" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The common Green Snake is an invasive species that makes its home on tropical worlds across the galaxy. Its ancestors were once kept as pets by Humans, but these snakes had escaped into the ventilation of ships over many centuries to feed on the abundance of mice usually infesting the maintinence passages. It is believed that they are descended from the Ball Python, native to Earth, in the Sol system."; + name = "Green Snake Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sn" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"so" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien/drone{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sp" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Don't be fooled, this isn't a storage room, but in fact the hunting ground of a deadly ambush predator known as the Mimic. The origin of this species is largely unknown, but they are theorized to be a cousin of the even more elusive changeling species. However, unlike the changeling, the mimic is known for disguising its self as inanimate objects, rather than other animals. When a suitable prey disturbs the mimic, it attacks, and if possible, swallows its victim whole. Scientists do not know how the creature reproduces, as all efforts to study the organism, dead or alive, have revealed that specimens examined do not have reproductive organs at all! It is hypothesized that the mimic grows and uses reproductive organs during a later life cycle, not yet recorded by any known sentient species."; + name = "Mimic Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sq" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sr" = ( +/obj/effect/spider/cocoon{ + icon_state = "cocoon_large2" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"ss" = ( +/obj/effect/spider/stickyweb, +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"st" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Originating from the jungles of Earth, Parrots are a highly intelligent avian that have become an expensive commodity in space, prized for their colorful plumage, and their famous ability to mimic speech. Ship captains traditionally keep them as exotic pets, to demonstrate wealth, and to have someone to talk with. Some researchers believe some parrot species to be capable of intelligence up to that of a 5 year old Human in some aspects. Purebreds of exceptionally varied color pallets are especially prized among traders and space pirates."; + name = "Parrot Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"su" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Penguins are a group of aquatic, flightless birds living almost exclusively in the Southern Hemisphere of Earth, in the Sol system, especially in the continent of Antarctica. Highly adapted for life in the water, penguins have countershaded dark and white plumage, and their wings have evolved into flippers. Most penguins feed on krill, fish, squid and other forms of sealife caught while swimming underwater. They spend about half of their lives on land and half in the oceans. Due to the effects of global warming, penguins have been sent off-world to wildlife sanctuaries across the galaxy. Today, many such reserves harbor the last of this species, while penguins are now extinct on Earth."; + name = "Space Penguin Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sv" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 8 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sw" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sx" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space carp are a breed of space fish that come from the phoron giant Erebus. Scientists aren't quite sure how, but the Carp are imbued with the Phoron in their DNA, allowing for them to travel unaided through the vast void of Space, without gravity, air, or anything. They are very dangerous to space travelers, as they are highly aggressive and carnivorous. They often break windows and the like on space stations hoping to get in to eat the crew."; + name = "Space Carp Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"sy" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sz" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo"; + name = "invisible alien hunter" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sA" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/obj/effect/spider/cocoon{ + icon_state = "cocoon3" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sB" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb1" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sC" = ( +/obj/effect/spider/cocoon{ + icon_state = "cocoon2" + }, +/mob/living/simple_mob/animal/giant_spider/nurse{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sD" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb2" + }, +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sE" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/obj/effect/spider/cocoon{ + icon_state = "cocoon_large1" + }, +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sF" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/mob/living/simple_mob/animal/space/alien/queen{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sG" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"sH" = ( +/obj/effect/spider/cocoon{ + icon_state = "cocoon_large3" + }, +/mob/living/simple_mob/animal/giant_spider/hunter{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sI" = ( +/mob/living/simple_mob/animal/giant_spider{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sJ" = ( +/mob/living/simple_mob/animal/passive/bird/parrot/poly{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"sK" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sL" = ( +/mob/living/simple_mob/animal/space/bear{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sM" = ( +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo"; + name = "invisible alien hunter" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sN" = ( +/obj/effect/decal/remains, +/obj/effect/gibspawner/generic, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"sO" = ( +/obj/effect/spider/stickyweb, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sP" = ( +/mob/living/simple_mob/animal/passive/snake{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"sQ" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_e"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sR" = ( +/obj/effect/spider/stickyweb{ + icon_state = "stickyweb2" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sS" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sT" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 10 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sU" = ( +/obj/effect/floor_decal/spline/plain, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sV" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 6 + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"sW" = ( +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_w"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_s"; + name = "rocky edge" + }, +/obj/effect/floor_decal/spline{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroid_edge_n"; + name = "rocky edge" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"sX" = ( +/obj/effect/spider/stickyweb{ + icon_state = "cobweb1" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"sY" = ( +/obj/structure/flora/grass/green, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"sZ" = ( +/obj/structure/flora/grass/brown, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"ta" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/animal/space/alien{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"tb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Stoks are a small species of reptile native to Moghes, ranging from two, to three feet tall with colorful scales, and feathers adorning their head, they stand on two legs and have short arms, the legs being digitigrade. They keep to oasises due to their colors which provide camouflage and distance from predators such as duneworms. Keeping in packs so that when they are threatened, they will swarm an attacker and take it down by sheer flanking and numbers. They're an omnivorous species, keeping themselves fed on either predators, or oasis fruits. Despite being the evolutionary equivalent of how monkeys are to humans, Stok are often domesticated and kept as pets by Unathi on Moghes, serving to aid in hunting efforts when trained. Their role in Unathi society is more like that of dogs to humans."; + name = "Stok Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "During the latest part of a Diona's life cycle, the Diona casts its self into orbit around a star, so it may soak up solar radiation and grow to immense proportions, even as large as a space station. The yithian, exhibited here, can only be found within these great Diona, where it has a symbiotic relationship with its host. It consumes fungus and parasites that would normally compromise the Diona's health."; + name = "Yithian Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"td" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "A relative of the Tajaran, the Farwa is an intelligent pack animal widespread on Meralar, in the Rarkajar system. Usually with tan, orange and brown pelts, this animals is capable of using primitive tools. Its diet is primarly made up of vegetable matter and carrion, although they also hunt opportunistically. The species itself is very diverse, with Farwa in different biomes possessing minute variations in behaviour and genetic make-up."; + name = "Farwa Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"te" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "This Redspace creature was generously donated by a NanoTrasen science team headed by Dr. Kisuke Gema of the Virgo Orbital Research Establishment. Other than that, we honestly don't know anything about this monstrosity, other than the fact that it hungers for Human flesh."; + name = "Redspace Abomination Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tf" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tg" = ( +/obj/structure/flora/ausbushes/genericbush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"th" = ( +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"ti" = ( +/mob/living/simple_mob/animal/passive/yithian{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tj" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil/invisible, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tk" = ( +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tl" = ( +/obj/structure/cult/pylon, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tm" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tn" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/carbon/human/stok{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"to" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tp" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tq" = ( +/mob/living/carbon/human/farwa{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"tr" = ( +/obj/effect/gateway, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"ts" = ( +/mob/living/carbon/human/stok{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tt" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tu" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tv" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tw" = ( +/obj/structure/flora/ausbushes/ywflowers, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tx" = ( +/obj/structure/flora/ausbushes/sunnybush, +/mob/living/simple_mob/animal/passive/yithian{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"ty" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_2" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"tz" = ( +/obj/structure/flora/tree/pine{ + icon_state = "pine_3" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"tA" = ( +/mob/living/simple_mob/creature{ + faction = "zoo"; + name = "redspace abomination" + }, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tB" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tC" = ( +/obj/structure/flora/ausbushes/leafybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tD" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/cult, +/area/awaymission/zoo) +"tE" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tF" = ( +/obj/structure/flora/ausbushes/grassybush, +/turf/simulated/floor/holofloor/wood{ + icon = 'icons/turf/floors.dmi'; + icon_state = "diona" + }, +/area/awaymission/zoo) +"tG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Decades ago, a group of rogue Skrellian scientists began illegal experimentation on Unathi colonists participating in a nuclear meltdown cleanup effort. In an attempt to create genetically engineered super soldiers, the Deathclaw was born with deadly sharp razor-like claws, incredible agility, robust durability, and high intelligence. When the Skrellian scientists were arrested by the authorities, the Deathclaw was to be destroyed, but some managed to escape captivity into the nuclear wasteland. Normally solitary creatures, they have been known to hunt in packs, and seem to have a preference for Human and Unathi meat."; + name = "Deathclaw Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Space Goose (pural: geese) is an aquatic fowl originating from the planet Earth. This breed of Geese however was bred to the clime of space ships and stations as guard animals. They are extremely loud, highly aggressive, and territorial, while their talons and beaks are much longer and sharper than Earth geese. Their aggressive nature makes them difficult to train, but are highly effective when deployed."; + name = "Space Goose Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tI" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Grey Wolf, Scientific name Canis Lupus, is a species native to the Sol system and specifically the planet Earth. It is the largest extant member of its family, with males averaging 43�45 kg (95�99 lb), and females 36�38.5 kg (79�85 lb). Like the red wolf, it is distinguished from other Canis species by its larger size and less pointed features, particularly on the ears and muzzle. Its winter fur is long and bushy, and predominantly a mottled gray in color, although nearly pure white, red, or brown to black also occur. It is also know by the name Timber Wolf. The gray wolf is the second most specialised member of the genus Canis, as demonstrated by its morphological adaptations to hunting large prey, its more gregarious nature, and its highly advanced expressive behavior. It is nonetheless closely related enough to smaller Canis species, such as the Sol Coyote or Golden Jackal to produce fertile hybrids. It is the only species of Canis to have a range encompassing both the Old and New planets, due to being popular as a traveling companion, an easier to tame circus attraction compared to tigers, and its valuable use in ridding polar worlds of large predators. It was also spread through some worlds to deal with Cloud Fox infestations. While normally indifferent to foxes aside from hunting territories, the Grey Wolf has shown great hostility to a special strain of Fox mutation found on the planet Andorss called the Cloud Fox. Bafflingly, these creatures share nothing in common that should lead them to be enemies, as the Grey Wolf is a predator and lives in snowy areas, whereas the Cloud Fox is an herbivore, largely found in Corn rich areas. Scientists have yet to explain this, although several other animals have also been shown to show hostility towards Cloud Foxes, namely the Macromeleon and Carousel Panther, both of whom get along well with Grey Wolves."; + name = "Gray Wolf Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tJ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "While all the species of these large predators are commonly known as Dragons (Draconius Regalis), this is mainly an umbrella term for a number of varieties of these large, reptilian creatures. There are numerous varieties of dragons found throughout the galaxy, and recounts of these creatures can be traced back to Skrell civilization's first interplanetary travels speaking of a large, unknown creature attacking and devouring the closeby cargo ships. Mainly solitary creatures, the Dragons roam large areas of space, capable of adapting to a large variety of atmospheres thanks to each sub-species natural affinity to various elements. While in today's population there are a numerous subspecies, all of these can be traced back to what archaeologists claimed to be a 'phoron' Dragon, by the biological analysis of the fossils found on asteroids in the Virgo-Erigone system. The creatures displayed here were reconstituted from such fossils, generously donated by the Virgo Orbital Research Establishment."; + name = "Phoron Dragon Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tL" = ( +/obj/effect/floor_decal/asteroid, +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tM" = ( +/obj/effect/gibspawner/human, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"tN" = ( +/obj/machinery/portable_atmospherics/hydroponics/soil, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"tO" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/vore/aggressive/dino{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tP" = ( +/obj/effect/decal/cleanable/greenglow, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tQ" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Decades ago, a group of rogue Skrellian scientists began illegal experimentation on Unathi colonists participating in a nuclear meltdown cleanup effort. In an attempt to create genetically engineered super soldiers, the Deathclaw was born with deadly sharp razor-like claws, incredible agility, robust durability, and high intelligence. When the Skrellian scientists were arrested by the authorities, the Deathclaw was to be destroyed, but some managed to escape captivity into the nuclear wasteland. Normally solitary creatures, they have been known to hunt in packs, and seem to have a preference for Human and Unathi meat."; + name = "Deathclaw Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tR" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Space Goose (pural: geese) is an aquatic fowl originating from the planet Earth. This breed of Geese however was bred to the clime of space ships and stations as guard animals. They are extremely loud, highly aggressive, and territorial, while their talons and beaks are much longer and sharper than Earth geese. Their aggressive nature makes them difficult to train, but are highly effective when deployed."; + name = "Space Goose Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tS" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Grey Wolf, Scientific name Canis Lupus, is a species native to the Sol system and specifically the planet Earth. It is the largest extant member of its family, with males averaging 43�45 kg (95�99 lb), and females 36�38.5 kg (79�85 lb). Like the red wolf, it is distinguished from other Canis species by its larger size and less pointed features, particularly on the ears and muzzle. Its winter fur is long and bushy, and predominantly a mottled gray in color, although nearly pure white, red, or brown to black also occur. It is also know by the name Timber Wolf. The gray wolf is the second most specialised member of the genus Canis, as demonstrated by its morphological adaptations to hunting large prey, its more gregarious nature, and its highly advanced expressive behavior. It is nonetheless closely related enough to smaller Canis species, such as the Sol Coyote or Golden Jackal to produce fertile hybrids. It is the only species of Canis to have a range encompassing both the Old and New planets, due to being popular as a traveling companion, an easier to tame circus attraction compared to tigers, and its valuable use in ridding polar worlds of large predators. It was also spread through some worlds to deal with Cloud Fox infestations. While normally indifferent to foxes aside from hunting territories, the Grey Wolf has shown great hostility to a special strain of Fox mutation found on the planet Andorss called the Cloud Fox. Bafflingly, these creatures share nothing in common that should lead them to be enemies, as the Grey Wolf is a predator and lives in snowy areas, whereas the Cloud Fox is an herbivore, largely found in Corn rich areas. Scientists have yet to explain this, although several other animals have also been shown to show hostility towards Cloud Foxes, namely the Macromeleon and Carousel Panther, both of whom get along well with Grey Wolves."; + name = "Gray Wolf Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tT" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "While all the species of these large predators are commonly known as Dragons (Draconius Regalis), this is mainly an umbrella term for a number of varieties of these large, reptilian creatures. There are numerous varieties of dragons found throughout the galaxy, and recounts of these creatures can be traced back to Skrell civilization's first interplanetary travels speaking of a large, unknown creature attacking and devouring the closeby cargo ships. Mainly solitary creatures, the Dragons roam large areas of space, capable of adapting to a large variety of atmospheres thanks to each sub-species natural affinity to various elements. While in today's population there are a numerous subspecies, all of these can be traced back to what archaeologists claimed to be a 'phoron' Dragon, by the biological analysis of the fossils found on asteroids in the Virgo-Erigone system. The creatures displayed here were reconstituted from such fossils, generously donated by the Virgo Orbital Research Establishment."; + name = "Phoron Dragon Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"tU" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"tV" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/tiled/neutral, +/area/awaymission/zoo) +"tW" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tX" = ( +/mob/living/simple_mob/vore/aggressive/dragon{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert{ + icon = 'icons/turf/floors.dmi'; + icon_state = "asteroidplating"; + name = "scorched sand" + }, +/area/awaymission/zoo) +"tY" = ( +/mob/living/simple_mob/animal/passive/lizard{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"tZ" = ( +/mob/living/simple_mob/tomato{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"ua" = ( +/mob/living/simple_mob/fox{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"ub" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Voracious Lizard is a relatively new species, muted from the common space lizard by exposure to Phoron. These creatures are found commonly in and around facilities where phoron is mined, refined, or stored. They have been known to attack other creatures in groups, and are able to unhinge their jaws to swallow Human-sized prey whole. The species was first discovered in the Virgo-Erigone system, and have since become a dangerous pest."; + name = "Voracious Lizard Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uc" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/vore/aggressive/deathclaw{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"ud" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Common Space Lizard (Pordacis Stellae Vulgaris) is a common critter amongst space stations. Their origin traces back to genetically modified wall lizards to survive the hazardous conditions of space, this hardy animal is surprisingly tough and able to rapidly regenerate dead cells from radiation exposure and is virtually immune against cancerous growths. Its diet is varied, as it eats what it gets, from discarded junk food to mice and small spiders."; + name = "Lizard Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ue" = ( +/mob/living/simple_mob/animal/space/goose{ + faction = "zoo" + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"uf" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Originally a cult movie monster, a team of geneticists eventually turned the Animate Tomato from fiction to reality. While not harmful in any way, some people consider its grin to be disturbing. It reproduces in the same manner as plants, coming off of the vine when harvested or when it gets ripe enough, afterwards wandering about on its own."; + name = "Animate Tomato Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ug" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Foxes are small-to-medium-sized, omnivorous mammals belonging to several genera of the family Canidae. Foxes are slightly smaller than a medium-size domestic dog, with a flattened skull, upright triangular ears, a pointed, slightly upturned snout, and a long bushy tail (or brush). These foxes are Red Foxes, largest of the true foxes, has the greatest geographic range of all members of the Carnivora family, originally spanning across the entire Northern Hemisphere of Earth from the Arctic Circle to North Africa, North America and Eurasia, and has grown to be found on many forest and garden planets across the galaxy."; + name = "Fox Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "A mouse (plural: mice), native to Earth in the Sol system, is a small rodent characteristically having a pointed snout, small rounded ears, a body-length scaly tail and a high breeding rate. The best known mouse species is the common house mouse (Mus musculus). It is also a popular pet. In some places, certain kinds of field mice are locally common. They are known to invade homes and space ships for food and shelter. Cats, wild dogs, foxes, birds of prey, snakes and even certain kinds of arthropods have been known to prey heavily upon mice. Nevertheless, because of its remarkable adaptability to almost any environment, the mouse is one of the most successful mammalian genera living in the galaxy today."; + name = "Slime Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ui" = ( +/mob/living/simple_mob/vore/aggressive/deathclaw{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"uj" = ( +/mob/living/simple_mob/slime/feral/dark_blue{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"uk" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/mob/living/simple_mob/vore/aggressive/dino{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"ul" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/simple_mob/animal/passive/lizard{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"um" = ( +/obj/effect/landmark/away, +/mob/living/simple_mob/animal/space/goose{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"un" = ( +/mob/living/simple_mob/animal/wolf{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"uo" = ( +/mob/living/simple_mob/animal/space/goose{ + faction = "zoo" + }, +/turf/simulated/floor/wood, +/area/awaymission/zoo) +"up" = ( +/obj/structure/symbol/sa, +/turf/simulated/wall, +/area/awaymission/zoo) +"uq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Saru (also incorrectly known as Sergalings) are the smaller, unevolved, far more docile cousins of the Sergals, and are usually thought of as either pests, food, or pets. They are a commodity that the Sergal use in their trades with other species due to their cute appearance and quick breeding. Contrary to popular belief, they are not sergal pups, despite their similar appearance. Note the distinctly stubbier noses, compared to true sergal pups. Unfortunately, the mistake has been made more than once, even by other sergals, wherein actual young sergals have been mistakenly sold to traders with tragic consequences... for the traders. The Saru are, like the Sergals, native to the planet Eltus, in the Vilous system. However, they are also found on the planet Tal in the same system."; + name = "Saru Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ur" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The brown bear (Ursus arctos) is a large bear with the widest distribution of any living ursid. The species is distributed across much of northern Eurasia and North America, on planet Earth. It is one of the two largest terrestrial carnivorans alive today, rivaled in body size only by its close cousin, the polar bear (Ursus maritimus), which is much less variable in size and averages larger due to this. There are several recognized subspecies, many of which are quite well-known within their native ranges, found in the brown bear species."; + name = "Brown Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"us" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Tamaskan dogs are a crossbreed, specifically designed by dog fanciers on Earth, to morphologically resemble a wolfdog. It is a cross of several standardized breeds of the sled dog type, and its bloodlines may sometimes include a small amount of wolfdog stock. It is a highly versatile dog that can excel in agility, obedience and working trials. These traits have made the Tamaskan a popular animal among Human colonists on icy worlds."; + name = "Tamaskan Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"ut" = ( +/obj/structure/largecrate/animal/cow, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"uu" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"uv" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"uw" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"ux" = ( +/obj/structure/sink/puddle, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"uy" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"uz" = ( +/obj/effect/floor_decal/asteroid, +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"uA" = ( +/mob/living/simple_mob/animal/space/bear/brown{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"uB" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass1" + }, +/area/awaymission/zoo) +"uC" = ( +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass4" + }, +/area/awaymission/zoo) +"uD" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"uE" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"uF" = ( +/mob/living/simple_mob/animal/passive/dog/tamaskan{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"uG" = ( +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uH" = ( +/obj/item/stack/tile/grass, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"uI" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass0" + }, +/area/awaymission/zoo) +"uJ" = ( +/obj/machinery/door/airlock/glass{ + icon_state = "door_locked"; + locked = 1; + name = "Exhibit Airlock" + }, +/obj/item/tape/engineering{ + icon_state = "engineering_door_0" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uK" = ( +/obj/effect/floor_decal/asteroid, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass3" + }, +/area/awaymission/zoo) +"uL" = ( +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"uM" = ( +/mob/living/carbon/human/sergallingm{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"uN" = ( +/obj/structure/flora/ausbushes/genericbush, +/mob/living/simple_mob/animal/space/bear/brown{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass, +/area/awaymission/zoo) +"uO" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The Sol-system native Panther, found primarily on the Sol-system planet Earth, is a large mammal belonging to the Felidae family. Found in a variety of environment, like most big cats the Panther inhabits a large number of habitats and is a carnivorous, nocturnal predator. Of particular note are the various patterns of their fur - the most known one, especially thanks to Sol popular culture (books, sequential art and movies) is the black panther, a species that displays a fur pattern completely black at a first glance, but other species can display a much wider variety of patterns, another one of the most common being a beige color with large, black spots. These patterns were mainly evolved as a mean to conceal itself in the surrounding environment, to ambush an unsuspecting prey."; + name = "Panther Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Shantak are a pack-hunting carnivore native to Meralar. Using loud barks and growls, similar to that of wolves, the shantak is able to communicate verbally with its hunting partners in order to coordinate attacks. The largest female of the group is usually in charge, and is considered to be the alpha of the pack."; + name = "Shantak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "Space Pike are a larger, more territorial cousin of the famous Space Carp whose origins can also be traced to the Erebus system. Like the Space Carp, their DNA is infused with Phoron. However, the Space Pike were hunted nearly to extinction for their vibrant purple scales. They were declared a critically endangered species in 2556, but that status has been lifted recently due to a substantial bounce back in numbers. They are now only considered a vulnerable species. Space Pike feed on space slugs, space worms, sometimes space carp, and the occasional space man. The space bear is considered its mortal enemy."; + name = "Space Pike Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uR" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uS" = ( +/obj/structure/flora/ausbushes/fernybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"uT" = ( +/obj/effect/overlay/palmtree_r, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"uU" = ( +/obj/effect/overlay/palmtree_l, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"uV" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "The Sol-system native Panther, found primarily on the Sol-system planet Earth, is a large mammal belonging to the Felidae family. Found in a variety of environment, like most big cats the Panther inhabits a large number of habitats and is a carnivorous, nocturnal predator. Of particular note are the various patterns of their fur - the most known one, especially thanks to Sol popular culture (books, sequential art and movies) is the black panther, a species that displays a fur pattern completely black at a first glance, but other species can display a much wider variety of patterns, another one of the most common being a beige color with large, black spots. These patterns were mainly evolved as a mean to conceal itself in the surrounding environment, to ambush an unsuspecting prey."; + name = "Panther Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uW" = ( +/turf/simulated/floor/holofloor/beach/water{ + icon_state = "beach"; + dir = 8 + }, +/area/awaymission/zoo) +"uX" = ( +/obj/effect/overlay/palmtree_l, +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"uY" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Shantak are a pack-hunting carnivore native to Meralar. Using loud barks and growls, similar to that of wolves, the shantak is able to communicate verbally with its hunting partners in order to coordinate attacks. The largest female of the group is usually in charge, and is considered to be the alpha of the pack."; + name = "Shantak Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"uZ" = ( +/mob/living/simple_mob/animal/space/carp/large{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"va" = ( +/obj/structure/flora/ausbushes/fernybush, +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"vb" = ( +/obj/effect/overlay/coconut, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"vc" = ( +/obj/structure/flora/ausbushes/sunnybush, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"vd" = ( +/mob/living/simple_mob/animal/passive/crab{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand, +/area/awaymission/zoo) +"ve" = ( +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass3" + }, +/area/awaymission/zoo) +"vf" = ( +/mob/living/simple_mob/vore/aggressive/panther{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/grass{ + icon = 'icons/jungle.dmi'; + icon_state = "grass2" + }, +/area/awaymission/zoo) +"vg" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "A species incredibly similar to Humans. The monkey is a resident of Earth, the home planet of Humanity, and shares many traits with Humans, such as opposable thumbs, and a love of flinging fecal matter at each other. Monkeys are valued for their dancing ability, and thanks to the recent boom of monkey dance classes, the dancing monkey industry is growing. Monkeys are also commonly used in scientific research that requires testing on products meant to be used by Humans. In fact, some of the first creatures to leave Earth's atmosphere in the infancy of Humanity's space age were dogs and monkeys!"; + name = "Monkey Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vh" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Crabs are decapod crustaceans of the infraorder Brachyura, which live in all the oceans on the planet Earth, in some fresh water, and even a few species which thrive on land. They are generally covered with a thick exoskeleton and have a single pair of claws. They are often kept as pets or eaten for food by Humans. Many other animals with similar names, such as king crabs, hermit crabs, porcelain crabs, horseshoe crabs, and crab lice, are not true crabs."; + name = "Crab Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vi" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/holofloor/desert, +/area/awaymission/zoo) +"vj" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "This is not an empty exhibit. Note the pine tree in the center of the pen. This is the infamous Killer Pine Tree. Thought to be a relative of the mimic, the Killer Tree is, much like its cousins, an ambush predator. However, like the mimic, it is not known where this species is from, how it reproduces, or how it has found its way across the galaxy into new biomes."; + name = "Killer Tree Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/structure/grille, +/obj/structure/sign/kiddieplaque{ + desc = "Space Pike are a larger, more territorial cousin of the famous Space Carp whose origins can also be traced to the Erebus system. Like the Space Carp, their DNA is infused with Phoron. However, the Space Pike were hunted nearly to extinction for their vibrant purple scales. They were declared a critically endangered species in 2556, but that status has been lifted recently due to a substantial bounce back in numbers. They are now only considered a vulnerable species. Space Pike feed on space slugs, space worms, sometimes space carp, and the occasional space man. The space bear is considered its mortal enemy."; + name = "Space Pike Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vl" = ( +/mob/living/simple_mob/animal/passive/crab{ + faction = "zoo"; + icon_dead = "evilcrab_dead"; + icon_living = "evilcrab"; + icon_state = "evilcrab" + }, +/turf/simulated/floor/holofloor/beach/water, +/area/awaymission/zoo) +"vm" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vn" = ( +/mob/living/simple_mob/hostile/shantak{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vo" = ( +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass2" + }, +/area/awaymission/zoo) +"vp" = ( +/mob/living/simple_mob/hostile/shantak{ + color = ""; + faction = "zoo"; + health = 100; + maxHealth = 100; + name = "alpha shantak" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vq" = ( +/mob/living/simple_mob/animal/space/tree{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vr" = ( +/obj/structure/flora/bush, +/mob/living/simple_mob/hostile/shantak{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/snow, +/area/awaymission/zoo) +"vs" = ( +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "dgrass0" + }, +/area/awaymission/zoo) +"vt" = ( +/obj/structure/flora/ausbushes/lavendergrass, +/mob/living/carbon/human/monkey{ + faction = "zoo" + }, +/turf/simulated/floor/holofloor/beach/sand{ + icon_state = "fullgrass1" + }, +/area/awaymission/zoo) +"vu" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vv" = ( +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/obj/item/stack/tile/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vw" = ( +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vx" = ( +/obj/fiftyspawner/grass, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vy" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/sign/kiddieplaque{ + desc = "The polar bear (Ursus maritimus) is a carnivorous bear whose native range once lay largely within the Arctic Circle on Earth, encompassing the Arctic Ocean, its surrounding seas, and surrounding land masses. Although it is the sister species of the brown bear, it has evolved to occupy a narrower ecological niche, with many body characteristics adapted for cold temperatures, for moving across snow, ice, and open water, and for hunting seals, which made up most of its original diet. Although most polar bears are born on land, they spent most of their time on the sea ice. Their scientific name means 'maritime bear', and derives from this fact. Polar bears hunted their preferred food of seals from the edge of sea ice, often living off fat reserves when no sea ice is present. Because of their dependence on the sea ice, polar bears are classified as marine mammals. However, because of habitat loss caused by climate change, the polar bear had gone completely extinct on Earth. The return of the polar bear is thanks to the preservation of genetic records written in the 21st century, which were later used by Space Russians to create a wildlife reserve on the planet Europa in 2492. This has generally been regarded as a poor decision."; + name = "Polar Bear Exhibit" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vz" = ( +/mob/living/simple_mob/animal/space/bear/polar{ + faction = "zoo" + }, +/turf/simulated/floor/beach/water, +/area/awaymission/zoo) +"vA" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/grass, +/area/awaymission/zoo) +"vB" = ( +/obj/effect/blocker, +/turf/simulated/wall/r_wall, +/area/awaymission/zoo) +"vC" = ( +/obj/effect/blocker, +/obj/structure/sign/securearea, +/turf/simulated/wall/r_wall, +/area/awaymission/zoo) +"vD" = ( +/obj/structure/grille{ + name = "mass ventilation" + }, +/obj/effect/blocker, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vE" = ( +/turf/simulated/wall/r_wall, +/area/awaymission/zoo) +"vF" = ( +/obj/structure/grille{ + name = "mass ventilation" + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"vG" = ( +/turf/simulated/wall/durasteel, +/area/awaymission/zoo) +"vH" = ( +/obj/structure/sign/redcross, +/turf/simulated/wall/durasteel, +/area/awaymission/zoo) +"vI" = ( +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vJ" = ( +/obj/structure/bed/chair, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vK" = ( +/obj/structure/table/glass, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vL" = ( +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/bodybag/cryobag{ + pixel_x = 5 + }, +/obj/item/weapon/storage/firstaid/o2{ + layer = 2.8; + pixel_x = 4; + pixel_y = 6 + }, +/obj/item/weapon/storage/box/masks{ + pixel_x = 0; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/gloves{ + pixel_x = 3; + pixel_y = 4 + }, +/obj/item/weapon/storage/firstaid/toxin, +/obj/item/weapon/storage/firstaid/fire{ + layer = 2.9; + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = -2 + }, +/obj/item/weapon/reagent_containers/blood/empty, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/item/weapon/reagent_containers/blood/OMinus, +/obj/structure/closet/medical_wall{ + pixel_y = 32 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vM" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vN" = ( +/obj/machinery/sleep_console{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vO" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vP" = ( +/obj/machinery/body_scanconsole, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vQ" = ( +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vR" = ( +/obj/machinery/optable, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vS" = ( +/obj/structure/table/standard, +/obj/item/clothing/gloves/sterile, +/obj/item/clothing/mask/surgical, +/obj/item/weapon/surgical/retractor{ + pixel_x = 0; + pixel_y = 6 + }, +/obj/item/weapon/surgical/scalpel, +/obj/item/weapon/surgical/surgicaldrill, +/obj/item/weapon/surgical/circular_saw, +/obj/item/stack/nanopaste, +/obj/item/weapon/surgical/hemostat{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/cautery{ + pixel_y = 4 + }, +/obj/item/weapon/surgical/FixOVein{ + pixel_x = -6; + pixel_y = 1 + }, +/obj/item/stack/medical/advanced/bruise_pack, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel{ + pixel_x = 4; + pixel_y = 3 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vT" = ( +/obj/machinery/iv_drip, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"vU" = ( +/obj/structure/table/standard, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vV" = ( +/obj/machinery/computer, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vW" = ( +/obj/structure/closet, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vX" = ( +/obj/structure/closet, +/obj/item/clothing/under/captain_fly, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vY" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper/zoo/pirate/haveyouseen, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"vZ" = ( +/obj/machinery/shield_gen/external, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wa" = ( +/obj/machinery/shield_gen/external, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wb" = ( +/obj/machinery/shield_gen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wc" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wd" = ( +/obj/machinery/shieldgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"we" = ( +/obj/machinery/shieldgen, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wf" = ( +/obj/machinery/autolathe, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wg" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wh" = ( +/obj/machinery/power/smes/magical{ + desc = "A high-capacity superconducting magnetic energy storage (SMES) unit."; + name = "power storage unit" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wi" = ( +/obj/structure/symbol/lo{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wj" = ( +/obj/machinery/door/window/brigdoor/southleft, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wk" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/machinery/door/window/brigdoor/southright, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wl" = ( +/obj/structure/closet/secure_closet/security, +/obj/random/handgun, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wm" = ( +/obj/machinery/door/window/brigdoor/southright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wn" = ( +/obj/structure/table/rack, +/obj/random/action_figure, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wo" = ( +/obj/structure/table/rack, +/obj/random/plushie, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wp" = ( +/obj/structure/table/rack, +/obj/random/contraband, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wq" = ( +/obj/machinery/door/airlock/glass_medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wr" = ( +/turf/simulated/floor/tiled/red, +/area/awaymission/zoo) +"ws" = ( +/obj/machinery/door/airlock/medical, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wt" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EMPLOYEES ONLY'."; + name = "EMPLOYEES ONLY"; + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wu" = ( +/obj/structure/symbol/gu{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wv" = ( +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"ww" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper/zoo/pirate/warning, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wx" = ( +/obj/structure/sign/electricshock, +/turf/simulated/wall/durasteel, +/area/awaymission/zoo) +"wy" = ( +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wz" = ( +/obj/machinery/shield_capacitor, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wA" = ( +/obj/structure/symbol/pr{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wB" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/door/window/brigdoor/northleft{ + name = "lost and found" + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wC" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/red, +/area/awaymission/zoo) +"wD" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wE" = ( +/obj/machinery/door/airlock/command, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wF" = ( +/obj/effect/landmark/away, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wG" = ( +/obj/structure/grille{ + name = "mass ventilation" + }, +/turf/unsimulated/wall/planetary/normal, +/area/awaymission/zoo) +"wH" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wI" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wJ" = ( +/obj/machinery/door/airlock/maintenance, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wK" = ( +/obj/machinery/door/airlock/security{ + icon_state = "door_locked"; + locked = 1; + name = "Security"; + req_one_access = list(1) + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wL" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'EMPLOYEES ONLY'."; + name = "EMPLOYEES ONLY"; + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wM" = ( +/obj/structure/symbol/gu{ + pixel_x = -32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wP" = ( +/obj/machinery/power/port_gen/pacman{ + anchored = 1 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wQ" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/clothing/under/rank/engineer/skirt, +/obj/structure/closet/crate/mimic/guaranteed, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wR" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"wS" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wT" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/landmark/loot_spawn, +/obj/structure/symbol/da{ + pixel_x = -32 + }, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"wU" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/awaymission/zoo) +"wV" = ( +/obj/structure/coatrack, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wW" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wX" = ( +/obj/structure/filingcabinet/filingcabinet, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo, +/obj/item/weapon/paper/zoo/pirate/nebula, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"wY" = ( +/obj/structure/symbol/da{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/awaymission/zoo) +"wZ" = ( +/obj/machinery/floodlight, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"xa" = ( +/obj/machinery/power/emitter, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor, +/area/awaymission/zoo) +"xb" = ( +/obj/structure/closet/crate, +/obj/item/stack/material/phoron{ + amount = 25 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/plating, +/area/awaymission/zoo) +"xc" = ( +/obj/structure/closet/crate/solar, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/weapon/cell/crap, +/obj/item/weapon/cell/crap, +/obj/item/weapon/cell/crap, +/turf/simulated/floor, +/area/awaymission/zoo) +"xd" = ( +/obj/machinery/vending/tool, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xe" = ( +/obj/machinery/vending/engivend, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xf" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/ammo_all, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xg" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/ammo_all, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xh" = ( +/obj/machinery/door/window/brigdoor/northleft, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xi" = ( +/obj/machinery/door/window/brigdoor/northright, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 2; + health = 1e+006 + }, +/obj/structure/table/rack, +/obj/random/weapon, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xj" = ( +/obj/effect/landmark/loot_spawn{ + live_cargo = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/awaymission/zoo) +"xk" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xl" = ( +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/solar/fake, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/awaymission/zoo/solars) +"xm" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xr" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xt" = ( +/obj/structure/cable, +/obj/machinery/power/solar/fake, +/turf/simulated/floor/airless{ + icon_state = "solarpanel" + }, +/area/awaymission/zoo/solars) +"xu" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xv" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) +"xw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/turf/simulated/floor/airless, +/area/awaymission/zoo/solars) + +(1,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(2,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(3,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(4,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(5,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(6,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(7,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(8,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ad +ad +dv +dv +dv +dv +ad +ad +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(9,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bp +dw +dU +dU +dw +bp +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(10,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bp +bp +bp +dV +dV +bp +bp +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +jk +jl +jA +hq +hq +hq +hq +hq +hq +hq +jk +jl +jA +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(11,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bp +bp +bp +bp +bp +bp +bp +bp +ad +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(12,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ad +ae +aj +am +ad +ad +bp +bp +cI +dh +dw +bp +bp +bp +bp +ao +al +al +ad +ad +ae +aj +am +ad +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(13,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ad +aJ +aU +aU +ad +bp +bp +bp +cJ +di +bp +bp +bp +bp +bp +ao +al +al +fJ +ad +af +ag +af +ad +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(14,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +aa +ad +aK +aV +aU +bh +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ad +al +fz +fJ +ad +gb +ag +ag +ad +aa +aa +hh +ho +hD +hD +hq +hq +hq +hq +hD +hD +ho +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jm +ka +jP +jp +jm +ka +jP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ab +aa +aa +aa +aa +aa +aa +aa +"} +(15,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +bp +bp +bp +cK +bp +bp +bp +bp +bp +bp +ad +al +al +al +ad +ad +ak +ad +ad +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jB +jC +kb +jE +jp +jH +kb +mg +jF +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(16,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aw +aC +al +ao +bp +bp +bp +bp +bp +bp +bp +bp +bp +bp +ad +al +al +al +ao +al +aC +gE +ad +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jm +jC +jN +kc +jp +jp +jp +kc +jo +mg +jP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +oS +oi +gP +no +oS +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sm +oi +gP +no +sm +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ub +oi +gP +no +ub +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vg +oi +gP +no +vg +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(17,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aL +al +ba +ad +ad +ad +ad +ad +ad +dx +ad +ad +dx +ad +ad +ad +ad +ad +ad +aB +al +gF +ad +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +jc +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +np +nM +np +np +np +oT +np +np +np +oT +np +np +pV +pV +qp +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +nT +mG +mI +oH +mG +nC +pq +ol +pC +ok +mI +mZ +ny +mG +ow +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rY +tO +rY +tm +rY +mD +mD +rY +rY +uk +rY +rY +rY +rY +rY +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +jI +jI +na +mI +jI +mR +mI +na +mI +nX +jI +jI +nd +qa +ne +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(18,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aB +al +ba +ad +bq +br +br +br +dj +br +br +br +br +dj +br +br +br +br +ad +aB +al +al +aW +gQ +hc +gQ +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jo +jE +jp +ke +jp +jp +jp +ke +jp +jH +jN +hq +hq +hq +hq +kU +nq +nN +np +ov +oE +oT +np +np +oE +oT +np +pO +pW +qh +np +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +na +na +rZ +mI +mG +pi +mG +mS +ol +mI +oH +ol +ol +ob +mI +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rY +tK +mD +mD +rY +rY +rY +uk +rY +mD +rY +tm +rY +tL +tK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +ns +ns +oy +va +oZ +mH +mI +na +oW +nz +jI +jI +nd +ns +nZ +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(19,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aL +al +bb +ad +br +bN +br +br +br +br +br +br +ez +br +br +br +br +fK +ad +gc +al +gF +aN +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jp +jp +jp +jp +jp +lk +jp +jp +jp +jp +jp +hq +hq +hq +hq +mX +np +nO +np +np +np +oT +np +np +np +oT +np +pP +pX +qi +np +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +jI +nb +nT +ns +ns +ns +pr +mI +ol +ol +pS +ns +pD +nd +mI +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mD +rY +rY +tO +rY +mD +rY +rY +mD +rY +mD +mD +mD +rY +mD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mH +op +na +ok +ol +oG +mI +vo +mG +vs +jI +nb +pR +nf +ne +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(20,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aB +al +ba +ad +bs +bs +bs +cL +br +dl +dl +dl +dl +dl +dl +dl +br +br +ad +aB +al +al +aW +gQ +hc +gQ +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jm +jF +jp +kc +jp +jp +jp +kc +jp +jB +jP +hq +hq +hq +hq +kU +np +np +np +np +np +np +np +np +np +np +np +pQ +pY +qj +np +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +jI +jI +na +na +oW +mI +ps +mG +om +sP +ns +oW +ol +oG +nx +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +rY +rY +tK +rY +rY +mD +mD +mD +tt +rY +rY +rY +tK +rY +rY +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +nd +nd +nQ +ol +ve +mI +mS +na +nz +jI +jI +mI +vt +qb +ne +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(21,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aL +al +ba +ad +bt +bO +bO +cM +br +dl +dW +dW +eA +dW +al +dl +br +br +ad +aB +al +gF +bd +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +np +np +np +np +np +np +np +np +np +np +np +np +pZ +pZ +pZ +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +nU +jI +mI +oI +na +nB +ns +ns +ns +ns +ns +ns +ql +pw +nR +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +rY +tP +rY +mD +mD +rY +tK +rY +rY +mD +tE +rY +rY +rY +rY +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +mG +mH +mG +mG +ny +pl +nB +nd +nc +ng +pT +ny +nR +qq +mG +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(22,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aM +al +bc +ad +bu +bO +cj +cM +br +dl +dX +dW +dW +al +eE +dl +br +br +ad +aM +gn +bc +ad +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jo +jG +jP +ke +jp +jp +jp +ke +jm +mh +jN +hq +hq +hq +hq +gP +no +nL +oi +gP +oF +oS +oi +gP +no +oS +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sm +oi +gP +no +sm +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ub +oi +gP +no +ub +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vg +oi +gP +no +vg +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(23,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +aN +aW +bd +ad +bv +bO +bO +cN +br +dl +dY +al +eB +eg +al +dl +br +br +ad +ad +ad +ad +ad +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jH +jG +ka +jF +jp +jB +ka +mh +jE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(24,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +bt +bP +bO +cM +br +dl +dZ +dZ +eC +dZ +dZ +dl +br +br +ad +aa +aa +aa +aa +aa +aa +hj +ho +hE +hE +hq +hq +hq +hq +hE +hE +ho +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jo +kb +jN +jp +jo +kb +jN +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(25,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +bw +bw +bw +cO +br +dy +al +al +al +eP +al +dy +br +br +ad +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(26,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +br +br +br +br +br +br +br +br +br +br +br +ft +br +br +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nP +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nP +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rR +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tQ +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tQ +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +uV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uV +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(27,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +br +br +br +br +br +br +ea +br +br +br +br +br +br +fL +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +nm +nm +nm +nm +oe +nm +nm +nm +nm +nm +nm +nm +nm +nm +oC +nm +oq +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(28,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ck +ad +ad +br +br +br +br +ad +ad +ck +ad +ad +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +rx +rx +ry +rN +ry +ry +ry +ry +rx +ry +ry +rx +rx +rx +rx +rD +rx +rx +rx +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mD +mD +mD +mD +tE +mD +tm +mD +mD +mD +mD +mD +mD +tm +mD +mD +mD +mD +mD +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +nm +os +nE +nm +nm +nm +oq +nm +nm +nm +nm +nm +pp +nm +nm +nm +nm +nm +nm +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(29,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +al +ad +bx +bQ +cl +br +br +br +br +br +br +br +br +br +br +br +ad +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rx +rD +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rM +ry +ry +ry +rS +rx +ry +ry +ry +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +rY +tK +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +nm +nm +nm +nm +oq +nm +nm +oq +nm +nF +oC +nm +uT +pp +nm +uS +nm +nm +oe +nm +nm +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +wq +vH +wq +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(30,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +al +al +ad +by +bQ +cl +br +br +br +br +br +br +br +br +br +br +fK +ad +al +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +jM +jM +jM +jM +jM +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +nr +nr +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +hc +re +hc +rs +jQ +hq +hq +hq +jQ +ry +rB +rz +rz +rF +rA +rA +rE +rz +rz +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rz +jQ +hq +hq +hq +jQ +mD +mD +rY +mD +mD +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +rY +mD +mD +tt +rY +rY +rY +rY +rY +rY +rY +rY +rY +mD +mD +mD +jQ +hq +hq +hq +jQ +ns +ns +ns +pR +jI +jQ +hq +hq +hq +jQ +nm +nm +nm +nm +nm +nm +nm +nm +nm +uS +nm +oq +nm +nm +oq +nm +nm +nF +nm +nm +nm +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +vJ +jM +jM +jM +wU +jQ +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(31,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ad +ad +al +al +al +ad +bz +bQ +cm +br +br +br +br +br +br +br +br +br +br +br +ad +al +al +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +nr +nr +nr +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jR +hq +hq +hq +jR +qH +hc +re +hc +rs +jR +hq +hq +hq +jR +rz +rz +rz +rK +ry +ry +rD +rx +rA +sz +rA +sn +sQ +rz +rz +rz +rz +rz +rz +rF +rA +jR +hq +hq +hq +jR +rY +mD +rY +rY +rY +jR +hq +hq +hq +jR +mD +mD +mD +rY +mD +rY +rY +rY +rY +rY +rY +mD +rY +tm +rY +rY +tK +rY +rY +mD +mD +jR +hq +hq +hq +jR +om +ol +ns +jI +jI +jR +hq +hq +hq +jR +nm +oD +uS +oe +nm +uT +oq +nm +nm +nm +uS +nm +nm +nm +os +nm +vc +nm +nm +nm +nm +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +vJ +jM +jM +jM +wU +jR +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(32,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ad +al +al +al +al +ad +bA +bA +cn +br +dk +dz +eb +br +br +dk +fc +fu +br +br +ad +al +al +al +al +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +jM +jM +jM +kg +kg +jS +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +qO +re +rk +rs +jS +hq +hq +hq +jS +rz +rz +rz +rz +rz +rz +rM +rx +rD +rx +sb +rz +rz +rz +rF +rA +rA +rA +rA +rx +rx +jS +hq +hq +hq +jS +rY +mD +mD +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +tL +mD +mD +mD +mD +mD +rY +mD +mD +mD +mD +mD +rY +rY +rY +mD +mD +mD +jS +hq +hq +hq +jS +uu +uB +uw +uw +uw +jS +hq +hq +hq +jS +nm +nm +nm +uU +nm +nm +nm +nm +uU +nm +os +nm +oC +nm +nm +uU +nm +nF +nm +pp +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +vJ +jM +jM +jM +wU +jS +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(33,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ap +al +al +al +be +ad +br +br +br +br +dl +dA +dl +br +br +dl +fd +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +hc +re +qQ +rs +gP +hq +hq +hq +gP +rA +rA +rI +rA +rE +rz +rz +rG +rx +ry +rB +rz +rF +rA +rx +rx +rx +rD +rx +rx +rx +gP +hq +hq +hq +gP +rY +mD +mD +mD +mD +gP +hq +hq +hq +gP +mD +tK +mD +rY +mD +mD +mD +mD +rY +rY +rY +rY +rY +rY +mD +rY +tL +rY +mD +mD +mD +gP +hq +hq +hq +gP +ns +uu +pR +uw +uB +gP +hq +hq +hq +gP +nm +nm +nm +nm +pp +nm +nm +os +nm +oD +nm +nm +nm +nm +nm +nm +oD +os +uS +oC +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vH +vJ +jM +jM +jM +wU +vH +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(34,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +al +al +al +al +al +bi +br +br +br +br +dl +dz +dl +br +br +dl +fe +dl +br +fK +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +lD +jM +mj +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +qP +re +hc +rs +jQ +hq +hq +hq +jQ +rx +rx +rx +rx +rx +sa +rz +rM +rB +rz +rz +rz +rG +rx +sM +rx +rx +rx +rx +ry +ry +jQ +hq +hq +hq +jQ +mD +tm +mD +tn +rY +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +tm +mD +rY +rY +rY +mD +mD +rY +tE +rY +rY +rY +rY +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +ns +ns +ol +jI +uw +jQ +hq +hq +hq +jQ +nm +nm +uT +nm +nm +nF +nm +uS +nm +uS +oe +uU +pp +nm +nm +nF +nm +vc +nm +uU +nm +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +jM +jM +wr +jM +jM +jQ +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(35,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +aq +al +al +al +al +bi +br +br +br +br +dl +dz +dl +br +br +dl +fe +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mt +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mt +hq +hq +hq +qA +qH +qQ +re +qR +rs +qA +hq +hq +hq +rt +rx +rx +rx +rL +rx +sb +rz +rz +rz +rz +rF +rA +rx +rx +rx +rx +rx +rx +rB +rz +rz +rt +hq +hq +hq +tb +mD +rY +rY +rY +rY +tb +hq +hq +hq +tG +mD +mD +mD +mD +rY +rY +rY +rY +uc +rY +rY +rY +mD +mD +rY +rY +rY +rY +mD +mD +mD +tG +hq +hq +hq +uq +uv +uu +uu +pq +uw +uq +hq +hq +hq +uO +nm +nm +oq +nm +uU +oC +nm +nm +nm +nm +nm +vf +oq +vc +nm +os +nE +nm +nm +uU +nm +uO +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +jM +wr +wC +wr +jM +jR +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(36,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ar +al +al +al +al +bi +br +br +br +br +dl +dz +dl +en +br +dl +fe +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +lD +jM +mj +hq +hq +hq +jS +mD +mD +mD +nr +nr +nr +nr +nr +nr +oU +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +hc +re +qR +rs +jS +hq +hq +hq +jS +rx +rx +rD +rx +rx +rx +rA +rA +rA +rA +rx +rx +rD +rx +rS +rx +rx +rB +rz +rz +rF +jS +hq +hq +hq +jS +mD +tn +rY +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +mD +rY +rY +mD +mD +mD +rY +rY +rY +rY +rY +rY +rY +mD +mD +tm +mD +mD +jS +hq +hq +hq +jS +ns +uC +uE +uB +ol +jS +hq +hq +hq +jS +nm +nm +nm +nm +oq +nm +uT +uU +nm +uT +oD +nm +nm +nm +nm +nm +nm +uS +nm +nm +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +jM +jM +wr +jM +jM +jS +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(37,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +as +al +ap +al +bf +ad +bB +bR +br +br +dl +dz +dl +br +br +dl +fe +dl +br +br +ad +al +al +al +al +al +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kg +jM +jM +kg +jM +mj +hq +hq +hq +gP +mD +mD +mD +nr +nr +nr +nr +nr +oU +oU +oU +nr +nr +nr +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +qR +re +rl +rs +gP +hq +hq +hq +gP +ry +ry +ry +rx +rx +rx +rx +rx +ry +ry +sF +ry +ry +ry +rx +rx +rB +rz +rz +rF +rx +gP +hq +hq +hq +gP +mD +rY +rY +rY +rY +gP +hq +hq +hq +gP +mD +mD +tK +mD +rY +rY +rY +rY +rY +rY +mD +rY +mD +rY +rY +mD +rY +mD +mD +mD +mD +gP +hq +hq +hq +gP +uu +ns +uu +uK +uB +gP +hq +hq +hq +gP +nm +nm +uS +nm +nF +nm +vb +nm +nm +nm +nm +uU +uT +nm +nm +vb +os +nm +nm +uT +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vK +vK +vK +vK +jM +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(38,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +at +al +al +al +bg +ad +bC +bR +br +br +dl +dB +dl +br +br +dl +dB +dl +br +br +ad +al +al +al +al +gR +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +oU +oU +oU +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jQ +qH +qS +re +rm +rs +jQ +hq +hq +hq +jQ +rz +rz +rz +rM +ry +ry +rN +rB +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rF +rx +rx +kU +hq +hq +hq +jQ +rY +rY +ts +mD +rY +jQ +hq +hq +hq +jQ +mD +mD +mD +rY +rY +mD +mD +rY +rY +mD +mD +rY +mD +mD +mD +mD +rY +rY +tE +mD +mD +kU +hq +hq +hq +jQ +uw +uB +uD +uw +jI +jQ +hq +hq +hq +jQ +nm +nm +nm +nm +nm +nE +uU +vc +nm +nm +nm +nm +nm +uS +os +uT +nm +nm +uU +uS +nm +kU +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vL +jM +wD +vK +jM +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(39,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +al +al +aO +al +al +ad +bD +br +co +br +dl +dC +dl +br +br +dl +dC +dl +br +fK +ad +gd +al +al +al +gR +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kh +jM +jM +kg +jM +mj +hq +hq +hq +jR +mD +mD +mD +nr +nr +nr +nr +nr +oU +oU +oU +nr +nr +mD +mD +mD +mD +mD +mD +mD +mD +mX +hq +hq +hq +jR +qI +qR +re +rn +rs +jR +hq +hq +hq +jR +rA +rE +rz +rz +rz +rz +rz +rz +rz +rF +rI +rA +rE +rz +rz +rz +rz +rF +rx +rx +rx +mX +hq +hq +hq +jR +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +rY +rY +rY +rY +rY +mD +rY +rY +mD +mD +mX +hq +hq +hq +jR +ux +uD +uI +uE +uB +jR +hq +hq +hq +jR +nm +oq +uU +nm +os +nm +nm +nm +pp +nm +vf +nm +nm +nm +uT +nm +nF +nm +nm +nm +nm +mX +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +vG +ws +vG +vG +ws +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(40,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +au +al +al +al +bf +ad +bB +bR +br +br +br +dD +br +br +br +br +dD +br +br +br +ad +ge +al +al +al +gR +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +kg +jM +mj +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +oU +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jS +qH +qT +re +qR +rs +jS +hq +hq +hq +jS +rx +rD +rA +rA +rA +rI +rA +rA +sn +ry +ry +ry +rx +rA +rA +rA +rA +rx +rx +rD +rx +kU +hq +hq +hq +jS +rY +rY +tm +rY +rY +jS +hq +hq +hq +jS +mD +mD +rY +rY +rY +tm +rY +rY +rY +ui +rY +rY +rY +rY +rY +mD +rY +rY +rY +mD +mD +kU +hq +hq +hq +jS +uu +om +uu +uL +uB +jS +hq +hq +hq +jS +nm +nm +nm +nm +nF +nm +nm +nF +nm +nm +uT +oC +nm +uU +nm +nm +vc +nm +nm +nm +nm +kU +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vM +jM +vM +jM +jM +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(41,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +av +al +al +al +bg +ad +bE +br +br +br +br +dE +ec +br +br +eQ +ff +br +br +br +ad +gd +al +al +al +gS +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kg +jM +jM +kg +jM +mj +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +hc +re +qR +rs +gP +hq +hq +hq +gP +rx +ry +ry +rx +rD +rx +rx +sb +rz +rz +rz +rz +rM +rD +rx +rx +rS +rx +rx +rx +rD +nk +hq +hq +hq +gP +mD +mD +rY +rY +mD +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +rY +rY +mD +mD +rY +rY +mD +rY +mD +mD +mD +rY +rY +mD +mD +mD +gP +hq +hq +hq +gP +mI +uE +mG +mG +ns +gP +hq +hq +hq +gP +nm +nm +oq +nm +pp +nm +uT +nm +os +oq +oq +nm +oq +nm +nm +oq +nm +uT +oq +nm +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vN +jM +vN +jM +jM +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(42,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ad +ad +ak +ad +ad +ad +ad +ad +ad +ad +ad +ad +ed +br +br +dD +ad +ad +ad +ad +ad +ad +ad +ak +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +hc +re +qQ +rs +jQ +hq +hq +hq +jQ +rB +rz +rz +rM +rS +rx +rN +rB +rz +rF +rE +rz +rz +rM +ry +rx +rx +rx +rx +rx +rx +jQ +hq +hq +hq +jQ +mD +mD +tn +tB +mD +jQ +hq +hq +hq +jQ +mD +mD +tm +mD +mD +rY +tB +tP +rY +rY +rY +ui +tK +rY +rY +rY +rY +tt +mD +mD +mD +jQ +hq +hq +hq +jQ +uy +uE +om +uu +uu +jQ +hq +hq +hq +jQ +nm +nm +nm +uS +nm +oe +nm +vf +uU +nm +nm +nm +vc +nm +nm +oq +uT +nm +nm +nm +nm +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vO +jM +vO +jM +jM +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(43,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ae +aj +am +ad +aw +aC +aC +aC +aC +bj +ad +bS +cp +bT +bT +bT +ee +bT +bT +ee +bT +cp +fA +ad +fP +gf +fQ +fP +fP +gT +ad +ae +aj +am +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mt +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mt +hq +hq +hq +qA +qH +qU +re +hc +rs +qA +hq +hq +hq +rt +rz +rz +rz +rz +rM +rB +rz +rz +rz +rG +rx +rE +rz +rz +rz +rM +rx +rD +rx +ta +rx +rt +hq +hq +hq +tb +mD +rY +rY +mD +mD +tb +hq +hq +hq +tG +mD +mD +mD +mD +rY +rY +mD +mD +rY +rY +mD +rY +rY +tL +rY +rY +rY +rY +mD +mD +mD +tG +hq +hq +hq +uq +uz +nd +mI +uw +nU +uq +hq +hq +hq +uO +nm +oq +nm +nm +nm +nm +uT +nm +nm +nm +os +os +nm +nm +uU +uS +nm +oe +nm +nm +oq +uO +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vP +jM +vP +jM +jM +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(44,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +af +ag +af +ad +ax +al +al +al +al +ba +ad +bS +bT +cP +bT +bT +ee +bT +bT +ee +bT +bT +bT +ad +fP +fP +fP +fP +fP +gU +ad +af +ag +af +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +kg +jM +mj +hq +hq +hq +jS +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +qV +re +hc +rs +jS +hq +hq +hq +jS +rz +rF +rE +rz +rz +rz +rz +rF +rA +rx +rx +sM +rA +rE +rz +rz +rM +ry +rx +rx +rx +jS +hq +hq +hq +jS +mD +mD +tt +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +tt +mD +mD +rY +mD +mD +rY +rY +mD +rY +mD +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +mI +ol +uy +mI +mI +jS +hq +hq +hq +jS +nm +nF +nm +nm +nm +nm +nm +nm +nm +oq +nm +nm +nm +os +nm +nm +nm +vc +uS +uU +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +jM +jM +jM +jM +jM +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(45,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ag +ag +an +ad +ay +al +al +al +aH +bb +ad +bT +bT +bT +bT +dF +ef +eo +eD +ef +fg +bT +bT +fM +fP +fP +fP +fP +fP +gV +ad +gb +ag +ag +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +qH +hc +re +hc +rs +gP +hq +hq +hq +gP +rz +rG +rx +rE +rz +rz +rz +rM +so +ry +rx +rx +rD +rx +rE +rz +rz +rz +rM +rx +rx +gP +hq +hq +hq +gP +mD +rY +rY +rY +rY +gP +hq +hq +hq +gP +mD +mD +mD +mD +rY +rY +rY +rY +mD +mD +rY +mD +mD +mD +rY +mD +mD +mD +rY +rY +mD +gP +hq +hq +hq +gP +uu +ns +uw +pA +uu +gP +hq +hq +hq +gP +nm +nm +oC +nF +nm +nm +uU +uS +uT +nm +nm +nm +uU +uS +nm +nm +nm +nm +pp +nm +nm +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vQ +vQ +vQ +vQ +vQ +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(46,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ad +ak +ad +ad +az +aD +aP +al +al +bk +ad +bU +ad +ad +bT +dG +al +al +eg +eR +fh +bT +bT +ad +fP +fP +go +fP +gJ +fP +ad +ad +ak +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +jM +jM +jM +kg +lL +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +qH +hc +re +ro +rs +jQ +hq +hq +hq +jQ +rA +rx +rD +rx +rA +rE +rz +rz +rz +rz +rM +ry +rx +ry +ry +sQ +rz +rz +rz +rM +rx +jQ +hq +hq +hq +jQ +mD +rY +rY +mD +tE +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +rY +rY +mD +tE +rY +rY +rY +mD +mD +mD +rY +rY +tK +rY +rY +mD +mD +jQ +hq +hq +hq +jQ +mI +jI +jI +uM +na +jQ +hq +hq +hq +jQ +nm +nm +uT +nm +nm +uT +nm +pp +nm +nF +nm +nm +nm +nm +nm +uT +oD +uU +uS +nm +oD +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vR +jM +jM +jM +vR +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(47,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ah +al +al +ad +aA +al +al +al +al +ba +ad +bV +cq +ad +bT +dG +eg +al +eE +al +fh +bT +bT +ad +fP +fP +fP +fP +fP +fP +ad +hk +al +ah +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +mD +mD +nr +nr +mD +nr +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +qH +qQ +re +rp +rs +jR +hq +hq +hq +jR +rx +rD +rx +rN +ry +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rz +rz +rz +rz +rz +rM +jR +hq +hq +hq +jR +mD +mD +rY +rY +mD +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +rY +rY +mD +mD +rY +mD +mD +rY +rY +rY +mD +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +uu +jI +jI +mI +na +jR +hq +hq +hq +jR +nm +nm +uS +uT +nm +nm +vc +nm +nm +nm +oq +nm +uS +nm +nm +nm +nF +nE +uS +nm +nm +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vS +jM +jM +jM +vS +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(48,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ad +al +al +ao +aB +al +al +al +al +ba +ad +bW +cr +ad +bT +dH +dZ +ep +ep +eS +fi +bT +bT +fM +fP +fP +gp +fP +go +fP +hd +al +hr +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +jM +jM +jM +jM +jM +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +qH +qW +re +rq +rs +jS +hq +hq +hq +jS +ry +ry +rB +rz +rz +rz +rz +rF +rA +rA +rE +rz +rz +rz +sW +rz +rz +rz +sW +rz +rz +jS +hq +hq +hq +jS +mD +rY +mD +mD +mD +jS +hq +hq +hq +jS +mD +mD +mD +rY +mD +rY +mD +mD +mD +mD +rY +rY +mD +mD +mD +tm +mD +rY +rY +mD +mD +jS +hq +hq +hq +jS +ny +pR +jI +uE +uK +jS +hq +hq +hq +jS +nm +nm +nm +nm +nm +nm +uS +uS +nm +nm +uU +nm +nm +nm +uT +nF +nF +nm +nm +nm +nm +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vT +jM +jM +jM +vT +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(49,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +ad +ad +ad +al +ad +aB +aE +aQ +aX +al +bl +ad +bV +cs +ad +bT +bT +bT +bT +bT +bT +bT +bT +fB +ad +fQ +fP +fP +fP +fP +fP +ad +hl +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rz +rz +rz +rz +rF +rA +rA +rx +rx +rD +rx +rA +rA +rI +rx +rA +rA +rA +rx +rA +rA +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +rY +mD +mD +mD +mD +mD +mD +rY +tK +mD +rY +rY +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +nm +nm +nm +nm +uT +nm +nm +nm +nm +nE +oD +nm +oq +oC +vc +nm +uS +oq +nm +nm +nm +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +ws +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(50,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ad +ad +ad +ad +aB +aF +aR +aY +al +bl +ad +bX +ct +ad +dm +bT +bT +bT +bT +dm +bT +fv +fC +ad +fR +fP +go +fP +go +fP +ad +ad +ad +ad +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rA +rA +rA +rD +rx +rx +rD +rx +rx +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +rY +mD +mD +mD +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +hq +wt +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(51,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +ad +ad +ad +aB +aG +aS +aZ +al +bl +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +ad +fS +fP +fP +fP +fP +fP +ad +ad +ad +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rD +rx +rx +rx +rx +rx +rx +rD +rx +rx +rD +rx +rx +rx +rx +rx +rD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +nm +nm +nm +nm +nm +uT +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +nm +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(52,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +ad +ad +aB +al +al +al +al +bm +ad +bY +cu +cu +dn +dI +eh +eq +eF +dn +cu +cu +cu +ad +fP +fP +fP +ad +gK +ad +ad +ad +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nP +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nP +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rR +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tQ +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tQ +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +uV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uV +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(53,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +aB +aH +al +al +al +ba +bF +bO +bO +bO +bO +dJ +bO +bO +bO +eT +bO +bO +bO +ck +fP +fP +fP +ad +gL +gW +ad +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(54,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +ad +ad +aI +aT +aT +aT +bc +ad +bO +bO +bO +al +al +al +al +al +al +bO +bO +bO +ad +fT +fP +gq +ad +gM +ad +ad +hh +hs +hD +hD +hq +hq +hq +hq +hD +hD +hs +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jq +ki +ki +ki +ki +ki +mk +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(55,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ad +ad +ad +ad +ad +bO +bO +al +dK +al +al +dK +al +fj +bO +ad +ad +ad +ad +ad +ad +ad +ad +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jq +jI +jI +jI +jI +jI +jI +jI +mk +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(56,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +bO +bO +al +dL +al +al +dL +al +bO +bO +ad +ad +aa +aa +aa +aa +aa +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jq +jI +jT +jI +jU +jI +jI +lM +jI +jI +mk +hq +hq +hq +hq +gP +no +nL +oi +gP +no +oV +oi +gP +no +oV +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sp +oi +gP +no +sp +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ud +oi +gP +no +ud +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vh +oi +gP +no +vh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(57,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +cv +cQ +cv +cv +cv +cv +cv +cv +cQ +fw +ad +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jr +jI +jI +jI +jI +jp +jI +jI +jI +jI +mp +hq +hq +hq +hq +gP +jI +na +oj +jI +mR +mI +na +mI +nX +jI +jI +nd +qa +ne +nd +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rO +rP +sc +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +nk +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rY +mD +rY +rY +rY +rY +mD +mD +rY +mD +mD +mD +rY +mD +mD +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +nG +uW +uW +og +ot +ot +ot +ot +ot +ot +ot +ot +ot +qe +qn +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(58,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +ad +ak +ad +ad +ad +ad +ak +ad +ad +ad +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jr +jI +jU +jT +jp +lm +lE +jI +lM +jI +mp +hq +hq +hq +hq +kU +ns +nC +mZ +mT +mH +oj +na +mT +nz +pB +nY +nd +ns +nZ +nd +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rO +rP +rO +rP +rO +rP +rO +rP +tV +rP +rO +rP +rO +rP +rO +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rY +mD +rY +rY +mD +tE +rY +rY +rY +mD +mD +mD +rY +rY +tK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +nI +uX +nI +nG +og +ot +vl +qe +uW +uW +og +ot +qe +qn +nI +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +hh +xk +xk +xk +xk +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xu +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(59,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +ad +cR +ag +ag +ad +ad +ag +ag +ag +ad +ad +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +js +jp +jp +jp +jp +ln +jp +jp +jp +jp +mq +hq +hq +hq +hq +mX +ni +na +ok +ol +oG +mI +na +mG +jI +jI +jI +pR +nd +ne +nd +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +rP +rP +rP +rP +rP +rP +rP +sG +sN +rP +rP +rP +rP +rP +rP +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mD +mD +mD +rY +rY +tY +tY +ul +tY +tY +rY +rY +rY +mD +mD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +nI +nI +nI +vd +nG +uW +uW +qn +nI +nJ +nG +uW +qn +nH +nI +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +xk +xk +xk +xk +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xv +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(60,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +cS +cS +cS +ad +ad +cS +cS +cS +ad +aa +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jr +jI +jI +jI +kV +jp +jp +jI +jI +jI +mp +hq +hq +hq +hq +kU +nd +nQ +ol +ny +mI +mS +ph +nz +jI +nY +mI +mT +qb +ne +nd +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +rO +rP +rO +rP +rO +rP +sc +rP +rO +rP +rO +rP +rO +rP +rO +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +mD +rY +mD +rY +tY +mD +mD +mD +rY +rY +mD +mD +mD +tm +mD +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +nI +nI +qr +nI +nJ +nI +nI +qr +nH +nI +vd +nI +nI +nJ +nI +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +hj +xk +xk +xk +xk +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xw +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(61,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ad +cT +cT +cT +ad +ad +cT +cT +cT +ad +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jr +jI +jI +jI +jI +jp +jI +jI +jI +mo +mp +hq +hq +hq +hq +gP +nt +nR +nR +nd +nd +oM +ny +mI +nx +mI +mT +nC +ns +nx +ny +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +nk +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +rO +rP +sc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +rY +mD +rY +mD +mD +mD +mD +mD +mD +rY +tK +mD +rY +rY +mD +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +nI +qr +nI +nI +nI +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(62,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jt +jI +jV +jI +jI +jI +jI +jI +jI +jI +ml +hq +hq +hq +hq +gP +no +nL +oi +gP +no +oV +oi +gP +no +oV +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sp +oi +gP +no +sp +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ud +oi +gP +no +ud +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vh +oi +gP +no +vh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(63,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jt +jI +jI +jI +jI +jI +jI +jI +ml +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(64,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hs +hE +hE +hq +hq +hq +hq +hE +hE +hs +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jt +kj +kj +kj +kj +kj +ml +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(65,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(66,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nS +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rT +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tR +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(67,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mI +mG +mI +mI +ow +mG +mG +mG +mG +mG +ny +ny +ny +mG +qk +mG +oH +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +kE +kE +kE +kE +kF +kE +kE +kE +kE +kE +kE +kE +kE +kE +kL +kE +kD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(68,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +jI +mY +nu +na +mI +mI +oH +mG +mG +mG +ny +mG +pJ +mG +mI +mG +mG +mG +mG +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +kE +lK +kG +kE +kE +kE +kD +kE +kE +kE +kE +kE +lf +kE +kE +kE +kE +kE +kE +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +kE +kE +kE +kE +kE +kE +hc +hc +hc +kE +kE +kE +kE +kE +kE +hc +hc +kE +kE +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +wu +hq +wL +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(69,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +lo +kU +gP +gP +hq +hq +hq +gP +mG +mI +mI +mG +nT +mG +mI +oH +mG +nC +pq +ol +pC +ok +mI +mZ +ny +mG +ow +mG +mG +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kD +kE +kE +kD +kE +mV +kL +kE +kE +lf +kE +nj +kE +kE +kF +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +hc +hc +kE +kE +kE +kE +vm +uG +kE +kE +kE +kE +kE +kE +hc +vv +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wE +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(70,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kk +kW +kW +kW +lN +jQ +hq +hq +hq +jQ +mG +mG +mG +mI +na +na +mI +mI +mG +pi +mG +mS +ol +mI +oH +ol +ol +ob +mI +nx +mG +jQ +hq +hq +hq +jQ +kE +kD +kE +kE +mV +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +nr +nr +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +tf +th +th +to +th +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +kE +kE +nj +kE +kD +kE +kE +kD +kE +kE +mV +kE +kE +kE +jQ +hq +hq +hq +jQ +kG +kE +nj +kE +kE +jQ +hq +hq +hq +jQ +kE +kE +hc +uG +uG +nr +nr +kE +kE +kE +kE +kE +kE +nr +nr +nr +nr +kE +hc +kE +kE +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vU +vU +vI +vI +wV +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(71,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kl +kW +kW +kW +lO +jR +hq +hq +hq +jR +mG +mQ +mZ +nv +jI +nb +nT +ns +ns +ns +pr +mI +ol +ol +pS +ns +pD +nd +mI +mG +mG +jR +hq +hq +hq +jR +qJ +lK +kE +ld +kE +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +nr +nr +nr +mD +mD +mD +mD +mD +nr +nr +nr +nr +mD +mD +mD +mD +jR +hq +hq +hq +jR +tg +th +tu +th +tf +jR +hq +hq +hq +jR +kE +mU +nj +kF +tM +kE +kD +kE +kE +kE +nj +kE +kE +kE +lK +kE +ld +kE +kE +kE +kE +jR +hq +hq +hq +jR +kE +kD +kE +kE +kG +jR +hq +hq +hq +jR +kE +kE +hc +uG +hc +nr +nr +nr +kE +kE +kE +kE +kE +nr +nr +nr +nr +kE +hc +hc +kE +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(72,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +km +kW +lp +kW +lP +jS +hq +hq +hq +jS +mG +mG +na +nw +jI +jI +na +na +oW +mI +ps +mG +om +ns +ns +oW +ol +oG +nx +qt +mG +jS +hq +hq +hq +jS +kE +kE +kE +kE +mV +jS +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +tj +th +to +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +lK +kE +kL +kE +kE +kE +kE +mV +kE +lf +kE +jS +hq +hq +hq +jS +kE +lK +kE +ld +kE +jS +hq +hq +hq +jS +kE +kE +uG +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +kE +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(73,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kn +kW +lq +kW +lQ +gP +hq +hq +hq +gP +mG +mH +na +jI +nU +jI +mI +oI +na +nB +ns +ns +ns +ns +ns +ns +ql +pw +nR +ng +mG +gP +hq +hq +hq +gP +kE +kE +kE +mU +lK +gP +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +ti +th +tv +tg +tp +gP +hq +hq +hq +gP +kE +kE +kE +kE +lf +kE +kE +lK +kE +mU +kE +kE +kE +kE +kE +kE +mU +lK +nj +kL +kE +gP +hq +hq +hq +gP +kE +kJ +lf +kE +mV +gP +hq +hq +hq +gP +kE +kE +hc +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +kE +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(74,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +ko +kW +lr +kW +lR +jQ +hq +hq +hq +jQ +mH +mI +nb +mI +jI +nY +mI +ne +na +ne +pt +nw +nU +pk +ol +qc +jI +oK +mG +oW +mI +jQ +hq +hq +hq +jQ +kE +kE +mV +kE +ld +jQ +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +jQ +hq +hq +hq +jQ +th +to +th +tu +th +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +mV +kE +nj +kE +nj +kF +kE +lf +kE +kE +mV +kE +ld +kE +kE +kE +jQ +hq +hq +hq +jQ +kE +kE +kE +mU +lK +jQ +hq +hq +hq +jQ +kE +kE +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +uG +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(75,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +iv +ix +iC +gr +gr +gr +gr +gr +gr +aa +aa +hi +hq +hq +hq +jR +kp +kp +kp +kp +kp +jR +hq +hq +hq +mv +mH +mG +nc +ns +nV +om +nd +nd +na +na +mI +jI +oz +pK +ol +nX +on +jI +jI +qu +mI +mv +hq +hq +hq +qB +kE +nj +kE +kD +kE +qB +hq +hq +hq +ru +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +ru +hq +hq +hq +tc +th +tf +tw +ti +th +tc +hq +hq +hq +tH +kE +kE +kD +kE +kE +kL +kE +kE +kE +kE +kE +kE +kD +ld +kE +lK +kG +kE +kE +kE +kE +tH +hq +hq +hq +ur +uA +kG +mV +kE +ld +ur +hq +hq +hq +jR +kE +kE +hc +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +uG +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(76,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +hS +gr +gr +gr +gr +gr +im +gN +iy +gN +gN +iG +iO +iT +iW +iX +aa +aa +hj +hq +hq +hq +jS +kq +kq +kq +kq +kq +jS +hq +hq +hq +jS +mH +mH +nd +mI +nW +ny +nA +oJ +ns +pj +pu +jI +jI +nd +nd +jI +mG +mZ +ol +nx +mI +jS +hq +hq +hq +jS +kE +kE +nj +kE +kE +jS +hq +hq +hq +jS +mD +mD +mD +nr +nr +nr +nr +nr +nr +sA +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +th +to +tp +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +kD +kE +kE +kE +oN +pn +py +pn +pF +kE +kE +kE +kE +nj +kE +kE +kE +jS +hq +hq +hq +jS +ld +kE +lK +kG +kE +jS +hq +hq +hq +jS +kE +kE +uG +nr +nr +nr +nr +nr +nr +vi +nr +nr +nr +nr +nr +nr +kE +kE +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +ww +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(77,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +hM +gN +gr +hZ +id +ii +gr +in +gN +iz +gN +gN +hV +gN +iU +iW +iY +aa +aa +gP +hq +hq +hq +gP +kq +kX +ls +kq +kq +gP +hq +hq +hq +gP +mI +mI +ne +na +nC +nd +ox +ns +mI +na +na +nw +nb +jI +jI +qd +ps +mI +ol +qv +mI +gP +hq +hq +hq +gP +kE +kE +lK +kE +kL +gP +hq +hq +hq +gP +mD +mD +mD +nr +nr +nr +nr +nr +sq +sB +sH +nr +nr +nr +sX +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +th +to +tg +th +tj +gP +hq +hq +hq +gP +kE +kE +nj +kE +mV +kE +kE +oN +pb +ue +ue +ue +pG +pF +kE +kE +lK +kE +kE +kE +kE +gP +hq +hq +hq +gP +kE +kE +kE +kE +nj +gP +hq +hq +hq +gP +kE +hc +hc +nr +nr +nr +nr +nr +vi +vi +vi +nr +nr +nr +mD +mD +hc +hc +hc +hc +vw +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wX +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(78,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +hN +gN +hS +gN +gN +gN +gr +io +gN +gN +gN +gN +iH +iP +iV +iW +iZ +aa +aa +hh +hq +hq +hq +jQ +kq +kq +lt +kq +kq +kU +hq +hq +hq +jQ +mI +mH +nd +jI +jI +on +nw +oK +jI +pk +ns +na +nd +ne +nX +nA +nd +ns +qs +nz +mG +kU +hq +hq +hq +jQ +qJ +mU +kE +qJ +kE +jQ +hq +hq +hq +jQ +mD +mD +mD +nr +nr +nr +nr +nr +sr +sC +sI +sO +sR +mD +mD +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jQ +tg +th +th +th +th +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kG +kE +oO +ue +ue +ue +ue +ue +pL +pU +pn +pn +pn +pn +qw +pn +kU +hq +hq +hq +jQ +kE +kE +kE +uN +kE +jQ +hq +hq +hq +jQ +kE +uR +uG +nr +nr +nr +nr +nr +vi +vi +vi +mD +mD +mD +mD +hc +hc +hc +hc +hc +uG +kU +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vW +vI +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(79,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +gr +gr +gr +aa +aa +gr +gr +gN +gN +hV +gN +gN +gN +gr +ip +gN +gN +gN +gN +iI +gr +gr +gr +gr +aa +aa +hi +hq +hq +hq +jR +kq +kq +kX +kq +kq +mm +hq +hq +hq +jR +mG +mR +nf +nx +nX +nd +jI +jI +nU +jI +pv +na +ns +jI +nb +mG +ob +ns +jI +jI +mG +mX +hq +hq +hq +jR +kE +nj +kF +kE +lf +jR +hq +hq +hq +jR +mD +mD +mD +nr +nr +nr +nr +nr +ss +sD +sI +nr +nr +sS +mD +mD +mD +mD +mD +mD +mD +mX +hq +hq +hq +jR +th +th +to +tf +th +jR +hq +hq +hq +jR +kE +kD +kE +kE +lK +kE +kE +oP +ue +ue +ue +um +uo +jp +jp +jp +jp +jp +jp +jp +jp +mX +hq +hq +hq +jR +nj +lK +kG +kE +kE +jR +hq +hq +hq +jR +kE +hc +hc +nr +nr +nr +nr +nr +vi +vi +vi +nr +nr +mD +mD +mD +hc +uG +hc +hc +hc +uJ +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +vX +vI +wF +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(80,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +gI +gY +he +gr +gr +gr +gr +gr +gr +gr +gr +ia +gN +gN +gr +iq +gN +gN +gN +ir +iJ +gr +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kq +kq +lt +kq +kq +kU +hq +hq +hq +jS +mG +mI +nd +ny +nY +nx +jI +nY +jI +jI +nb +pA +nd +px +ol +nd +nQ +mI +jI +mH +mG +kU +hq +hq +hq +jS +mU +kE +kE +kE +kE +jS +hq +hq +hq +jS +mD +mD +mD +mD +nr +nr +nr +nr +nr +sE +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +mD +kU +hq +hq +hq +jS +th +th +tx +th +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +mV +kE +kE +oQ +ue +ue +ue +ue +ue +pM +po +po +qm +po +po +po +po +kU +hq +hq +hq +jS +kE +lf +kE +mV +kJ +jS +hq +hq +hq +jS +kE +hc +hc +kE +nr +nr +nr +nr +nr +vi +nr +nr +nr +nr +nr +mD +mD +hc +hc +hc +vx +kU +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vW +vI +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(81,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gs +gG +gN +gN +gN +hm +ht +hF +hJ +gN +hO +gr +gr +gr +ie +ij +gr +gr +gr +ie +ij +gr +gr +gr +gr +gr +aa +aa +aa +gP +hq +hq +hq +gP +kq +kY +ls +kq +kq +gP +hq +hq +hq +gP +mG +mI +nc +jI +nZ +nx +nb +oL +oX +nc +oz +jI +oz +jI +ol +nc +nd +nA +oz +mH +mG +gP +hq +hq +hq +gP +mV +kE +kF +kE +kE +gP +hq +hq +hq +gP +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +th +tf +th +th +tf +gP +hq +hq +hq +gP +kE +kE +kD +kE +lf +kE +kE +oR +pd +ue +ue +ue +pH +pN +kE +kD +kE +tM +kD +kE +kE +gP +hq +hq +hq +gP +lf +kE +kE +ld +kE +gP +hq +hq +hq +gP +kE +kE +hc +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +hc +hc +vw +nk +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(82,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gt +gH +gN +gN +gN +gr +hu +hG +hu +hu +gN +hT +hW +gN +gN +gN +gN +hW +gN +gN +gN +iE +iK +iQ +iW +iX +aa +aa +aa +hh +hq +hq +hq +jQ +kq +kq +kq +kq +kq +jQ +hq +hq +hq +jQ +mG +mI +mH +nz +jI +oo +jI +jI +oY +jI +jI +jI +pD +jI +jI +nc +nA +nd +nd +mH +mG +jQ +hq +hq +hq +jQ +mV +kE +ld +nj +kE +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +th +tf +th +tj +th +jQ +hq +hq +hq +jQ +kE +kE +kE +nj +kE +kF +kE +kE +oR +po +po +po +pI +kE +kE +kD +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +kE +kJ +kD +kE +lf +jQ +hq +hq +hq +jQ +kE +kE +hc +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +uG +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vY +vU +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(83,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gt +gH +gO +gN +hf +gr +hv +gZ +gZ +gZ +gN +hU +gN +ib +gN +ik +gN +gN +gN +gN +gN +hV +gN +gN +iW +iY +aa +aa +aa +hi +hq +hq +hq +jR +kr +kr +kr +kr +kr +jR +hq +hq +hq +mv +mG +mS +mG +mG +jI +jI +nb +jI +jI +jI +pw +pw +ol +jI +nw +ne +nd +ow +nd +mH +mS +mv +hq +hq +hq +qB +nj +kE +kE +lf +kE +qB +hq +hq +hq +ru +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +ru +hq +hq +hq +tc +tj +tp +th +tC +th +tc +hq +hq +hq +tH +kE +kD +kE +kE +kE +kE +kE +kE +kE +kE +lK +lK +kE +kE +kE +nj +kE +kF +kE +kE +kD +tH +hq +hq +hq +ur +kE +kE +kD +lf +kE +ur +hq +hq +hq +jR +kE +kE +hc +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(84,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gt +gH +gN +gN +gN +gr +hw +gN +gN +gN +hP +gr +hX +gN +gN +gN +gN +ir +gN +gN +gN +iE +iL +iR +iW +iZ +aa +aa +aa +hj +hq +hq +hq +jS +ks +kW +lu +kW +lS +jS +hq +hq +hq +jS +mG +mT +mI +mI +jI +jI +na +mI +jI +mR +mI +na +mI +nX +jI +jI +nd +qa +ne +nf +mI +jS +hq +hq +hq +jS +kE +kE +kD +kE +kE +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +ti +th +tu +tp +jS +hq +hq +hq +jS +kE +mV +kE +kE +kE +kE +kE +kE +kE +kD +kE +kE +kE +lK +kE +kE +kE +ld +nj +kE +kE +jS +hq +hq +hq +jS +kE +lf +nj +uA +kG +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(85,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gu +gI +gN +gZ +gN +gr +hx +hH +hK +hL +gr +gr +gr +gr +if +il +gr +gr +gr +if +il +gr +gr +gr +gr +gr +aa +aa +aa +gP +hq +hq +hq +gP +kt +kW +lv +kW +lT +gP +hq +hq +hq +gP +mH +mG +ng +mT +ns +ns +oy +mZ +oZ +mH +mI +na +oW +nz +jI +jI +nd +ns +nZ +nd +mG +gP +hq +hq +hq +gP +kE +kE +kE +kD +qJ +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +gP +hq +hq +hq +gP +th +th +ti +th +tF +gP +hq +hq +hq +gP +kE +kE +kL +mV +kE +kE +kE +nj +kE +kE +kE +kE +kE +nj +kE +kE +kE +kE +lf +kE +kE +gP +hq +hq +hq +gP +lK +kE +kE +kE +ld +gP +hq +hq +hq +gP +kE +kE +kE +kE +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(86,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +gH +ha +hg +gr +gr +gr +gr +gr +gr +gr +gr +gN +gN +gN +gr +is +gN +gN +gN +iF +iM +gr +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +ku +kW +lw +kW +lU +jQ +hq +hq +hq +jQ +mH +mH +nh +mG +mH +op +na +ok +ol +oG +mI +na +mG +jI +jI +nb +pR +nf +ne +nd +qy +jQ +hq +hq +hq +jQ +kE +kD +kE +kE +kE +jQ +hq +hq +hq +jQ +mD +mD +mD +mD +mD +mD +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +mD +mD +mD +mD +mD +jQ +hq +hq +hq +jQ +tf +th +tv +tj +tp +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +lf +kE +mV +kE +kE +kE +kE +kE +kE +mU +kE +nj +kE +mU +jQ +hq +hq +hq +jQ +nj +kE +kE +ld +kJ +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +nr +nr +nr +nr +nr +nr +nr +nr +nr +nr +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vU +vU +vI +vI +wW +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(87,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gr +gr +gr +gr +aa +aa +gr +gr +gN +gN +hY +gN +gN +gN +gr +it +gN +gN +gN +hx +gr +gr +gr +gr +gr +aa +aa +hi +hq +hq +hq +jR +kv +kW +kW +kW +lV +jR +hq +hq +hq +jR +mG +mH +ni +nA +nd +nd +nQ +ol +ny +mI +mS +na +nz +jI +jI +mI +mT +qb +ne +nd +nd +jR +hq +hq +hq +jR +kE +kE +kE +kE +lK +jR +hq +hq +hq +jR +mD +mD +mD +mD +mD +mD +mD +nr +nr +mD +nr +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jR +hq +hq +hq +jR +th +th +to +tw +tp +jR +hq +hq +hq +jR +kE +kE +nj +tM +kE +kE +ld +kE +kE +kE +kD +kE +nj +kE +kE +kE +mV +kG +nj +kE +kE +jR +hq +hq +hq +jR +lf +kG +kJ +kE +lf +jR +hq +hq +hq +jR +kE +kE +hc +kE +kE +kE +kE +nr +nr +kE +nr +kE +kE +kE +kE +kE +kE +kE +kE +uG +kE +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vV +wv +vI +vI +wW +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(88,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +hQ +gN +hR +gN +gN +gN +gr +gI +gN +gN +gN +gN +gr +iO +gN +iW +iX +aa +aa +hj +hq +hq +hq +jS +kw +kW +kW +kW +lW +jS +hq +hq +hq +jS +mG +mH +mG +mG +mG +mG +nR +nR +nd +nd +px +ny +mI +nx +oZ +mT +nC +ns +nx +ny +nd +jS +hq +hq +hq +jS +kE +kE +lK +kE +nj +jS +hq +hq +hq +jS +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +jS +hq +hq +hq +jS +th +to +to +th +th +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +nj +nj +kE +kE +kE +kE +kE +kE +kE +mV +mV +kE +kE +kE +kE +jS +hq +hq +hq +jS +kE +mU +kD +lf +kE +jS +hq +hq +hq +jS +kE +kE +hc +hc +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +hc +uG +kE +kE +kE +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +vU +vU +vI +vI +wV +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(89,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +gN +gN +hY +ic +ig +gI +gr +gI +gN +iA +gN +gN +iN +gN +gN +iW +iY +aa +aa +gP +hq +hq +hq +gP +gP +kU +lo +kU +gP +gP +hq +hq +hq +gP +mG +mH +mH +mH +oa +mH +mG +mG +ny +pl +nB +nd +nc +ng +pT +ny +nR +qq +mG +mG +nd +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kE +kE +kE +kE +kE +kG +mU +kE +kD +kL +ld +kE +nj +kD +kE +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +hc +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +hc +vu +kE +kE +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wE +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(90,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gr +hR +hR +gr +gr +gr +gr +gr +iu +gI +gI +gI +gN +gr +iS +gN +iW +iZ +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mG +mG +mG +mG +mG +mH +mH +mG +mG +ny +ny +mG +mG +mG +ny +ns +ns +mG +nd +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +kE +kE +kE +kE +kE +kE +kE +kE +hc +uG +kE +kE +kE +uG +hc +kE +kE +kE +kE +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +hq +wt +hq +wM +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(91,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gQ +gQ +gP +aa +aa +aa +gr +gr +iw +iB +iD +gr +gr +gr +gr +gr +gr +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mG +mG +mG +mG +mG +nh +mG +mG +mG +ny +ny +ny +ny +ny +mG +mG +mG +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(92,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nS +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rT +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tR +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tR +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(93,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gQ +gQ +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(94,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hy +hD +hD +hq +hq +hq +hq +hD +hD +hy +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +vB +vC +vD +vD +vD +vC +vB +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(95,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +vB +vE +vE +vE +vF +vE +vE +vE +vB +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(96,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pa +oi +gP +no +pa +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +st +oi +gP +no +st +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +uf +oi +gP +no +uf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +vB +vE +vE +vE +vF +vF +vF +vE +vE +vE +vB +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(97,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +jf +hq +hq +hq +jv +hq +hq +ky +kz +lx +lF +lY +hq +hq +jv +hq +hq +hq +hq +gP +nB +mI +jI +oz +na +mI +jI +mR +mI +na +mI +nX +jI +oz +nd +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +kD +kE +kE +kD +kE +mV +kL +kE +rU +lf +kE +nj +kE +kE +kF +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +vC +vE +vE +vE +vF +vE +vF +vE +vE +vE +vC +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(98,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jX +kz +la +la +lG +lF +mn +hq +hq +hq +hq +hq +hq +kU +mS +mT +ns +ns +nC +mZ +mT +mH +mI +na +mT +nz +jI +jI +nd +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +kE +nj +kE +kD +kE +kE +kD +kE +kE +mV +kE +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +vD +vE +vF +vF +vF +vF +vF +vF +vF +vE +vD +hq +hq +hq +hq +hh +xk +xk +xk +xk +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xu +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(99,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jX +kA +la +ly +la +lZ +mn +hq +hq +hq +hq +hq +hq +mX +nd +mG +mH +oA +oM +ok +ol +oG +mS +pE +mG +jI +jI +oz +nY +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +kE +rU +kD +kE +kE +kE +nj +sJ +kE +kE +lK +kE +ld +kE +kE +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +kE +kE +kE +kE +tZ +tZ +tZ +tZ +tZ +tZ +kE +kE +kE +kE +kE +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +vD +vF +vF +vE +vF +wG +vF +vE +vF +vF +vD +hq +hq +hq +hq +hi +xk +xk +xk +xk +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xv +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(100,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jX +kB +la +la +la +lH +mn +hq +hq +hq +hq +hq +hq +kU +nd +ob +nd +nd +nQ +ol +pm +mI +mS +na +nz +jI +jI +mI +mT +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +sg +kE +lK +kE +kL +kE +kE +sg +kE +mV +kE +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +vD +vE +vF +vF +vF +vF +vF +vF +vF +vE +vD +hq +hq +hq +hq +hj +xk +xk +xk +xk +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xw +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(101,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jw +hq +hq +kC +lb +lz +lH +ma +hq +hq +jw +hq +hq +hq +hq +gP +nC +mG +mG +mG +nR +nR +nd +nd +oM +ny +mI +nx +mT +mT +nC +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +lf +kE +kE +lK +kE +mU +kE +kE +kE +kE +kE +kE +mU +lK +nj +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +kE +tN +tN +tN +up +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +vC +vE +vE +vE +vF +vE +vF +vE +vE +vE +vC +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(102,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pa +oi +gP +no +pa +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +st +oi +gP +no +st +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +uf +oi +gP +no +uf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +vB +vE +vE +vE +vF +vF +vF +vE +vE +vE +vB +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(103,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +vB +vE +vE +vE +vF +vE +vE +vE +vB +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(104,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hy +hE +hE +hq +hq +hq +hq +hE +hE +hy +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +vB +vC +vD +vD +vD +vC +vB +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(105,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(106,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +oc +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +oc +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rV +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tS +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +uY +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uY +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(107,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +kE +kE +kE +kE +kF +kE +kE +kE +kE +kE +kE +kE +kE +kE +kL +kE +kD +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(108,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +kE +lK +kG +kE +kE +kE +kD +kE +kE +kE +kE +kE +lf +kE +kE +kE +kE +kE +kE +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +qK +qK +qK +qK +qK +qK +qK +qK +qY +qK +rJ +rJ +qK +qK +qK +qK +qK +qK +qK +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +qK +qK +qK +qK +qK +qK +qK +qK +qY +qK +rJ +rJ +qK +qK +qK +qK +qK +qK +qK +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +qK +qK +qK +qK +qK +qK +qK +qK +qY +qK +rJ +rJ +qK +qK +qK +qK +qK +qK +qK +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +hq +hq +wL +wY +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(109,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +lA +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kD +kE +kE +kD +kE +mV +kL +kE +kE +lf +kE +nj +kE +kE +kF +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qX +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qX +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qX +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +wx +wH +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(110,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kD +kE +jp +kE +kJ +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +kE +kE +nj +kE +kD +kE +kE +kD +kE +kE +mV +kE +kE +kE +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +tz +qK +qZ +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +sY +qK +qK +sZ +qK +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +vZ +wy +vI +wN +wZ +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(111,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kE +ld +jp +kM +kI +jR +hq +hq +hq +jR +kE +mU +nj +kF +kE +kE +kD +kE +kE +kE +nj +kE +kE +kE +lK +kE +ld +kE +kE +kE +kE +jR +hq +hq +hq +jR +qK +qX +qK +qK +qY +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +ty +rJ +qK +qK +jR +hq +hq +hq +jR +qK +qX +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +qK +qZ +qK +qY +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wa +wy +vI +wO +wO +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(112,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kF +le +jp +kG +kE +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +lK +kE +kL +kE +kE +kE +kE +mV +kE +lf +kE +jS +hq +hq +hq +jS +qK +qY +qK +ra +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +rJ +qK +qK +qK +rJ +qK +qX +qK +qK +qK +qK +qK +qK +qK +rJ +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +rJ +qK +qK +qK +rJ +qK +qX +qK +qK +qK +qK +qK +qK +tz +rJ +qK +jS +hq +hq +hq +jS +qK +qK +qK +qX +qY +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +rJ +qK +qK +qK +rJ +qK +qX +qK +qK +qK +qK +qK +qK +qK +rJ +qK +jS +hq +hq +hq +jS +qK +sZ +qK +qK +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wb +wz +vI +wO +xa +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(113,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kE +kJ +jp +kD +kG +gP +hq +hq +hq +gP +kE +kE +kE +kE +lf +kE +kE +lK +kE +mU +kE +kE +kE +kE +kE +kE +mU +lK +nj +kL +kE +gP +hq +hq +hq +gP +qK +qK +rf +qY +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qX +qY +qK +qK +qK +qK +qK +qK +qZ +qK +qK +rH +qK +qK +qK +gP +hq +hq +hq +gP +qK +rJ +tq +qK +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qX +qY +qK +qK +qK +qK +qK +qK +qZ +qK +qK +rH +qK +qK +qK +gP +hq +hq +hq +gP +qK +qK +rJ +qK +qX +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qX +qY +qK +qK +qK +qK +qK +qK +qZ +qK +qK +rH +qK +qK +qK +gP +hq +hq +hq +gP +sY +qK +qK +sY +qK +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +wc +wc +vI +wP +xb +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(114,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kE +lf +jp +kE +mb +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +mV +kE +nj +kE +nj +kF +kE +lf +kE +kE +mV +kE +ld +kE +kE +kE +jQ +hq +hq +hq +jQ +qK +qZ +qK +qK +qX +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qY +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +rQ +qK +qK +qX +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wc +wc +wI +wQ +xc +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(115,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +eG +eU +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kG +lg +jp +kJ +kM +jR +hq +hq +hq +mw +kE +kE +kD +kE +kE +kL +kE +kE +kE +kE +kE +kE +kD +ld +kE +lK +kG +kE +kE +kE +kE +mw +hq +hq +hq +qC +qK +qK +qK +qK +qK +qC +hq +hq +hq +rv +qK +qK +ra +qX +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rv +hq +hq +hq +td +qK +qK +ra +qX +qK +td +hq +hq +hq +tI +qK +qK +ra +qX +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +tI +hq +hq +hq +us +qK +qK +qK +qK +ra +us +hq +hq +hq +uP +qK +qK +ra +qX +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +uP +hq +hq +hq +vy +rJ +qK +qK +qY +qK +vy +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wd +wd +vI +wR +wR +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(116,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +eH +eH +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kE +kE +jp +kF +kG +jS +hq +hq +hq +jS +kE +kE +kE +kE +kD +kE +kE +kE +oN +pn +py +pn +pF +kE +kE +kE +kE +nj +kE +kE +kE +jS +hq +hq +hq +jS +qK +qX +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qY +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +un +un +un +qK +ra +qK +qY +qK +qK +qK +jS +hq +hq +hq +jS +qX +qK +qK +uF +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qY +qK +qK +qK +jS +hq +hq +hq +jS +qK +si +sv +sT +rH +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +we +wd +vI +wS +wS +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(117,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ei +er +bJ +eV +fk +ei +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kH +lh +jp +lI +kL +gP +hq +hq +hq +gP +kE +kE +nj +kE +mV +kE +kE +oN +pb +jp +pc +jp +pG +pF +kE +kE +lK +kE +kE +kE +kE +gP +hq +hq +hq +gP +qK +ra +rf +qK +qK +gP +hq +hq +hq +gP +qK +rH +qK +qK +qK +qY +qK +qK +qZ +qK +sh +rJ +qK +qK +qK +qK +qK +qK +qK +qK +ra +gP +hq +hq +hq +gP +qK +rH +qK +tq +qK +gP +hq +hq +hq +gP +qK +rH +qK +qK +qK +qY +qK +qK +qZ +qK +ty +un +un +un +qK +qK +qK +qK +qK +qK +ra +gP +hq +hq +hq +gP +qK +qK +ty +qK +qK +gP +hq +hq +hq +gP +qK +rH +qK +qK +qK +qY +qK +qK +qZ +vn +vn +vr +qK +qK +qK +qK +qK +qK +qK +qK +ra +gP +hq +hq +hq +gP +qK +sj +mJ +sU +qK +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vI +vI +vI +vI +vI +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(118,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ej +es +eI +bJ +fl +ej +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kE +li +jp +kG +kJ +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kG +kE +oO +jp +pc +pc +pc +jp +pL +pU +pn +pn +pn +pn +qw +pn +kU +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +un +un +un +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jQ +qK +uF +qY +uF +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +qK +qK +qK +qK +vn +vp +vn +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jQ +rJ +sj +mJ +sU +qK +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +wf +vI +vI +vI +xd +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(119,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +eW +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kI +kE +jp +lf +kD +jR +hq +hq +hq +jR +kE +kD +kE +kE +lK +kE +kE +oP +pc +pc +pc +pc +jp +jp +jp +jp +jp +jp +jp +jp +jp +mX +hq +hq +hq +jR +qK +qK +qK +qK +qK +jR +hq +hq +hq +jR +qK +qK +rJ +qK +qZ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +qX +qK +qK +qK +mX +hq +hq +hq +jR +qK +tq +rJ +qK +rH +jR +hq +hq +hq +jR +qK +qK +rJ +qK +qZ +qK +qK +qK +qK +qK +qK +un +un +un +qK +ra +qK +qX +tz +qK +qK +mX +hq +hq +hq +jR +qK +qK +uF +rJ +qK +jR +hq +hq +hq +jR +qK +qK +rJ +qK +qZ +qK +qK +qK +qK +vn +vn +vn +qK +qK +qK +ra +qK +qX +qK +qK +qK +mX +hq +hq +hq +jR +qK +sj +vz +sU +qY +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +wf +vI +vI +vI +xe +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(120,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +et +eJ +bJ +fm +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kE +kG +jp +kE +kJ +jS +hq +hq +hq +jS +kE +kE +kE +kE +mV +kE +kE +oQ +jp +pc +pc +pc +jp +pM +po +po +qm +po +po +po +po +kU +hq +hq +hq +jS +qK +qK +rf +qZ +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jS +qK +qK +qK +ty +qK +jS +hq +hq +hq +jS +qK +qK +qK +ty +qK +qK +tz +qK +qK +qK +rH +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jS +qK +qZ +qK +qK +rH +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +jS +qK +sj +mJ +sU +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +vI +vI +wF +vI +vI +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(121,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +cw +cU +bn +aa +bn +bn +bn +bJ +fn +bn +aa +bn +fU +gg +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kD +lj +jp +lJ +kG +gP +hq +hq +hq +gP +kE +kE +kD +kE +lf +kE +kE +oR +pd +jp +pc +jp +pH +pN +kE +kD +kE +kE +kD +kE +kE +gP +hq +hq +hq +gP +qK +qK +qK +qK +qX +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qY +qK +rJ +qK +qK +qK +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qY +qK +rJ +qK +qK +qK +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qK +qK +qK +qZ +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qY +qK +rJ +qK +qK +qK +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qX +sj +mJ +sU +qK +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wJ +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +aa +xl +xm +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(122,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cx +cV +bn +aa +bn +eu +bn +bJ +fo +bn +aa +bn +fV +bJ +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kJ +kF +jp +kJ +mc +jQ +hq +hq +hq +jQ +kE +kE +kE +nj +kE +kF +kE +kE +oR +po +po +po +pI +kE +kE +kD +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +qK +qY +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +tz +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +sk +sw +sV +qX +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wg +wg +vI +wT +wg +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(123,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bZ +bJ +cW +bn +aa +bn +ev +eK +bJ +fp +bn +aa +bn +fW +bJ +gv +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kE +kG +jp +kG +lf +jR +hq +hq +hq +mw +kE +kD +kE +kE +kE +kE +kE +kE +kE +kE +lK +lK +kE +kE +kE +nj +kE +kF +kE +kE +kD +mw +hq +hq +hq +qC +qK +qK +qX +qK +ra +qC +hq +hq +hq +rv +qK +qK +qK +qK +qK +qK +qK +sh +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qK +rv +hq +hq +hq +td +qK +qK +ty +tq +qK +td +hq +hq +hq +tI +qK +qK +ty +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qK +tI +hq +hq +hq +us +qK +qK +qK +ra +qK +us +hq +hq +hq +uP +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qK +uP +hq +hq +hq +vy +rQ +qK +qX +qK +qK +vy +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +vI +vI +vI +vI +vI +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(124,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +ca +bJ +cX +bn +aa +bn +ew +bn +eX +bJ +bn +aa +bn +fX +bJ +gw +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kE +kD +jp +kE +kE +jS +hq +hq +hq +jS +kE +mV +kE +kE +kE +kE +kE +kE +kE +kD +kE +kE +kE +lK +kE +kE +kE +ld +nj +kE +kE +jS +hq +hq +hq +jS +qK +qZ +qK +rf +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +ty +qK +qK +tz +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +ty +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +qK +qK +qK +rH +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wg +wg +vI +wg +wg +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(125,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cy +bn +bn +dM +bn +bn +eL +bJ +bJ +bn +dM +bn +bn +eW +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kK +kE +jp +kJ +lh +gP +hq +hq +hq +gP +kE +kE +kL +mV +kE +kE +kE +nj +kE +kE +kE +kE +kE +nj +kE +kE +kE +kE +lf +kE +kE +gP +hq +hq +hq +gP +qK +qK +qX +qK +qX +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +gP +hq +hq +hq +gP +rJ +qK +qK +rJ +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +gP +hq +hq +hq +gP +qK +qK +qK +qX +qK +gP +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +ra +qK +gP +hq +hq +hq +gP +rQ +qK +qX +qK +rH +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wH +wx +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(126,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +cb +bJ +bJ +bn +bn +bn +bn +bn +bJ +fq +bn +bn +bn +bJ +bJ +gx +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kL +kM +jp +kE +kM +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +kE +kE +lf +kE +mV +kE +kE +kE +kE +kE +kE +mU +kE +nj +kE +mU +jQ +hq +hq +hq +jQ +qK +ra +qY +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qX +qK +qK +qK +ra +rJ +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qX +qK +qK +qK +ra +rJ +qK +ty +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +rJ +jQ +hq +hq +hq +jQ +qK +qK +qK +qK +qK +ra +qK +qK +qK +qX +qK +qK +qK +ra +rJ +qK +qK +qK +qK +qK +qK +jQ +hq +hq +hq +jQ +qK +qX +qK +qK +qY +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wh +vI +vI +vI +wh +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(127,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +cc +bJ +bJ +do +bn +ek +ex +eM +bJ +bJ +fx +bn +fH +bJ +bJ +bJ +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kE +kJ +jp +lK +kD +jR +hq +hq +hq +jR +kE +kE +nj +kE +kE +kE +ld +kE +kE +kE +kD +kE +nj +kE +kE +kE +mV +kG +nj +kE +kE +jR +hq +hq +hq +jR +qK +qX +qK +qK +qK +jR +hq +hq +hq +jR +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +rJ +rJ +qK +qK +qK +rH +qK +qK +qK +qX +qK +jR +hq +hq +hq +jR +qK +qK +tz +qK +qK +jR +hq +hq +hq +jR +qK +qK +tz +qK +qK +qK +qZ +qK +qK +qK +rJ +rJ +qK +qK +qK +rH +qK +qK +qK +qX +qK +jR +hq +hq +hq +jR +qK +qK +ra +qK +qK +jR +hq +hq +hq +jR +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +rJ +rJ +qK +qK +qK +rH +qK +qK +qK +qX +qK +jR +hq +hq +hq +jR +qK +qZ +qK +rQ +qK +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wh +vI +vI +vI +wh +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(128,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bG +cd +cz +cY +bJ +dN +bJ +bJ +bJ +bJ +bJ +bJ +dN +bJ +cz +gh +gy +gk +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kM +kE +jp +kL +kE +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +kE +nj +nj +kE +kE +kE +kE +kE +kE +kE +mV +mV +kE +kE +kE +kE +jS +hq +hq +hq +jS +qK +qK +qK +qK +qY +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qK +qK +qX +qK +jS +hq +hq +hq +jS +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +jS +hq +hq +hq +jS +qK +qX +qK +qK +qK +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wh +vI +vI +vI +wh +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(129,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bH +ce +cA +cZ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +fY +gi +gz +gl +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +lA +kU +gP +gP +hq +hq +hq +gP +kE +kE +kE +kE +kE +kE +kE +kE +kE +kG +mU +kE +kD +kL +ld +kE +nj +kD +kE +kE +kE +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +rH +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qX +qK +qZ +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +rH +qK +tz +qK +qK +qZ +qK +ty +qK +qK +qK +qX +qK +qZ +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +qK +qK +qK +qK +rH +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qK +qX +qK +qZ +qK +qK +qK +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wH +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(130,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bI +cf +cB +da +bJ +bn +bJ +bJ +dp +eY +bJ +bJ +bn +bJ +fZ +gj +gA +gm +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +qK +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +rJ +qK +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +wi +wt +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(131,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +bn +bn +bn +bJ +bJ +dq +eZ +bJ +bJ +bn +bn +bn +bn +bn +bn +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +kE +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(132,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +db +db +dO +el +bJ +dq +eZ +bJ +dt +fD +db +db +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +oc +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +oc +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rV +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rV +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tS +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tS +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +uY +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +uY +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(133,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bG +db +dp +dP +bJ +bJ +dq +eZ +bJ +bJ +fE +eY +db +gk +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(134,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bH +db +dq +dO +bJ +bJ +dq +eZ +bJ +bJ +fD +eZ +db +gl +aa +aa +aa +aa +aa +hh +hz +hD +hD +hq +hq +hq +hq +hD +hD +hz +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +gP +gP +gP +gP +gP +gP +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(135,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bI +db +dr +dQ +bJ +bJ +dq +eZ +bJ +bJ +fF +fa +db +gm +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +gP +gP +kN +kN +kN +gP +md +gP +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(136,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +db +db +dO +bJ +bJ +dr +fa +bJ +bJ +fD +db +db +bn +bn +aa +aa +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +gP +gP +gP +jM +jM +jM +gP +kR +gP +gP +gP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pe +oi +gP +no +pe +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +su +oi +gP +no +su +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ug +oi +gP +no +ug +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vj +oi +gP +no +vj +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(137,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +dc +ds +dR +bn +bJ +bJ +bJ +bJ +bn +dc +ds +dR +bn +bn +bn +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hB +hq +hq +hq +gP +jM +jM +jM +jM +jM +jM +jM +jM +jM +gP +hq +hq +hq +hq +gP +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nk +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +qK +rW +qK +qK +qK +qK +qK +qK +qK +qK +qK +sY +qK +qK +sZ +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +qK +qX +qK +qK +qK +qK +qX +qK +qK +qK +qK +qK +qK +qK +qX +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +nk +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +aa +xl +xn +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(138,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +cC +dd +bJ +bJ +bn +bJ +bJ +bJ +bJ +bn +fG +fN +ga +bJ +bn +bn +bn +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jy +jM +gP +kO +kO +kO +kO +me +gP +jM +jy +hq +hq +hq +hq +kU +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +rQ +qK +sd +qK +si +sv +sv +sv +sv +sv +sT +qK +qK +qZ +qK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +tz +qK +qK +ra +qK +qK +qX +qK +qZ +qK +qK +qK +qK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +qZ +qK +qK +qZ +qK +qK +qK +qK +qZ +qK +qK +qZ +qK +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qL +qM +rh +rg +mn +hq +hq +hq +hq +hq +hq +hh +xk +xk +xk +xk +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xo +xk +xk +xk +xu +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(139,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bo +bJ +bo +bJ +bJ +bJ +bJ +dN +bJ +bJ +bJ +bJ +dN +bJ +bJ +bJ +bJ +gB +bJ +bo +gP +hb +gP +hq +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +gP +kP +kP +kP +kP +gP +gP +gP +gP +hq +hq +hq +hq +mX +nD +nD +nD +oB +nD +nD +nD +oB +nD +nD +nD +oB +nD +nD +nD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +qK +qX +qK +rW +sj +mJ +mJ +sK +mJ +mJ +sU +qK +sZ +qK +qK +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +qK +qK +qK +qK +qK +qK +qY +ua +qK +qK +qK +qK +ra +qK +qK +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +qK +qK +qK +qK +qK +qK +qK +vq +qK +qK +qK +qK +qK +qK +qK +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +vA +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +xk +xk +xk +xk +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xp +xk +xk +xk +xv +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(140,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bo +bK +bo +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +bJ +gB +bK +gB +gQ +hc +gQ +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jz +jM +gP +kQ +kQ +kQ +kQ +mf +gP +jM +jz +hq +hq +hq +hq +kU +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +qK +qZ +qK +sf +sk +sw +sw +sw +sw +sw +sV +sY +qK +qK +sY +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +rJ +ra +ua +qK +rJ +qZ +qX +qK +qK +qK +qK +qK +qK +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +qK +qK +qZ +qK +qK +qK +qK +qK +qK +qZ +qK +qK +qK +qK +qZ +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qN +qM +ri +rj +mn +hq +hq +hq +hq +hq +hq +hj +xk +xk +xk +xk +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xq +xk +xk +xk +xw +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(141,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +cD +bJ +bJ +do +bn +ey +eN +fb +fr +bn +fH +bJ +bJ +bJ +bn +bn +bn +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +gP +jM +jM +jM +jM +jM +jM +jM +jM +jM +gP +hq +hq +hq +hq +nk +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +nD +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +qK +qX +rW +qK +qK +qK +qK +qK +qK +qK +qK +qK +rQ +qK +qK +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +qK +qX +qK +qX +qY +qK +qK +qK +qK +qK +qK +qY +qK +qK +rH +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +nk +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +qK +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(142,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +de +de +bn +bn +dd +eO +bJ +bJ +bn +bn +fO +fO +bn +bn +bn +aa +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +gP +gP +gP +kR +gP +kR +gP +kR +gP +gP +gP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pe +oi +gP +no +pe +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +su +oi +gP +no +su +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +ug +oi +gP +no +ug +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +vj +oi +gP +no +vj +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(143,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bG +cE +bJ +bJ +bn +em +bJ +bJ +bJ +fs +cc +bn +bJ +bJ +cc +gk +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +gP +gP +kS +gP +lB +gP +kS +gP +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(144,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bI +cF +bJ +dt +bn +em +bJ +bJ +bJ +bJ +fy +bn +el +bJ +cc +gm +aa +aa +aa +aa +hj +hz +hE +hE +hq +hq +hq +hq +hE +hE +hz +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +gP +gP +gP +gP +gP +gP +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(145,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cG +bJ +du +bn +bn +bJ +bJ +bJ +cH +bn +bn +bJ +bJ +cc +bn +bn +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(146,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +cg +bJ +bJ +bJ +dS +bn +bn +bn +bn +bn +bn +bJ +bJ +bJ +bJ +gC +bn +bn +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +od +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +od +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +rX +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rX +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +tT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tT +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +vk +oi +gP +no +vk +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mO +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mO +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(147,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +ch +cH +df +bJ +dT +bn +bL +bL +bL +bL +bn +fI +bJ +bJ +cH +gD +bn +bn +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +rx +rD +rx +rx +rx +rx +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mB +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +mE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(148,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bn +bn +bn +bn +bn +bn +bn +bM +ci +ci +dg +bn +bn +bn +bn +bn +bn +bn +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +mJ +mJ +mJ +mJ +mJ +nm +nm +nl +mJ +mJ +mJ +nl +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +rY +mD +rC +rC +rC +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +rx +rx +ry +rN +ry +ry +ry +ry +rx +ry +ry +rx +rx +rx +rx +rD +rx +rx +rx +mF +qz +hq +hq +hq +ut +ut +ut +hq +hq +hq +hq +hq +hq +hq +ms +mC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mF +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +ms +mC +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mF +qz +hq +hq +hq +hq +hq +wA +hq +wL +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(149,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bL +bL +bL +bL +bn +bn +aa +aa +aa +aa +aa +aa +bn +bn +bL +bL +bL +bL +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mJ +mJ +mJ +mJ +nl +mK +nm +nn +nm +nm +mJ +mJ +mJ +mK +nl +mK +mK +mK +mJ +mJ +mJ +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +mD +rC +rC +rC +rC +rC +rC +mD +mD +mD +mD +mD +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rx +rD +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rM +ry +ry +ry +rx +rx +ry +ry +ry +gP +hq +hq +hq +gP +gP +kU +uJ +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wK +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(150,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +bn +bM +ci +ci +dg +bn +aa +aa +aa +aa +aa +aa +aa +aa +bn +bM +ci +ci +dg +bn +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +jM +jM +jM +jM +jM +jQ +hq +hq +hq +jQ +mJ +mJ +nl +mK +nm +oe +nm +oq +oq +oD +pz +nm +of +nm +mJ +mJ +nm +mJ +mJ +nl +mJ +jQ +hq +hq +hq +jQ +nl +mK +nm +oe +nm +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rY +mD +mD +rC +rC +rC +rC +rC +rC +mD +mD +rY +mD +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tk +tk +tk +jQ +hq +hq +hq +jQ +ry +rB +rz +rz +rF +rA +rA +rE +rz +rz +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rz +jQ +hq +hq +hq +jQ +kE +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wj +vI +vI +vI +xf +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(151,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mJ +mK +mK +nm +oe +nm +nm +oq +oC +nF +nm +oq +oC +nm +nm +oq +oq +nm +mJ +mK +mJ +jR +hq +hq +hq +jR +mK +nm +oe +nm +nm +jR +hq +hq +hq +jR +rC +rC +rC +mD +mD +mD +rY +mD +mD +rC +rC +rC +rC +mD +rY +mD +mD +mD +rC +rC +rC +jR +hq +hq +hq +jR +tk +tr +tk +tk +tk +jR +hq +hq +hq +jR +rz +rz +rz +rK +ry +ry +rD +rx +rA +rA +rA +sn +sQ +rz +rz +rz +rz +rz +rz +rF +rA +jR +hq +hq +hq +jR +kE +uG +hc +hc +hc +jR +hq +hq +hq +jR +rC +rC +rC +rC +mD +mD +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wk +vI +vI +vI +xg +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(152,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +jM +jM +jM +kg +kg +jS +hq +hq +hq +jS +mJ +mJ +mJ +nm +nm +nm +os +of +oq +oe +nm +oq +pp +oC +nm +nm +nm +oe +nm +mJ +mJ +jS +hq +hq +hq +jS +mJ +nm +nm +rb +os +jS +hq +hq +hq +jS +rC +rC +rC +mD +rY +mD +mD +rY +mD +rC +rC +rC +rC +mD +sL +mD +mD +rC +rC +rC +rC +jS +hq +hq +hq +jS +tk +tk +tk +tl +tk +jS +hq +hq +hq +jS +rz +rz +rz +rz +rz +rz +rM +rx +rD +rx +sb +rz +rz +rz +rF +rA +rA +rA +rA +rx +rx +jS +hq +hq +hq +jS +kE +uG +uG +hc +hc +jS +hq +hq +hq +jS +rC +rC +rC +rC +mD +rY +mD +mD +rY +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wl +vI +vI +vI +wl +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(153,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mJ +mJ +mJ +mJ +mJ +oq +oq +oq +oC +nm +nn +nm +nm +oq +nm +oC +nm +mJ +mJ +mK +mJ +gP +hq +hq +hq +gP +mJ +mJ +mJ +oq +oq +gP +hq +hq +hq +gP +rC +rC +rC +rC +rY +se +mD +rC +rY +rC +rC +rC +rC +rC +mD +rY +mD +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tk +tk +gP +hq +hq +hq +gP +rA +rA +rI +rA +rE +rz +rz +rG +rx +ry +rB +rz +rF +rA +rx +rx +tU +rD +rx +rx +rx +gP +hq +hq +hq +gP +kE +hc +uG +hc +hc +gP +hq +hq +hq +gP +rC +rC +rC +rC +mD +mD +mD +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +wj +vI +vI +vI +xh +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(154,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +lD +jM +mj +hq +hq +hq +jQ +mJ +mJ +nm +nn +mJ +mJ +oC +oq +os +pp +nm +oq +nm +nm +oq +nm +mJ +mJ +mK +mJ +mJ +jQ +hq +hq +hq +jQ +nm +nn +mJ +mJ +oC +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tr +tk +tk +jQ +hq +hq +hq +jQ +rx +rx +rx +rx +rx +rE +rz +rM +rB +rz +rz +rz +rG +rx +rx +rx +rx +rx +rx +ry +ry +jQ +hq +hq +hq +jQ +kE +uH +hc +hc +hc +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rY +mD +rY +mD +rY +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wm +vI +vI +vI +xi +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(155,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mx +mJ +mJ +nm +nm +mJ +mJ +nm +nE +oq +oq +oC +nm +oq +pp +oq +nm +nm +mJ +nl +mJ +mJ +mx +hq +hq +hq +qD +nm +rb +mJ +mJ +nm +qD +hq +hq +hq +rw +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rw +hq +hq +hq +te +tk +tk +tk +tk +tk +te +hq +hq +hq +tJ +rx +rx +rx +rD +rx +sb +rz +rz +rz +rz +rF +rA +rx +rx +rx +rD +rx +rx +rB +rz +rz +tJ +hq +hq +hq +jR +kE +kE +uG +hc +hc +jR +hq +hq +hq +uQ +rC +rC +rC +rC +rC +mD +mD +mD +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +uQ +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wl +vI +vI +vI +wl +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(156,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +lD +jM +mj +hq +hq +hq +jS +mJ +mJ +nn +nE +mJ +mJ +nm +nm +oq +nm +nm +oD +oq +oq +nm +mJ +mJ +mJ +mJ +mJ +nm +jS +hq +hq +hq +jS +nn +nE +mJ +mJ +nm +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +tl +tk +tk +tk +tk +jS +hq +hq +hq +jS +rx +rx +rD +rx +tU +rx +rA +rA +rA +rA +rx +tX +rD +rx +rx +rx +rx +rB +rz +rz +rF +jS +hq +hq +hq +jS +kE +kE +hc +hc +hc +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +mD +mD +mD +uZ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wj +vI +vI +vI +xh +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +aa +xl +xr +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(157,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kh +jM +jM +kg +jM +mj +hq +hq +hq +gP +mJ +mJ +nm +nm +mJ +mJ +nn +nm +mJ +nm +nE +nm +os +oC +os +nE +mJ +mJ +mJ +nm +oe +gP +hq +hq +hq +gP +nm +nm +mJ +nm +nn +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tk +tk +gP +hq +hq +hq +gP +ry +ry +ry +rx +rx +rx +rx +rx +ry +ry +ry +ry +ry +ry +rx +rx +rB +rz +rz +rF +rx +gP +hq +hq +hq +gP +kE +kE +uH +uG +hc +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +wm +vI +vI +vI +xi +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +aa +xl +xs +xt +ac +aa +aa +aa +aa +aa +aa +aa +"} +(158,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kh +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mJ +mJ +nm +nF +nm +nm +nE +mJ +mJ +nm +mJ +nm +nm +oq +oq +nm +nm +nn +nF +nm +nm +kU +hq +hq +hq +jQ +nm +nF +nm +nm +nE +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +kU +hq +hq +hq +jQ +tk +tk +tA +tk +tr +jQ +hq +hq +hq +jQ +rz +rz +rz +rM +ry +ry +rN +rB +rz +rz +rz +rz +rz +rz +rM +rB +rz +rz +rF +rx +rx +kU +hq +hq +hq +jQ +kE +kE +kE +hc +hc +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +kU +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vG +wl +vI +vI +vI +wl +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(159,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kh +jM +jM +kg +jM +mj +hq +hq +hq +jR +mJ +mJ +mJ +nm +of +nm +os +mJ +mJ +nm +mJ +mJ +or +nm +oC +os +nm +nm +nm +nm +nm +mX +hq +hq +hq +jR +nm +nm +rb +nm +os +jR +hq +hq +hq +jR +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mX +hq +hq +hq +jR +tk +tk +tk +tk +tk +jR +hq +hq +hq +jR +rA +rE +rz +rz +rz +rz +rz +rz +rz +rF +rI +rA +rE +rz +rz +rz +rz +rF +rx +rx +rx +mX +hq +hq +hq +jR +kE +kE +kE +hc +hc +jR +hq +hq +hq +jR +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mX +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +vG +vG +vG +wK +vG +vG +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(160,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kh +jM +jM +kg +jM +mj +hq +hq +hq +jS +mJ +mJ +mJ +nm +nF +nm +nm +mJ +mJ +nm +of +mJ +nm +oq +nm +nm +mJ +mK +nm +nm +nm +kU +hq +hq +hq +jS +mJ +nm +nF +nm +nm +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +mD +rY +mD +mD +rY +mD +rC +rC +rC +rC +rC +rC +rC +rC +kU +hq +hq +hq +jS +tk +tr +tk +tk +tk +jS +hq +hq +hq +jS +rx +rD +rA +rA +rA +rI +rA +rA +sn +ry +ry +ry +rx +rA +rA +rA +rA +rx +rx +rD +rx +kU +hq +hq +hq +jS +kE +kE +kE +uG +hc +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +kU +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +vI +vI +vG +vI +wF +vI +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(161,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kh +jM +jM +kg +jM +mj +hq +hq +hq +gP +mJ +mJ +mJ +mJ +mJ +nm +nF +os +mJ +nm +pz +mJ +nn +nE +nm +mJ +mJ +mK +nm +nm +nF +gP +hq +hq +hq +gP +mJ +mJ +mJ +nm +nF +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +mD +mD +rY +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tD +tk +gP +hq +hq +hq +gP +rx +ry +ry +rx +rD +rx +tX +sb +rz +rz +rz +rz +rM +rD +rx +rx +rx +rx +rx +rx +rD +nk +hq +hq +hq +gP +kE +kE +kE +hc +uG +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rY +mD +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +jQ +vI +kU +vI +vI +vI +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(162,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +kg +jM +jM +kg +jM +mj +hq +hq +hq +jQ +mJ +mJ +mJ +mJ +mJ +mJ +nm +nm +mJ +mJ +nm +mJ +nm +or +nF +mJ +mJ +nm +nm +mJ +nm +jQ +hq +hq +hq +jQ +mJ +mJ +mJ +mJ +nm +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +mD +mD +rY +sL +rY +mD +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tk +tk +tk +jQ +hq +hq +hq +jQ +rB +rz +rz +rM +rx +rx +rN +rB +rz +rF +rE +rz +rz +rM +ry +rx +rx +rx +tU +rx +rx +jQ +hq +hq +hq +jQ +kE +kE +kE +hc +uG +jQ +hq +hq +hq +jQ +rC +rC +rC +mD +mD +uZ +rC +rC +rC +rC +rC +uZ +mD +mD +mD +mD +mD +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jR +vI +wB +wv +vI +vI +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(163,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +kg +jM +jM +kg +jM +mj +hq +hq +hq +mx +mJ +mJ +nm +nm +mJ +nm +oD +nm +mJ +mJ +nm +mJ +nm +nm +mJ +mJ +oe +nm +mJ +mJ +mJ +mx +hq +hq +hq +qD +nm +rb +mJ +nm +oD +qD +hq +hq +hq +rw +rC +rC +rC +rC +rC +rC +rC +mD +rY +mD +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rw +hq +hq +hq +te +tk +tk +tk +tk +tk +te +hq +hq +hq +tJ +rz +rz +rz +rz +rM +rB +rz +rz +rz +rG +rx +rE +rz +rz +rz +rM +rx +rD +rx +rD +rx +tJ +hq +hq +hq +jR +kE +kE +kE +hc +hc +jR +hq +hq +hq +uQ +rC +rC +rC +mD +rY +mD +rC +rC +rC +rC +rC +mD +rY +mD +mD +rY +mD +rC +rC +rC +rC +uQ +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +jS +vI +kU +vI +vI +vI +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(164,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +kg +jM +jM +kg +jM +mj +hq +hq +hq +jS +mJ +mJ +nm +nm +nm +nm +nm +or +nm +mJ +mJ +mJ +mJ +of +nm +mJ +nm +mK +mJ +mJ +mJ +jS +hq +hq +hq +jS +nm +nm +nm +nm +nm +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +tk +tl +tk +tr +tk +jS +hq +hq +hq +jS +rz +rF +rE +rz +rz +rz +rz +rF +rA +rx +rx +rx +rA +rE +rz +rz +rM +ry +rx +rx +rx +jS +hq +hq +hq +jS +kE +kE +kE +kE +hc +jS +hq +hq +hq +jS +rC +rC +mD +mD +mD +rY +mD +rC +rC +rC +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vI +vI +vG +vI +vI +vI +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(165,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +kf +jM +jM +kg +jM +jM +hq +hq +hq +gP +mJ +mJ +nm +mJ +nm +or +nn +nF +nm +nl +mJ +mJ +nl +nl +mJ +mJ +nm +mJ +nm +nm +mJ +gP +hq +hq +hq +gP +nm +mJ +nm +or +nn +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +tk +tk +tk +tk +tk +gP +hq +hq +hq +gP +rz +rG +rx +rE +rz +rz +rz +rM +ry +ry +tU +rx +rD +rx +rE +rz +rz +rz +rM +rx +rx +gP +hq +hq +hq +gP +kE +kE +kE +kE +uG +gP +hq +hq +hq +gP +rC +rC +mD +mD +rY +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +vI +vI +vI +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(166,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +jQ +jM +jM +jM +kg +lL +jQ +hq +hq +hq +jQ +mK +mK +mJ +mJ +nm +os +oD +os +nm +mJ +mJ +nl +mJ +mJ +mJ +nm +oe +nm +nm +nl +mJ +jQ +hq +hq +hq +jQ +mJ +mJ +nm +os +oD +jQ +hq +hq +hq +jQ +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +tk +tk +tk +tk +tk +jQ +hq +hq +hq +jQ +rA +rx +rD +rx +rA +rE +rz +rz +rz +rz +rM +ry +rx +ry +ry +sQ +rz +rz +rz +rM +rx +jQ +hq +hq +hq +jQ +kE +kE +kE +kE +kE +jQ +hq +hq +hq +jQ +rC +rC +rC +mD +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +jQ +hq +hq +hq +jQ +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jQ +hq +hq +hq +vG +wn +vI +vI +vI +xj +vG +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(167,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +jR +jM +jM +jM +jM +jM +jR +hq +hq +hq +jR +mJ +mK +mJ +nm +nm +nm +nm +nm +nF +nm +mJ +mJ +mJ +mJ +nm +nm +nm +nn +mK +mJ +mJ +jR +hq +hq +hq +jR +mJ +nm +nm +nm +nm +jR +hq +hq +hq +jR +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jR +hq +hq +hq +jR +tk +tk +tk +tk +tk +jR +hq +hq +hq +jR +rx +rD +rx +rN +ry +rB +rz +rz +rz +rz +rz +rz +sy +rz +rz +rz +rz +rz +rz +rz +rM +jR +hq +hq +hq +jR +kE +kE +kE +kE +kE +jR +hq +hq +hq +jR +rC +rC +rC +rC +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +jR +hq +hq +hq +jR +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jR +hq +hq +hq +vG +wo +vI +vI +vI +xj +vG +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(168,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +jS +jM +jM +jM +jM +jM +jS +hq +hq +hq +jS +mJ +mJ +nl +nm +nm +os +nm +or +nm +nm +nm +mJ +nl +mJ +nm +nn +nm +nm +mJ +mJ +mJ +jS +hq +hq +hq +jS +mJ +nm +nm +nm +mJ +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +tk +tr +tk +tk +tk +jS +hq +hq +hq +jS +ry +ry +rB +rz +rz +rz +rz +rF +rA +rA +rE +rz +rz +rz +sW +rz +rz +rz +sW +rz +rz +jS +hq +hq +hq +jS +kE +kE +kE +kE +kE +jS +hq +hq +hq +jS +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +jS +hq +hq +hq +jS +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +jS +hq +hq +hq +vG +wp +vI +vI +vI +xj +vG +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(169,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +gP +gP +kU +ll +kU +gP +mi +hq +hq +hq +gP +mJ +mJ +nm +nm +mK +mK +nm +nm +nm +mJ +nl +mJ +mJ +mJ +oe +nm +nl +mK +mJ +mJ +mJ +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +rz +rz +rz +rz +rF +rA +rA +rx +rx +rD +rx +rA +rA +rI +rx +rA +rA +rA +rx +rA +rA +gP +hq +hq +hq +gP +gP +kU +uJ +kU +gP +gP +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +gP +gP +kU +mX +kU +gP +gP +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +vG +vG +vG +wK +vG +vG +vG +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(170,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +ji +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +mJ +mJ +mJ +mJ +nl +mJ +mJ +nm +mJ +mJ +mJ +mJ +nm +nm +nm +mJ +mJ +mJ +mJ +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rA +rA +rA +rD +rx +rx +rD +rx +rx +rx +rx +rx +rx +rx +rx +rD +rx +rx +rx +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +qx +qz +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mu +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +qx +qz +hq +hq +hq +hq +hq +wt +hq +hq +hq +hq +hq +hq +hq +mr +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(171,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ja +jg +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mJ +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rD +rx +rx +rx +rx +rx +rx +rD +rx +rx +rD +rx +rx +rx +rx +rx +rD +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mF +mE +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mB +mC +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mA +mz +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(172,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jb +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +od +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +od +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +rX +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +rX +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +tT +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +tT +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +vk +oi +gP +no +vk +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mP +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +mP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mN +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(173,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(174,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hA +hD +hD +hq +hq +hq +hq +hD +hD +hA +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jm +ka +jP +jp +jm +ka +jP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +kx +hq +hq +hq +lX +jY +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(175,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +jB +jC +kb +jE +jp +jH +kb +mg +jF +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jJ +jW +hq +hq +hq +hq +hq +jZ +jY +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(176,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jm +jC +jN +kc +jp +jp +jp +kc +jo +mg +jP +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pf +oi +gP +no +pf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sx +oi +gP +no +sx +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +uh +oi +gP +no +uh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +ju +jK +hq +hq +kZ +kZ +kZ +hq +hq +jZ +jY +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(177,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +nG +og +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +qe +qn +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +mD +uj +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jv +hq +hq +ky +qE +rc +rg +lY +hq +hq +jv +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(178,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hE +hE +hE +hE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jo +jE +jp +ke +jp +jp +jp +ke +jp +jH +jN +hq +hq +hq +hq +kU +nH +nG +og +ot +ot +ot +ot +ot +ot +ot +ot +ot +qe +qn +qr +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +rC +rC +rC +rC +rC +rC +sl +rC +rC +rC +rC +sl +rC +rC +rC +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +mD +mD +mD +mD +rC +rC +mD +mD +mD +rC +rC +rC +uj +mD +mD +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qE +qM +qM +qM +rg +mn +hq +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(179,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hB +hq +hq +hn +hC +hC +hI +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jp +jp +jp +jp +jp +lC +jp +jp +jp +jp +jp +hq +hq +hq +hq +mX +nI +nI +ou +ot +ot +pg +pg +pg +pg +ot +ot +ot +qf +nI +nI +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +rC +rC +rC +rC +sl +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +mD +mD +mD +rC +rC +mD +uj +mD +uj +mD +rC +rC +mD +mD +mD +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +mX +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +mX +hq +hq +hq +hq +hq +hq +jX +qF +qM +qM +qM +rr +mn +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(180,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gX +hc +gX +hq +hq +hq +hD +hD +hD +hD +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jm +jF +jp +kc +jp +jp +jp +kc +jp +jB +jP +hq +hq +hq +hq +kU +nJ +nK +oh +ot +ot +ot +ot +ot +ot +ot +ot +ot +qg +qo +nH +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +sl +rC +rC +rC +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +mD +mD +rC +rC +rC +rC +mD +mD +mD +rC +rC +uj +mD +mD +mD +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +kU +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +kU +hq +hq +hq +hq +hq +hq +jX +qG +qM +qM +qM +rj +mn +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(181,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +ai +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hb +gP +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +gP +gP +hn +hC +hI +gP +hn +hC +hI +gP +gP +hq +hq +hq +hq +jn +jD +jO +kd +kT +jp +jO +kd +kT +jn +jD +hq +hq +hq +hq +gP +nK +oh +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +ot +qg +qo +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +mD +mD +rC +rC +rC +rC +rC +rC +rC +rC +rC +rC +mD +mD +mD +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +hc +gP +hq +hq +hq +hq +jw +hq +hq +kC +qG +rd +rj +ma +hq +hq +jw +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(182,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hq +hq +hq +hq +jo +jG +jP +ke +jp +jp +jp +ke +jm +mh +jN +hq +hq +hq +hq +gP +no +nL +oi +gP +no +pf +oi +gP +no +pf +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +sx +oi +gP +no +sx +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +tW +oi +gP +no +uh +oi +gP +no +uh +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +no +nL +oi +gP +hq +hq +hq +hq +jx +jL +hq +hq +lc +lc +lc +hq +hq +ju +jK +hq +hq +hq +hq +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(183,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hp +hq +hq +hq +hq +hq +hq +hq +hq +ih +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +hh +hq +hq +hq +hq +hq +jH +jG +ka +jF +jp +jB +ka +mh +jE +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jx +jY +hq +hq +hq +hq +hq +jJ +jK +hq +hq +hq +hq +hq +hh +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(184,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hA +hE +hE +hq +hq +hq +hq +hE +hE +hA +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +hi +hq +hq +hq +hq +hq +hq +jo +kb +jN +jp +jo +kb +jN +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +jZ +kx +hq +hq +hq +lX +jW +hq +hq +hq +hq +hq +hq +hi +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(185,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gX +gX +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +hj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hj +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(186,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +hb +hc +hc +hb +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +hn +hC +hI +gP +jd +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mW +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(187,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +gX +gX +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jh +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +mL +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(188,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +jk +jl +jA +hq +hq +hq +hq +hq +hq +hq +jk +jl +jA +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +je +jj +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +hq +my +mM +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(189,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +gP +hn +hC +hI +gP +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +ac +aa +aa +aa +aa +aa +aa +aa +"} +(190,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ac +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab +aa +aa +aa +aa +aa +aa +aa +"} +(191,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(192,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(193,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(194,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(195,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(196,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} +(197,1,1) = {" +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +aa +"} diff --git a/maps/tether/submaps/space/_debrisfield.dm b/maps/tether/submaps/space/_debrisfield.dm index 3cf3126028..75be8e5fbc 100644 --- a/maps/tether/submaps/space/_debrisfield.dm +++ b/maps/tether/submaps/space/_debrisfield.dm @@ -62,4 +62,8 @@ icon_state = "debrisexplored" /area/tether_away/debrisfield/unexplored - icon_state = "debrisunexplored" \ No newline at end of file + icon_state = "debrisunexplored" + +/area/tether_away/debrisfield/derelict + icon_state = "debrisexplored" + forced_ambience = list('sound/ambience/tension/tension.ogg', 'sound/ambience/tension/horror.ogg') \ No newline at end of file diff --git a/maps/tether/submaps/space/pois/derelict.dmm b/maps/tether/submaps/space/pois/derelict.dmm index bc5616cfdb..628653a828 100644 --- a/maps/tether/submaps/space/pois/derelict.dmm +++ b/maps/tether/submaps/space/pois/derelict.dmm @@ -3,18 +3,6 @@ /turf/space, /area/tether_away/debrisfield/explored) "ab" = ( -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"ac" = ( -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"ad" = ( -/turf/simulated/wall/r_wall, -/area/tether_away/debrisfield/explored) -"ae" = ( -/turf/simulated/wall, -/area/tether_away/debrisfield/explored) -"af" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 @@ -25,8 +13,8 @@ }, /obj/structure/grille, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"ag" = ( +/area/tether_away/debrisfield/derelict) +"ac" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 @@ -34,8 +22,8 @@ /obj/structure/window/reinforced, /obj/structure/grille, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"ah" = ( +/area/tether_away/debrisfield/derelict) +"ad" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 @@ -45,8 +33,8 @@ }, /obj/structure/grille, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"ai" = ( +/area/tether_away/debrisfield/derelict) +"ae" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 8; @@ -57,7 +45,23 @@ }, /obj/structure/grille, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) +"af" = ( +/obj/structure/prop/alien/computer/camera, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"ag" = ( +/obj/structure/prop/alien/computer, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"ah" = ( +/obj/structure/prop/alien/dispenser, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"ai" = ( +/obj/structure/prop/alien/computer/camera/flipped, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) "aj" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -68,12 +72,62 @@ }, /obj/structure/grille, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) "ak" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/area/tether_away/debrisfield/explored) +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) "al" = ( +/obj/tether_away_spawner/debrisfield/derelict, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"am" = ( +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"an" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"ao" = ( +/turf/simulated/wall/r_wall, +/area/tether_away/debrisfield/derelict) +"ap" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/floor/tiled/techfloor, +/area/tether_away/debrisfield/derelict) +"aq" = ( +/turf/simulated/wall, +/area/tether_away/debrisfield/derelict) +"ar" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/wall, +/area/tether_away/debrisfield/derelict) +"as" = ( +/turf/simulated/floor/tiled/monotile, +/area/tether_away/debrisfield/derelict) +"at" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/monotile, +/area/tether_away/debrisfield/derelict) +"au" = ( +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"av" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /obj/structure/cable{ d1 = 2; @@ -81,327 +135,8 @@ icon_state = "2-4" }, /turf/simulated/floor/bluegrid, -/area/tether_away/debrisfield/explored) -"am" = ( -/obj/effect/map_effect/interval/effect_emitter/sparks/frequent, -/obj/effect/map_effect/interval/effect_emitter/smoke, -/obj/machinery/door/airlock/alien, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"an" = ( -/obj/effect/map_effect/interval/effect_emitter/sparks/frequent, -/obj/structure/door_assembly/door_assembly_alien, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"ao" = ( -/obj/structure/catwalk, -/turf/space, -/area/tether_away/debrisfield/explored) -"ap" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l"; - dir = 1 - }, -/turf/space, -/area/tether_away/debrisfield/explored) -"aq" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l"; - dir = 8 - }, -/turf/space, -/area/tether_away/debrisfield/explored) -"ar" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l"; - dir = 4 - }, -/turf/space, -/area/tether_away/debrisfield/explored) -"as" = ( -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"at" = ( -/obj/structure/shuttle/engine/heater, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"au" = ( -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"av" = ( -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) "aw" = ( -/turf/simulated/floor/tiled/monotile, -/area/tether_away/debrisfield/explored) -"ax" = ( -/turf/simulated/floor/tiled/monofloor, -/area/tether_away/debrisfield/explored) -"ay" = ( -/turf/simulated/floor/greengrid, -/area/tether_away/debrisfield/explored) -"az" = ( -/obj/item/weapon/grenade/empgrenade, -/obj/item/weapon/grenade/empgrenade, -/obj/item/weapon/grenade/empgrenade, -/turf/space, -/area/tether_away/debrisfield/explored) -"aA" = ( -/obj/structure/prop/prism, -/turf/simulated/floor/greengrid, -/area/tether_away/debrisfield/explored) -"aB" = ( -/obj/structure/prop/fake_ai, -/turf/simulated/floor/greengrid, -/area/tether_away/debrisfield/explored) -"aC" = ( -/turf/simulated/floor/tiled/steel_ridged, -/area/tether_away/debrisfield/explored) -"aD" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/monotile, -/area/tether_away/debrisfield/explored) -"aE" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/monofloor, -/area/tether_away/debrisfield/explored) -"aF" = ( -/mob/living/simple_mob/mechanical/infectionbot{ - faction = "derelict" - }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"aG" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/tiled/monofloor, -/area/tether_away/debrisfield/explored) -"aH" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"aI" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"aJ" = ( -/obj/structure/ghost_pod/manual/lost_drone, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"aK" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, -/turf/simulated/floor/tiled/monofloor, -/area/tether_away/debrisfield/explored) -"aL" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, -/mob/living/simple_mob/mechanical/corrupt_maint_drone{ - faction = "derelict" - }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"aM" = ( -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"aN" = ( -/mob/living/simple_mob/mechanical/infectionbot{ - faction = "derelict" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"aO" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, -/turf/simulated/floor/tiled/steel_ridged, -/area/tether_away/debrisfield/explored) -"aP" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"aQ" = ( -/obj/structure/cable{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"aR" = ( -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"aS" = ( -/mob/living/simple_mob/mechanical/infectionbot{ - faction = "derelict" - }, -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"aT" = ( -/turf/simulated/floor/tiled/neutral, -/area/tether_away/debrisfield/explored) -"aU" = ( -/obj/tether_away_spawner/debrisfield/derelict/mech_wizard, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"aV" = ( -/obj/structure/ghost_pod/manual/lost_drone/dogborg, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"aW" = ( -/obj/tether_away_spawner/debrisfield/derelict/mech_wizard, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"aX" = ( -/obj/effect/decal/remains/human, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"aY" = ( -/obj/structure/old_roboprinter, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"aZ" = ( -/obj/tether_away_spawner/debrisfield/derelict, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"ba" = ( -/obj/structure/prop/alien/computer/camera, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"bb" = ( -/obj/structure/prop/alien/computer, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"bc" = ( -/obj/structure/prop/alien/computer/camera/flipped, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"bd" = ( -/obj/structure/prop/alien/dispenser, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"be" = ( -/obj/structure/prop/alien/computer/camera, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bf" = ( -/obj/structure/prop/alien/power, -/obj/structure/cable{ - icon_state = "0-4" - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bg" = ( -/obj/structure/prop/alien/computer/camera/flipped, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bh" = ( -/obj/structure/prop/alien/pod, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bi" = ( -/obj/machinery/porta_turret/alien{ - faction = "derelict"; - use_power = 0 - }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bj" = ( -/obj/effect/map_effect/interval/effect_emitter/sparks/frequent, -/obj/structure/door_assembly/door_assembly_alien, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"bk" = ( -/obj/random/humanoidremains, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bl" = ( -/obj/machinery/implantchair, -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"bm" = ( -/obj/machinery/dna_scannernew, -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"bn" = ( -/obj/machinery/replicator, -/turf/simulated/floor/tiled/neutral, -/area/tether_away/debrisfield/explored) -"bo" = ( -/obj/machinery/transhuman/synthprinter, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"bp" = ( -/obj/machinery/transhuman/resleever, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"bq" = ( -/obj/machinery/vr_sleeper/alien, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"br" = ( -/obj/machinery/auto_cloner, -/turf/simulated/floor/tiled/steel_ridged, -/area/tether_away/debrisfield/explored) -"bs" = ( -/obj/machinery/artifact, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bt" = ( -/obj/structure/prop/alien/power, -/obj/structure/cable{ - d2 = 2; - icon_state = "0-2"; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bu" = ( -/obj/machinery/door/airlock/hatch{ - icon_state = "door_locked"; - id_tag = null; - locked = 1; - name = "AI Core"; - req_access = list(16) - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"bv" = ( -/obj/machinery/door/airlock/alien, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"bw" = ( -/obj/machinery/door/airlock/alien, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bx" = ( -/obj/machinery/door/airlock/alien/locked, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"by" = ( -/obj/machinery/door/airlock/alien, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"bz" = ( -/obj/machinery/door/airlock/alien, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bA" = ( -/obj/machinery/bomb_tester, -/turf/simulated/floor/tiled/steel_ridged, -/area/tether_away/debrisfield/explored) -"bB" = ( -/obj/random/humanoidremains, -/obj/item/weapon/gun/energy/ionrifle, -/turf/simulated/floor/tiled/steel_ridged, -/area/tether_away/debrisfield/explored) -"bC" = ( /obj/structure/prop/alien/power, /obj/structure/cable, /obj/structure/cable{ @@ -413,52 +148,17 @@ icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/floor/bluegrid, -/area/tether_away/debrisfield/explored) -"bD" = ( -/obj/machinery/optable, -/obj/random/humanoidremains, -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"bE" = ( -/obj/random/humanoidremains, -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"bF" = ( -/obj/tether_away_spawner/debrisfield/derelict, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"bG" = ( -/obj/machinery/porta_turret/alien{ - faction = "derelict"; - use_power = 0 +/obj/machinery/power/fractal_reactor{ + alpha = 0; + invisibility = 101 }, -/turf/space, -/area/tether_away/debrisfield/explored) -"bH" = ( -/obj/random/tool/alien, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bI" = ( -/obj/random/energy, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"bJ" = ( +/turf/simulated/floor/bluegrid, +/area/tether_away/debrisfield/derelict) +"ax" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /turf/simulated/floor/tiled/monotile, -/area/tether_away/debrisfield/explored) -"bK" = ( -/obj/tether_away_spawner/debrisfield/derelict, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bL" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, -/mob/living/simple_mob/mechanical/corrupt_maint_drone{ - faction = "derelict" - }, -/turf/simulated/floor/tiled/steel_grid, -/area/tether_away/debrisfield/explored) -"bM" = ( +/area/tether_away/debrisfield/derelict) +"ay" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -467,8 +167,9 @@ }, /obj/item/weapon/grenade/empgrenade, /turf/simulated/floor/bluegrid, -/area/tether_away/debrisfield/explored) -"bN" = ( +/area/tether_away/debrisfield/derelict) +"az" = ( +/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /obj/structure/cable{ d1 = 1; d2 = 2; @@ -476,65 +177,315 @@ pixel_y = 0 }, /turf/simulated/floor/bluegrid, -/area/tether_away/debrisfield/explored) -"bO" = ( -/turf/template_noop, -/area/tether_away/debrisfield/explored) -"bP" = ( +/area/tether_away/debrisfield/derelict) +"aA" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/bluegrid, +/area/tether_away/debrisfield/derelict) +"aB" = ( +/obj/machinery/door/airlock/alien, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aC" = ( +/obj/machinery/door/airlock/alien, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aD" = ( +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aE" = ( +/obj/machinery/door/airlock/alien, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"aF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"aG" = ( +/turf/simulated/floor/tiled/monofloor, +/area/tether_away/debrisfield/derelict) +"aH" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/monofloor, +/area/tether_away/debrisfield/derelict) +"aI" = ( /obj/structure/old_roboprinter, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bQ" = ( +/turf/simulated/floor/tiled/monofloor, +/area/tether_away/debrisfield/derelict) +"aJ" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/turf/simulated/floor/tiled/monofloor, +/area/tether_away/debrisfield/derelict) +"aK" = ( +/turf/space, +/area/tether_away/debrisfield/derelict) +"aL" = ( +/obj/random/humanoidremains, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"aM" = ( +/obj/machinery/porta_turret/alien{ + faction = "derelict"; + use_power = 0 + }, +/turf/space, +/area/tether_away/debrisfield/derelict) +"aN" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l"; + dir = 8 + }, +/turf/space, +/area/tether_away/debrisfield/derelict) +"aO" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l"; + dir = 4 + }, +/turf/space, +/area/tether_away/debrisfield/derelict) +"aP" = ( +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"aQ" = ( +/obj/effect/decal/mecha_wreckage/gygax/adv, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"aR" = ( +/obj/effect/map_effect/interval/effect_emitter/sparks/frequent, +/obj/effect/map_effect/interval/effect_emitter/smoke, +/obj/machinery/door/airlock/alien, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"aS" = ( +/obj/effect/map_effect/interval/effect_emitter/sparks/frequent, +/obj/structure/door_assembly/door_assembly_alien, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"aT" = ( +/obj/machinery/door/airlock/alien, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"aU" = ( +/obj/random/tool/alien, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aV" = ( +/obj/random/energy, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aW" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aX" = ( +/mob/living/simple_mob/mechanical/infectionbot{ + faction = "derelict" + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"aY" = ( +/obj/random/humanoidremains, +/obj/item/weapon/gun/energy/ionrifle, +/turf/simulated/floor/tiled/steel_ridged, +/area/tether_away/debrisfield/derelict) +"aZ" = ( +/turf/simulated/floor/tiled/steel_ridged, +/area/tether_away/debrisfield/derelict) +"ba" = ( +/obj/machinery/bomb_tester, +/turf/simulated/floor/tiled/steel_ridged, +/area/tether_away/debrisfield/derelict) +"bb" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l"; + dir = 1 + }, +/turf/space, +/area/tether_away/debrisfield/derelict) +"bc" = ( +/obj/structure/prop/alien/computer/camera, /turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bR" = ( -/turf/template_noop, -/area/tether_away/debrisfield/unexplored) -"bS" = ( +/area/tether_away/debrisfield/derelict) +"bd" = ( +/obj/structure/prop/alien/power, +/obj/structure/cable{ + d2 = 2; + icon_state = "0-2"; + pixel_y = 0 + }, +/obj/machinery/power/fractal_reactor{ + alpha = 0; + invisibility = 101 + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"be" = ( +/obj/structure/prop/alien/power, +/obj/structure/cable{ + icon_state = "0-4" + }, +/obj/machinery/power/fractal_reactor{ + alpha = 0; + invisibility = 101 + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bf" = ( +/obj/structure/prop/alien/computer/camera/flipped, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bg" = ( +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bh" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bi" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bj" = ( +/obj/machinery/transhuman/resleever, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bk" = ( +/obj/machinery/artifact, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"bl" = ( +/mob/living/simple_mob/mechanical/infectionbot{ + faction = "derelict" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bm" = ( /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bT" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bW" = ( +/area/tether_away/debrisfield/derelict) +"bn" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"bY" = ( +/area/tether_away/debrisfield/derelict) +"bo" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bp" = ( +/obj/tether_away_spawner/debrisfield/derelict, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bq" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/wall, -/area/tether_away/debrisfield/explored) -"bZ" = ( -/obj/effect/alien/egg, -/obj/effect/alien/weeds, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"br" = ( +/obj/machinery/transhuman/synthprinter, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bs" = ( +/obj/tether_away_spawner/debrisfield/derelict/mech_wizard, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bt" = ( +/obj/machinery/vr_sleeper/alien, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"ca" = ( -/obj/effect/decal/mecha_wreckage/gygax/adv, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cb" = ( +/area/tether_away/debrisfield/derelict) +"bu" = ( +/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/mob/living/simple_mob/mechanical/corrupt_maint_drone{ + faction = "derelict" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bv" = ( +/obj/effect/decal/remains/human, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bx" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"by" = ( +/obj/tether_away_spawner/debrisfield/derelict, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bz" = ( +/obj/structure/old_roboprinter, +/turf/simulated/floor/tiled/steel_grid, +/area/tether_away/debrisfield/derelict) +"bA" = ( +/obj/machinery/auto_cloner, +/turf/simulated/floor/tiled/steel_ridged, +/area/tether_away/debrisfield/derelict) +"bB" = ( +/obj/structure/old_roboprinter, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bC" = ( /obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, /obj/structure/cable{ d1 = 1; @@ -542,44 +493,121 @@ icon_state = "1-4" }, /turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"cc" = ( +/area/tether_away/debrisfield/derelict) +"bD" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"cd" = ( +/area/tether_away/debrisfield/derelict) +"bE" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"ce" = ( +/area/tether_away/debrisfield/derelict) +"bF" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cf" = ( +/area/tether_away/debrisfield/derelict) +"bG" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cg" = ( -/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/area/tether_away/debrisfield/derelict) +"bH" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"bI" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/structure/cable{ d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/bluegrid, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"bJ" = ( +/obj/effect/map_effect/interval/effect_emitter/sparks/frequent, +/obj/structure/door_assembly/door_assembly_alien, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"bK" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"bL" = ( +/obj/random/humanoidremains, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"bM" = ( +/obj/machinery/door/airlock/alien, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"bN" = ( +/obj/machinery/door/airlock/alien, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bO" = ( +/turf/template_noop, /area/tether_away/debrisfield/explored) -"ch" = ( +"bP" = ( +/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bQ" = ( +/obj/machinery/door/airlock/alien, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"bR" = ( +/turf/template_noop, +/area/tether_away/debrisfield/unexplored) +"bS" = ( /obj/item/xenos_claw, /obj/structure/cable{ d1 = 1; @@ -588,116 +616,26 @@ pixel_y = 0 }, /turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"ci" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"ck" = ( -/obj/machinery/door/airlock/alien, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cl" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/area/tether_away/debrisfield/derelict) +"bT" = ( +/obj/structure/old_roboprinter, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"bU" = ( +/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/mob/living/simple_mob/mechanical/corrupt_maint_drone{ + faction = "derelict" }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cm" = ( -/obj/structure/cable, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -24 +/area/tether_away/debrisfield/derelict) +"bV" = ( +/obj/machinery/porta_turret/alien{ + faction = "derelict"; + use_power = 0 }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cn" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"co" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"cp" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"cq" = ( -/obj/random/humanoidremains, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cr" = ( -/obj/structure/prop/prism, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cs" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"ct" = ( -/obj/random/humanoidremains, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cu" = ( -/obj/machinery/door/airlock/alien, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cv" = ( -/obj/machinery/door/airlock/alien, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/reinforced, -/area/tether_away/debrisfield/explored) -"cw" = ( +/area/tether_away/debrisfield/derelict) +"bW" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -710,8 +648,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cx" = ( +/area/tether_away/debrisfield/derelict) +"bX" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -724,58 +662,89 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cy" = ( +/area/tether_away/debrisfield/derelict) +"bY" = ( +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"bZ" = ( +/obj/machinery/implantchair, +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"ca" = ( /obj/structure/cable{ d1 = 2; d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cz" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cA" = ( +/area/tether_away/debrisfield/derelict) +"cb" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cB" = ( +/area/tether_away/debrisfield/derelict) +"cc" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cd" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"ce" = ( /obj/structure/cable{ icon_state = "2-8" }, /turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"cC" = ( +/area/tether_away/debrisfield/derelict) +"cf" = ( +/mob/living/simple_mob/mechanical/infectionbot{ + faction = "derelict" + }, +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"cg" = ( +/obj/machinery/dna_scannernew, +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"ch" = ( /obj/structure/cable{ d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/floor/tiled/white, -/area/tether_away/debrisfield/explored) -"cD" = ( +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"ci" = ( /obj/structure/cable{ d1 = 1; d2 = 4; icon_state = "1-4" }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cE" = ( +/area/tether_away/debrisfield/derelict) +"cj" = ( /obj/structure/cable{ - icon_state = "1-8" + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cF" = ( +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"ck" = ( +/obj/machinery/optable, +/obj/random/humanoidremains, +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"cl" = ( /obj/machinery/door/airlock/alien, /obj/structure/cable{ d1 = 1; @@ -783,9 +752,52 @@ icon_state = "1-2"; pixel_y = 0 }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether_away/debrisfield/derelict) +"cm" = ( +/obj/random/humanoidremains, +/turf/simulated/floor/tiled/white, +/area/tether_away/debrisfield/derelict) +"cn" = ( +/obj/structure/prop/prism, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cG" = ( +/area/tether_away/debrisfield/derelict) +"co" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cp" = ( +/obj/structure/cable, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cq" = ( +/obj/structure/cable{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cr" = ( +/obj/machinery/replicator, +/turf/simulated/floor/tiled/neutral, +/area/tether_away/debrisfield/derelict) +"cs" = ( +/turf/simulated/floor/tiled/neutral, +/area/tether_away/debrisfield/derelict) +"ct" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -793,29 +805,104 @@ pixel_y = 0 }, /turf/simulated/floor/tiled/neutral, -/area/tether_away/debrisfield/explored) -"cH" = ( +/area/tether_away/debrisfield/derelict) +"cu" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/neutral, +/area/tether_away/debrisfield/derelict) +"cv" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tether_away/debrisfield/derelict) +"cw" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/neutral, +/area/tether_away/debrisfield/derelict) +"cx" = ( +/obj/structure/catwalk, +/turf/space, +/area/tether_away/debrisfield/derelict) +"cy" = ( +/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/turf/simulated/floor/tiled/steel_ridged, +/area/tether_away/debrisfield/derelict) +"cz" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cI" = ( +/area/tether_away/debrisfield/derelict) +"cA" = ( /obj/random/humanoidremains, /obj/structure/cable{ icon_state = "2-8" }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) +"cB" = ( +/obj/effect/alien/egg, +/obj/effect/alien/weeds, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cC" = ( +/obj/item/weapon/gun/energy/ionrifle, +/turf/space, +/area/tether_away/debrisfield/derelict) +"cD" = ( +/obj/structure/shuttle/engine/heater, +/turf/simulated/floor/reinforced, +/area/tether_away/debrisfield/derelict) +"cE" = ( +/obj/structure/prop/alien/pod, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cF" = ( +/obj/structure/ghost_pod/manual/lost_drone, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cG" = ( +/obj/item/weapon/grenade/empgrenade, +/obj/item/weapon/grenade/empgrenade, +/obj/item/weapon/grenade/empgrenade, +/turf/space, +/area/tether_away/debrisfield/derelict) +"cH" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cI" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/area/tether_away/debrisfield/derelict) "cJ" = ( +/obj/machinery/door/airlock/alien/locked, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cK" = ( +/obj/random/humanoidremains, /obj/structure/cable{ - icon_state = "2-8" + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cK" = ( +/area/tether_away/debrisfield/derelict) +"cL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -823,8 +910,75 @@ pixel_y = 0 }, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) "cM" = ( +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cN" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cO" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cP" = ( +/obj/structure/cable{ + d2 = 8; + icon_state = "0-8" + }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cQ" = ( +/obj/tether_away_spawner/debrisfield/derelict/corrupt_maint_swarm, +/turf/simulated/floor/tiled/dark, +/area/tether_away/debrisfield/derelict) +"cR" = ( +/obj/structure/ghost_pod/manual/lost_drone/dogborg, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cS" = ( +/obj/tether_away_spawner/debrisfield/derelict/mech_wizard, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cT" = ( +/obj/machinery/door/airlock/hatch{ + icon_state = "door_locked"; + id_tag = null; + locked = 1; + name = "AI Core"; + req_access = list(16) + }, +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) +"cU" = ( /obj/machinery/door/airlock/hatch{ icon_state = "door_locked"; id_tag = null; @@ -839,194 +993,63 @@ pixel_y = 0 }, /turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cN" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cO" = ( -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cP" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cQ" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cR" = ( -/obj/structure/cable{ - d2 = 8; - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"cS" = ( -/obj/machinery/power/apc/hyper{ - pixel_y = 25 - }, +/area/tether_away/debrisfield/derelict) +"cV" = ( +/turf/simulated/floor/greengrid, +/area/tether_away/debrisfield/derelict) +"cW" = ( /obj/structure/cable{ icon_state = "0-4" }, +/obj/machinery/power/apc{ + alarms_hidden = 1; + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, /turf/simulated/floor/greengrid, -/area/tether_away/debrisfield/explored) -"cT" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/tether_away/debrisfield/explored) -"cU" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"cV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"cW" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/neutral, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) "cX" = ( /obj/structure/cable{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/turf/simulated/floor/tiled/neutral, -/area/tether_away/debrisfield/explored) +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) "cY" = ( /obj/structure/cable{ - d1 = 1; - d2 = 8; icon_state = "1-8" }, -/turf/simulated/floor/tiled/neutral, -/area/tether_away/debrisfield/explored) +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) "cZ" = ( -/obj/random/humanoidremains, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/machinery/porta_turret/alien{ + faction = "derelict"; + use_power = 0 }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) +/turf/simulated/floor/plating, +/area/tether_away/debrisfield/derelict) "da" = ( -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 - }, -/turf/simulated/floor/tiled/dark, -/area/tether_away/debrisfield/explored) -"db" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"dc" = ( -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether_away/debrisfield/explored) -"dd" = ( -/obj/machinery/porta_turret/alien{ - faction = "derelict"; - use_power = 0 - }, +/obj/structure/prop/prism, /turf/simulated/floor/greengrid, -/area/tether_away/debrisfield/explored) -"de" = ( -/obj/machinery/porta_turret/alien{ - faction = "derelict"; - use_power = 0 - }, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"df" = ( -/obj/item/weapon/gun/energy/ionrifle, -/turf/space, -/area/tether_away/debrisfield/explored) -"dg" = ( -/obj/machinery/door/airlock/alien/locked, -/turf/simulated/floor/plating, -/area/tether_away/debrisfield/explored) -"dh" = ( +/area/tether_away/debrisfield/derelict) +"db" = ( /obj/structure/prop/blackbox/xenofrigate, /turf/simulated/floor/greengrid, -/area/tether_away/debrisfield/explored) +/area/tether_away/debrisfield/derelict) +"dc" = ( +/obj/machinery/porta_turret/alien{ + faction = "derelict"; + use_power = 0 + }, +/turf/simulated/floor/greengrid, +/area/tether_away/debrisfield/derelict) +"dd" = ( +/obj/structure/prop/fake_ai, +/turf/simulated/floor/greengrid, +/area/tether_away/debrisfield/derelict) (1,1,1) = {" bR @@ -1132,37 +1155,37 @@ aa aa aa aa -ap -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +bb +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa bR @@ -1205,38 +1228,38 @@ bR aa aa aa -ad -ad -ad -as -as -as -ae -as -as -as -bK -ae -bP -bP -ae -bK -as -as -as -as -ae -as -as -as -as -as -as -as -at -ae -ak -aa +ao +ao +ao +bg +bg +bg +aq +bg +bg +bg +bp +aq +bB +bB +aq +bp +bg +bg +bg +bg +aq +bg +bg +bg +bg +bg +bg +bg +cD +aq +cI +aK aa aa bR @@ -1277,40 +1300,40 @@ bR bR bR aa -ad -ad -ad -be -as -as -ae -as -ae -as -as -ae -ae -ae -as -as -ae -ae -ae -as -as -as -ae -as -as -ae -ae -ae -ae -as -as -at -ae -ak +ao +ao +ao +bc +bg +bg +aq +bg +aq +bg +bg +aq +aq +aq +bg +bg +aq +aq +aq +bg +bg +bg +aq +bg +bg +aq +aq +aq +aq +bg +bg +cD +aq +cI aa aa bR @@ -1351,40 +1374,40 @@ bR bR bR aa -ad -ad -ad -bt -bT -bT -bY -bT -bT -bT -bT -bY -bT -bT -cb -bQ -as -as -as -as -ae -as -as -as -as -ae -bK -as -ae -as -as -at -ae -ak +ao +ao +ao +bd +bh +bh +ar +bh +bh +bh +bh +ar +bh +bh +bC +bP +bg +bg +bg +bg +aq +bg +bg +bg +bg +aq +bp +bg +aq +bg +bg +cD +aq +cI aa aa bR @@ -1427,38 +1450,38 @@ bR aa aa aa -ad -ad -ad -ae -ae -as -as -as -as -as -as -ae -cc -as -ae -as -as -ae -ae -as -as -as -as -ae -as -as -as -as -at -ae -ak -aa +ao +ao +ao +aq +aq +bg +bg +bg +bg +bg +bg +aq +bD +bg +aq +bg +bg +aq +aq +bg +bg +bg +bg +aq +bg +bg +bg +bg +cD +aq +cI +aK aa aa bR @@ -1502,37 +1525,37 @@ aa aa aa aa -ap -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -cd -bz -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +bb +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +bE +bQ +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa bR @@ -1586,10 +1609,10 @@ aa aa aa aa -ad -cc -as -ad +ao +bD +bg +ao aa aa aa @@ -1660,10 +1683,10 @@ aa aa aa aa -ad -cc -as -ad +ao +bD +bg +ao aa aa aa @@ -1733,12 +1756,12 @@ aa aa aa aa -ad -ad -cc -as -ad -ad +ao +ao +bD +bg +ao +ao aa aa aa @@ -1806,14 +1829,14 @@ aa aa aa aa -ad -ad -ad -cc -as -ad -ad -ad +ao +ao +ao +bD +bg +ao +ao +ao aa aa aa @@ -1870,42 +1893,42 @@ aa aa aa aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ce -bv -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +bF +aE +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa bO @@ -1943,44 +1966,44 @@ aa aa aa aa -ad -ad -bB -aC -ac -ac -ac -ac -ae -ac -ac -ac -aM -ae -cf -av -ae -aH -ac -ac -ac -ac -ac -ae -bn -aT -aC -aC -aO -ae -bh -ac -ac -ac -ac -aP -ad -ad +ao +ao +aY +aZ +aD +aD +aD +aD +aq +aD +aD +aD +bi +aq +bG +au +aq +bT +aD +aD +aD +aD +aD +aq +cr +cs +aZ +aZ +cy +aq +cE +aD +aD +aD +aD +cQ +ao +ao aa aa bO @@ -1997,17 +2020,17 @@ aa aa aa aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa aa @@ -2017,45 +2040,45 @@ aa aa aa aa -ad -ad -aC -ae -ac -ae -bk -ac -ae -ac -bq -ae -aM -ae -cf -av -ae -ac -ac -ac -ac -ae -ac -ae -aT -aT -ae -ae -ae -ae -ae -ac -ae -ac -ac -ae -ad -ad -ad +ao +ao +aZ +aq +aD +aq +aW +aD +aq +aD +bt +aq +bi +aq +bG +au +aq +aD +aD +aD +aD +aq +aD +aq +cs +cs +aq +aq +aq +aq +aq +aD +aq +aD +aD +aq +ao +ao +ao aa aa bO @@ -2071,17 +2094,17 @@ aa aa aa aa -ad -aw -aw -aw -aw -ac -ac -ax -ax -ax -ad +ao +as +as +as +as +aD +aD +aG +aG +aG +ao aa aa aa @@ -2091,46 +2114,46 @@ aa aa aa aa -ad -ac -ac -ac -ac -ae -ac -ac -ac -ac -ac -ac -aM -ae -cf -av -ae -aL -ac -ae -ac -ac -ac -ae -aT -cW -cF -cl -cl -cF -cl -cl -cl -cZ -cD -ab -bu -ab -ad -ad +ao +aD +aD +aD +aD +aq +aD +aD +aD +aD +aD +aD +bi +aq +bG +au +aq +bU +aD +aq +aD +aD +aD +aq +cs +cu +aC +ch +ch +aC +ch +ch +ch +cK +ci +aP +cT +aP +ao +ao aa aa bO @@ -2145,17 +2168,17 @@ aa aa aa aa -ad -aw -aw -ae -ae -ac -ac -ae -ae -ax -ad +ao +as +as +aq +aq +aD +aD +aq +aq +aG +ao aa aa aa @@ -2165,47 +2188,47 @@ aa aa aa aa -ad -ac -ae -ac -ac -ac -ac -ac -bk -ae -ae -ae -aM -ae -cf -av -ae -ae -ac -ae -ae -ac -ac -ae -aT -cX -ae -ac -bk -bw -ac -ac -ac -ac -da -ab -ad -ab -ab -ad -ad +ao +aD +aq +aD +aD +aD +aD +aD +aW +aq +aq +aq +bi +aq +bG +au +aq +aq +aD +aq +aq +aD +aD +aq +cs +cv +aq +aD +aW +aB +aD +aD +aD +aD +cM +aP +ao +aP +aP +ao +ao aa aa bO @@ -2219,68 +2242,68 @@ aa aa aa aa -ad +ao +at +as +as +aq aD -aw -aw -ae -ac -ac -ae -ax -ax -ad +aD +aq +aG +aG +ao aa aa aa -ae -am -ae +aq +aR +aq aa aa aa -ad -ac -ac -ac -ae -ae -ae -ac -ac -ac -ac -ac -aM -ae -cf -av -ae -ac -ac -ac -ac -ac -ac -bw -aT -cX -ae -aC -aC -ae -ac -ae -ab -ab -ae -ab -ad -ab -ab -de -ad -ad +ao +aD +aD +aD +aq +aq +aq +aD +aD +aD +aD +aD +bi +aq +bG +au +aq +aD +aD +aD +aD +aD +aD +aB +cs +cv +aq +aZ +aZ +aq +aD +aq +aP +aP +aq +aP +ao +aP +aP +cZ +ao +ao aa aa bO @@ -2293,810 +2316,810 @@ aa aa aa aa -ad -aw -bJ +ao +as +ax +at +aq +aD aD -ae -ac -ac -ae -aE -aK -ad -aa -aa aq -ae -ab -ae -aq -aa -aa -ad -bH -ac -ac -ae -bs -ac -ac -ae -ac -ac -ac -aM -ae -cf -av -ae -ac -cy -cl -cl -cl -cl -cF -cG -cY -ae -aO -aC -ae +aH aJ -ae -ab -ab -ae -aV -ad -ay -ay -ay -dd -ad -ad +ao +aa +aa +aN +aq +aP +aq +aN +aa +aa +ao +aU +aD +aD +aq +bk +aD +aD +aq +aD +aD +aD +bi +aq +bG +au +aq +aD +ca +ch +ch +ch +ch +aC +ct +cw +aq +cy +aZ +aq +cF +aq +aP +aP +aq +cR +ao +cV +cV +cV +dc +ao +ao aa aa bO "} (19,1,1) = {" aa -af -ai -ai -ai -ai -ad +ab ae ae ae ae -bw -bw -ae -ae -ae -ad +ao +aq +aq +aq +aq +aB +aB +aq +aq +aq +ao aa aa -ae -ae -an -ae -ae +aq +aq +aS +aq +aq aa aa -ad -ae -ae -bw -ae -ac -ac -ac -ac -ac -ae -ac -aM -ae -cf -av -ae -bw -cA -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -dg -dg -ad -ad -ad -ay -ay -ay -ay -dd -ad -ad +ao +aq +aq +aB +aq +aD +aD +aD +aD +aD +aq +aD +bi +aq +bG +au +aq +aB +cb +aq +aq +aq +aq +aq +ao +ao +ao +ao +ao +ao +ao +ao +cJ +cJ +ao +ao +ao +cV +cV +cV +cV +dc +ao +ao aa aa "} (20,1,1) = {" aa -ag -ba +ac +af +ak +ak +ak +ap au au au -bx -av -av -av -av -av -av -av -av -av -ad -aa -aa -ae -ab -ab -ab -ae -aa -aa -ad -bI -ac -ac -ae -ae -ae -ae -ac -ac -bs -ae -aZ -ae -cf -av -ae -ac -cJ -cD -ac -ac -cr -bi -ad +au +au +au +au +au +au +ao +aK +aK +aq +aP +aP +aP +aq +aK +aK +ao +aV +aD +aD +aq +aq +aq +aq +aD +aD +bk +aq +by +aq +bG +au +aq +aD +cc +ci +aD +aD +cn +bV +ao +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +ao +cV +cV +cV +cV +cV +dc ao ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ad -ay -ay -ay -ay -ay -dd -ad -ad aa "} (21,1,1) = {" aa +ac ag -bb +ak +ak +ak +ap au au au -bx -av -av -av -av -av -av -av -av -av -ad -ad -bG -ae -ca -ab -ab -ae -bG -ad -ad -bk -ac -ac -ae -aN +au +au +au +au +au +au +ao +ao aM +aq +aQ +aP +aP +aq aM -aM -aM -aM -aZ -ae -ae -cf -av -ae +ao +ao +aW +aD +aD +aq +bl bi -ac -cJ -cl -cl -cD -ac -ad +bi +bi +bi +bi +by +aq +aq +bG +au +aq +bV +aD +cc +ch +ch +ci +aD ao -aa -aa -aa -aa -aa -aa -aa -aa -aa +cx +aK +aK +aK +aK +aK +aK +aK +aK +aK +cx +ao +cV +cV +cV +cV +cV +cV +dc ao -ad -ay -ay -ay -ay -ay -ay -dd -ad aa "} (22,1,1) = {" aa -ag -bd -au -au -au -ae -ae -ae -ae -ae -bv -bv -ae -ae -ae -ae -ad -ad -ae -ae -bw -ae -ae -ad -ad -ad -ae -bw -bw -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -bv -bv -ae -ae -ae -ae -ae -ae -cz ac -ad +ah +ak +ak +ak +aq +aq +aq +aq +aq +aE +aE +aq +aq +aq +aq ao -aa -aa -aa -aa -aa -aa -aa -aa -aa ao -ad -ay -ay -aA -aA -ay -ay -ay -ad +aq +aq +aB +aq +aq +ao +ao +ao +aq +aB +aB +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aE +aE +aq +aq +aq +aq +aq +aq +cd +aD +ao +cx +aK +aK +aK +aK +aK +aK +aK +aK +aK +cx +ao +cV +cV +da +da +cV +cV +cV +ao aa "} (23,1,1) = {" aa +ac ag -bb -au -bF -aQ -ae +ak al -bM -bN -bw -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -db -ch -ci -cw -ci -ci -ci -ck -cV -cm -ad -ao -aa -aa -aa -df -az -az -aa -aa -aa -ao -ad +am +aq +av ay -ay -dh +aA aB -ay -ay +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +bH +bS +aF +bW +aF +aF +aF +cl +co +cp +ao +cx +aK +aK +aK +cC +cG +cG +aK +aK +aK +cx +ao +cV +cV +db dd -ad +cV +cV +dc +ao aa "} (24,1,1) = {" aa +ac ag -bb -au -au -cT -bY -bC -cg -bN -cF -ci -ci -ci -ci -ci -ci -cq -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -ci -cU -ci -ci -ci -ci -ci -ci -dc -ci -ci -cx -ci -ci -ci -ck +ak +ak +an +ar +aw +az +aA +aC +aF +aF +aF +aF +aF +aF +aL +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +aF +bq +aF +aF +aF +aF +aF +aF +bI +aF +aF +bX +aF +aF +aF cl -cD -ad +ch +ci ao -aa -aa -aa -aa -az -az -aa -aa -aa +cx +aK +aK +aK +aK +cG +cG +aK +aK +aK +cx ao -ad -ay -ay -dh -aB -ay -ay +cV +cV +db dd -ad +cV +cV +dc +ao aa "} (25,1,1) = {" aa -ag -bd -au -au -au -ae -ae -ae -ae -ae -bv -bv -ae -ae -ae -ae -ad -ad -ae -ae -bw -ae -ae -ad -ad -ad -ae -bw -bw -ae -ae -ae -ae -ae -ae -ae -ae -ae -ae -bj -bv -ae -ae -ae -ae -ae -ae -bk -cz -ad +ac +ah +ak +ak +ak +aq +aq +aq +aq +aq +aE +aE +aq +aq +aq +aq ao -aa -aa -aa -aa -aa -aa -aa -aa -aa ao -ad -ay -ay -aA -aA -ay -ay -ay -ad +aq +aq +aB +aq +aq +ao +ao +ao +aq +aB +aB +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +bJ +aE +aq +aq +aq +aq +aq +aq +aW +cd +ao +cx +aK +aK +aK +aK +aK +aK +aK +aK +aK +cx +ao +cV +cV +da +da +cV +cV +cV +ao aa "} (26,1,1) = {" aa +ac ag -bb +ak +ak +ak +ap au au au -bx -av -av -av -av -av -av -av -av -av -ad -ad -bG -ae +au +au +au +au +au +au +ao +ao +aM +aq +aQ +aP +aP +aq +aM +ao +ao +aX +aD +aW +aD +aD +aD +aD +aU +aq +bu +bz +bz +aq +bK +au +aq +bV ca -ab -ab -ae -bG -ad -ad -aF -ac -bk -ac -ac -ac -ac -bH -ae -bL -aY -aY -ae -cs -av -ae -bi -cy -cl -cl -cl -cl -cE -ad +ch +ch +ch +ch +cq ao -aa -aa -aa -aa -aa -aa -aa -aa -aa +cx +aK +aK +aK +aK +aK +aK +aK +aK +aK +cx +ao +cV +cV +cV +cV +cV +cV +dc ao -ad -ay -ay -ay -ay -ay -ay -dd -ad aa "} (27,1,1) = {" aa -ag -bc +ac +ai +ak +ak +ak +ap au au au -bx -av -av -av -av -av -av -av -av -av -ad +au +au +au +au +au +au +ao aa aa -ae -ab -ab -ab -ae +aq +aP +aP +aP +aq aa aa -ad -aF -ac -ac -ac -ac -ac -ac -ac -ae +ao aX -aM -aM -ae -cs -av -ae -ac -cz -ac -ac -ac -cr +aD +aD +aD +aD +aD +aD +aD +aq +bv bi -ad +bi +aq +bK +au +aq +aD +cd +aD +aD +aD +cn +bV +ao +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +cx +ao +cV +cV +cV +cV +cV +dc ao ao -ao -ao -ao -ao -ao -ao -ao -ao -ao -ad -ay -ay -ay -ay -ay -dd -ad -ad aa "} (28,1,1) = {" aa -ah +ad aj aj aj aj -ad -ae -ae -ae -ae -bw -bw -ae -ae -ae -ad +ao +aq +aq +aq +aq +aB +aB +aq +aq +aq +ao aa aa -ae -ae -by -ae -ae +aq +aq +aT +aq +aq aa aa -ad -ae -ae -ae -ae -ae -ae -ac -ac -ac -aM -bL -bL -ae -cs -av -ae -bw -cA -ae -ae -ae -ae -ae -ad -ad -ad -ad -ad -ad -ad -ad -dg -dg -ad -ad -ad -ay -ay -ay -ay -dd -ad -ad +ao +aq +aq +aq +aq +aq +aq +aD +aD +aD +bi +bu +bu +aq +bK +au +aq +aB +cb +aq +aq +aq +aq +aq +ao +ao +ao +ao +ao +ao +ao +ao +cJ +cJ +ao +ao +ao +cV +cV +cV +cV +dc +ao +ao aa aa "} @@ -3107,69 +3130,69 @@ aa aa aa aa -ad +ao +at +as +as +aq aD -aw -aw -ae -ac -ac -ae -aG -aG -ad +aD +aq +aI +aI +ao aa aa -ar -ae -ab -ae -ar +aO +aq +aP +aq +aO aa aa -ad -bH -ac -ac -ac -bH -ae -ac -ac -ae -ae -ae -ae -ae -cs -av -ae -aR +ao +aU +aD +aD +aD +aU +aq +aD +aD +aq +aq +aq +aq +aq +bK +au +aq +bY +ce +cj +cj +cj +cj +aC +ct +ct +ch +ci cB -cC -cC -cC -cC -cF -cG -cG -cl -cD -bZ -ae -ac -ac -ac -ac -ac -bs -ad -cS -ay -ay -dd -ad -ad +aq +aD +aD +aD +aD +aD +bk +ao +cW +cV +cV +dc +ao +ao aa aa bO @@ -3181,68 +3204,68 @@ aa aa aa aa -ad -aw -aw +ao +as +as +at +aq aD -ae -ac -ac -ae -ax -ax -ad +aD +aq +aG +aG +ao aa aa aa -ae -by -ae +aq +aT +aq aa aa aa -ad -ac -ac -ae -ac -ac -ac -bk -ac -ac -ac -ac -ac -ae +ao +aD +aD +aq +aD +aD +aD +aW +aD +aD +aD +aD +aD +aq +bK +au +aq +bY +bY +bY +bY +bY +bY +aB cs -av -ae -aR -aR -aR -aR -aR -aR -bw -aT -aT -ac -cH -ac -ae -ac -bk -ac -ac -ac -ac -ad -cN -ab -de -ad -ad +cs +aD +cz +aD +aq +aD +aW +aD +aD +aD +aD +ao +cX +aP +cZ +ao +ao aa aa bO @@ -3255,17 +3278,17 @@ aa aa aa aa -ad -aw -aw -ae -ae -ac -ac -ae -aK -aK -ad +ao +as +as +aq +aq +aD +aD +aq +aJ +aJ +ao aa aa aa @@ -3275,47 +3298,47 @@ aa aa aa aa -ad -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ae -ct -av -ae -aR -ae -bD -ae -bE -aR -ae -aT -aT -ae -cI -cl -cF -cl -cD -ae -ae -ae -ae -ad -cN -ab -ad -ad +ao +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aD +aq +bL +au +aq +bY +aq +ck +aq +cm +bY +aq +cs +cs +aq +cA +ch +aC +ch +ci +aq +aq +aq +aq +ao +cX +aP +ao +ao aa aa bO @@ -3329,17 +3352,17 @@ aa aa aa aa -ad -aw -aw -aw -aw -ac -ac -ax -ax -ax -ad +ao +as +as +as +as +aD +aD +aG +aG +aG +ao aa aa aa @@ -3349,46 +3372,46 @@ aa aa aa aa -ad -ac -ac -ae -ac -ac -ae -ae -ae -ae -ae -ac -ae -ae +ao +aD +aD +aq +aD +aD +aq +aq +aq +aq +aq +aD +aq +aq +bK +au +aq +bY +cf +aq +cf +bY +bY +aq cs -av -ae -aR -aS -ae -aS -aR -aR -ae -aT -aT -ae -ae -ae -ae -ac -cJ -cF -cK -cP -cK -cM -cO -ad -ad +cs +aq +aq +aq +aq +aD +cc +aC +cL +cN +cL +cU +cY +ao +ao aa aa bO @@ -3403,17 +3426,17 @@ aa aa aa aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa aa @@ -3423,45 +3446,45 @@ aa aa aa aa -ad -ad -aC -ae -aM -aM -aM -aM -aM -bo -ae -aC -aC -ae +ao +ao +aZ +aq +bi +bi +bi +bi +bi +br +aq +aZ +aZ +aq +bK +au +aq +bY +bY +bY +bY +aq +bY +aq cs -av -ae -aR -aR -aR -aR -ae -aR -ae -aT -aT -aC -aC -aO -ae -ac -ac -ae -ab -cQ -ab -ad -ad -ad +cs +aZ +aZ +cy +aq +aD +aD +aq +aP +cO +aP +ao +ao +ao aa aa bO @@ -3497,44 +3520,44 @@ aa aa aa aa -ad -ad +ao +ao +ba +aq +bj +bi +bi +bi +bi +bs +aq +aZ bA -ae -bp -aM -aM -aM -aM -aW -ae -aC -br -ae +aq +bK +au +aq +bZ +cg +bY +bY +bY +cf +aq +cr cs -av -ae -bl -bm -aR -aR -aR -aS -ae -bn -aT -aC -aC -aO -ae -aI -ac -ae -ab -cR -aU -ad -ad +aZ +aZ +cy +aq +cH +aD +aq +aP +cP +cS +ao +ao aa aa bO @@ -3572,42 +3595,42 @@ aa aa aa aa -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -cu -bv -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +bM +aE +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa bO @@ -3656,14 +3679,14 @@ aa aa aa aa -ad -ad -ad -bW -as -ad -ad -ad +ao +ao +ao +bn +bg +ao +ao +ao aa aa aa @@ -3731,12 +3754,12 @@ aa aa aa aa -ad -ad -bW -as -ad -ad +ao +ao +bn +bg +ao +ao aa aa aa @@ -3806,10 +3829,10 @@ aa aa aa aa -ad -bW -as -ad +ao +bn +bg +ao aa aa aa @@ -3880,10 +3903,10 @@ aa aa aa aa -ad -bW -as -ad +ao +bn +bg +ao aa aa aa @@ -3944,37 +3967,37 @@ aa aa aa aa -ap -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -cv -bz -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +bb +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +bN +bQ +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa bR @@ -4017,38 +4040,38 @@ bR aa aa aa -ad -ad -ad -bS -bT -bT -bT -bT -co -ae -bS -bT -cn -as -as -as -ae -bK -as -as -as -as -as -bK -ae -as -as -as -at -ae -ak -aa +ao +ao +ao +bm +bh +bh +bh +bh +bw +aq +bm +bh +bo +bg +bg +bg +aq +bp +bg +bg +bg +bg +bg +bp +aq +bg +bg +bg +cD +aq +cI +aK aa aa bR @@ -4089,40 +4112,40 @@ bR bR bR aa -ad -ad -ad -bf -as -bW -as -as -ae -as -bW -ae -bW -ae -as -as -ae -as -ae -ae -ae -as -as -as -ae -ae -ae -as -ae -as -as -at -ae -ak +ao +ao +ao +be +bg +bn +bg +bg +aq +bg +bn +aq +bn +aq +bg +bg +aq +bg +aq +aq +aq +bg +bg +bg +aq +aq +aq +bg +aq +bg +bg +cD +aq +cI aa aa bR @@ -4163,40 +4186,40 @@ bR bR bR aa -ad -ad -ad +ao +ao +ao +bf +bh +bo +aq bg -bT -cn -ae -as -ae -as -bW -ae -bW -ae -as -as -ae -as -as -as -as -as -ae -as -as -as -as -as -ae -as -as -at -ae -ak +aq +bg +bn +aq +bn +aq +bg +bg +aq +bg +bg +bg +bg +bg +aq +bg +bg +bg +bg +bg +aq +bg +bg +cD +aq +cI aa aa bR @@ -4239,38 +4262,38 @@ bR aa aa aa -ad -ad -ad -bK -ae -as -as -as -cp -bT -cn -ae -bQ -bQ -ae -as -as -as -as -as -ae -as -as -as -as -as -ae -as -at -ae -ak -aa +ao +ao +ao +bp +aq +bg +bg +bg +bx +bh +bo +aq +bP +bP +aq +bg +bg +bg +bg +bg +aq +bg +bg +bg +bg +bg +aq +bg +cD +aq +cI +aK aa aa bR @@ -4314,37 +4337,37 @@ aa aa aa aa -ap -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad -ad +bb +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao +ao aa aa bR diff --git a/maps/tether/submaps/tether_misc.dmm b/maps/tether/submaps/tether_misc.dmm index 0c6b76a601..e6c271724e 100644 --- a/maps/tether/submaps/tether_misc.dmm +++ b/maps/tether/submaps/tether_misc.dmm @@ -1,52 +1,8 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE "aa" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_l" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/supply/dock) -"ab" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/supply/dock) -"ac" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "burst_r" - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry{ - dir = 1 - }, -/area/supply/dock) -"ad" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_r"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade/centcom) -"ae" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade/centcom) -"af" = ( -/obj/structure/shuttle/engine/propulsion{ - icon_state = "propulsion_l"; - dir = 4 - }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/trade/centcom) +/obj/machinery/vending/coffee, +/turf/unsimulated/beach/sand, +/area/beach) "ag" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -3536,6 +3492,13 @@ }, /turf/simulated/shuttle/plating/airless, /area/shuttle/trade/centcom) +"iO" = ( +/obj/fiftyspawner/rods, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) "iP" = ( /obj/machinery/light{ dir = 4 @@ -6801,6 +6764,18 @@ icon_state = "lino" }, /area/antag/antag_base) +"pF" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) "pI" = ( /obj/machinery/door/airlock/vault{ name = "War Armory"; @@ -6926,12 +6901,12 @@ /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, -/obj/item/weapon/melee/energy/sword/red, -/obj/item/weapon/melee/energy/sword/red, -/obj/item/weapon/melee/energy/sword/red, -/obj/item/weapon/melee/energy/sword/red, -/obj/item/weapon/melee/energy/sword/red, -/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, /obj/machinery/recharger/wallcharger{ pixel_x = 5; pixel_y = 32 @@ -7481,6 +7456,15 @@ /area/shuttle/antag_space/base{ base_turf = /turf/unsimulated/floor/techfloor_grid }) +"qK" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) "qL" = ( /obj/effect/floor_decal/corner/yellow{ dir = 6 @@ -9614,6 +9598,15 @@ icon_state = "floor_red" }, /area/syndicate_station/start) +"ui" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/combat, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) "uj" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/snacks/tastybread, @@ -10010,8 +10003,2853 @@ icon_state = "floor_red" }, /area/syndicate_station/start) +"uU" = ( +/obj/item/weapon/tray{ + pixel_y = 5 + }, +/obj/structure/table/standard, +/obj/item/weapon/material/knife/butch, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"uX" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/brown, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"uY" = ( +/obj/structure/table/standard, +/obj/random/projectile, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"uZ" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"vq" = ( +/obj/structure/flight_right{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"vs" = ( +/obj/effect/floor_decal/asteroid, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"vt" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"vu" = ( +/obj/structure/toilet{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"vC" = ( +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/machinery/computer/security, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"vG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"vI" = ( +/obj/effect/landmark{ + name = "voxstart" + }, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"vK" = ( +/obj/structure/table/rack, +/obj/item/weapon/grenade/empgrenade, +/obj/item/weapon/grenade/flashbang, +/obj/item/weapon/grenade/spawnergrenade/manhacks, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"vX" = ( +/obj/item/weapon/bedsheet/clown, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"vY" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + icon_state = "intact"; + dir = 9 + }, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "ninja_shuttle"; + name = "interior access button"; + pixel_x = -25; + pixel_y = 25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"vZ" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"wa" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"wb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"we" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"wi" = ( +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"wj" = ( +/obj/structure/toilet, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"wq" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"wv" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/machinery/button/remote/blast_door{ + id = "ninjawindow"; + name = "remote shutter control"; + pixel_x = 0; + pixel_y = -25; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"wA" = ( +/obj/structure/table/bench/wooden, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"wE" = ( +/obj/item/weapon/bedsheet/green, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"wQ" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion"; + dir = 1 + }, +/turf/simulated/shuttle/plating/airless/carry, +/area/ninja_dojo/start) +"wS" = ( +/obj/item/robot_parts/l_leg, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"wU" = ( +/obj/machinery/suit_cycler/syndicate{ + locked = 0 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"wZ" = ( +/turf/unsimulated/floor{ + icon_state = "sandwater" + }, +/area/beach) +"xf" = ( +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"xm" = ( +/obj/item/clothing/glasses/night/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"xt" = ( +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xD" = ( +/obj/structure/flight_left{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"xG" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"xL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xQ" = ( +/obj/machinery/computer/shuttle_control/web/ninja{ + dir = 1; + icon = 'icons/obj/computer.dmi'; + icon_state = "flightcomp_center" + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"xR" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "spiderling"; + name = "dead spider" + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"xV" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"xW" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"xX" = ( +/obj/effect/landmark{ + name = "ninjastart" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"ya" = ( +/obj/structure/table/glass, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"yf" = ( +/obj/structure/table/bench/wooden, +/obj/effect/landmark{ + name = "ninjastart" + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"yl" = ( +/obj/machinery/teleport/station, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"yv" = ( +/obj/item/broken_device, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"yw" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"yA" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"yD" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/skipjack_station) +"yI" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"yL" = ( +/obj/item/weapon/storage/box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"yM" = ( +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"zb" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"zn" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/crossbow, +/obj/item/stack/rods{ + amount = 10 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/obj/item/weapon/beartrap, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"zs" = ( +/obj/item/weapon/bedsheet/rd, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"zv" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"zz" = ( +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/unsimulated/wall, +/area/beach) +"zL" = ( +/obj/structure/reagent_dispensers/fueltank, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"zT" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"Ab" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/reagent_containers/syringe/antiviral, +/obj/item/weapon/storage/firstaid/clotting, +/obj/item/stack/medical/splint, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Ac" = ( +/obj/structure/closet/crate, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"Af" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/space, +/area/space) +"Ai" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Ak" = ( +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"At" = ( +/obj/machinery/sleep_console, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"Av" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Aw" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ax" = ( +/turf/unsimulated/beach/coastline{ + density = 1; + opacity = 1 + }, +/area/beach) +"Az" = ( +/turf/unsimulated/beach/coastline, +/area/beach) +"AA" = ( +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"AB" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/suit/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/obj/item/clothing/head/helmet/space/vox/stealth, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"AF" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"AJ" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/supply/dock) +"AN" = ( +/obj/item/weapon/gun/launcher/pneumatic, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"AP" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"AV" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"AY" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"AZ" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Bd" = ( +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"Be" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/orange, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/skipjack_station) +"Bg" = ( +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Bh" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Bi" = ( +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Bj" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_northeast_lock"; + locked = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Bk" = ( +/obj/item/weapon/gun/energy/plasmastun, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Bo" = ( +/obj/machinery/bodyscanner{ + dir = 8 + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Bw" = ( +/turf/unsimulated/beach/water, +/area/beach) +"BC" = ( +/obj/machinery/teleport/station, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"BD" = ( +/obj/effect/overlay/palmtree_r, +/turf/unsimulated/beach/sand, +/area/beach) +"BE" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"BH" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + frequency = 1331; + id_tag = "skipjack_shuttle"; + pixel_x = -24; + req_access = list(150); + tag_airpump = "vox_east_vent"; + tag_chamber_sensor = "vox_east_sensor"; + tag_exterior_door = "vox_northeast_lock"; + tag_interior_door = "vox_southeast_lock" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "vox_east_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"BN" = ( +/obj/structure/table/steel, +/obj/machinery/recharger, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"BP" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade/centcom) +"Cf" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Cg" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_west_sensor"; + pixel_x = 25 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ch" = ( +/obj/structure/toilet{ + dir = 4 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Ci" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_l"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade/centcom) +"Cj" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Cl" = ( +/obj/structure/window/reinforced/tinted{ + dir = 1 + }, +/obj/structure/table/glass, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/item/weapon/towel{ + color = "#FF6666"; + name = "light red towel" + }, +/obj/random/soap, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Cu" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"CE" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"CG" = ( +/obj/structure/flora/tree/pine, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"CK" = ( +/obj/structure/bed/chair, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Db" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "ninja_shuttle_sensor"; + pixel_x = 0; + pixel_y = 28 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Dd" = ( +/obj/effect/floor_decal/carpet, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Dg" = ( +/obj/machinery/shower{ + dir = 8; + icon_state = "shower"; + pixel_x = -5; + pixel_y = -1 + }, +/obj/structure/curtain/open/shower/medical, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Dk" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/hop, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"Dw" = ( +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/food/snacks/chips, +/turf/unsimulated/beach/sand, +/area/beach) +"Dx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"DC" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/chem_dispenser/ninja, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"DF" = ( +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"DK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/suit/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/obj/item/clothing/head/helmet/space/vox/carapace, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"DM" = ( +/obj/structure/kitchenspike, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"DO" = ( +/obj/structure/flight_left, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"DZ" = ( +/obj/machinery/gibber, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Ec" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"Eo" = ( +/obj/structure/closet/crate, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/gloves/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/obj/item/clothing/shoes/magboots/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Ep" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/obj/item/clothing/mask/gas/swat/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Es" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/body_scanconsole, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Ev" = ( +/obj/structure/table/rack, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Ew" = ( +/obj/machinery/sleeper{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"EA" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"EF" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"EH" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/blue, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"EN" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"EU" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"EX" = ( +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"EZ" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Fa" = ( +/obj/structure/table/standard, +/turf/unsimulated/beach/sand, +/area/beach) +"Fl" = ( +/obj/structure/table/standard, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Fs" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Fw" = ( +/obj/item/weapon/rig/light/stealth, +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"FE" = ( +/obj/structure/flight_right, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"FF" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + pixel_x = -28 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"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) +"FM" = ( +/obj/item/target, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"FN" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/material/sword/katana, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"FO" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 4 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"FQ" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"FV" = ( +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"FX" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/item/weapon/storage/firstaid/adv, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"Ge" = ( +/obj/machinery/computer/shuttle_control/web/heist{ + icon = 'icons/obj/computer.dmi' + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Gi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"Gk" = ( +/obj/structure/table/steel, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Gq" = ( +/turf/unsimulated/wall, +/area/beach) +"Gw" = ( +/obj/effect/overlay/palmtree_l, +/turf/unsimulated/beach/sand, +/area/beach) +"Gx" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/space, +/area/space) +"Gz" = ( +/obj/structure/shuttle/engine/heater, +/obj/structure/window/reinforced{ + dir = 1 + }, +/turf/simulated/shuttle/plating/airless, +/area/skipjack_station/start) +"He" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Hf" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 6 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Hg" = ( +/obj/structure/table/rack, +/obj/random/rigsuit, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Hm" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Hq" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"HD" = ( +/obj/structure/table/steel_reinforced, +/obj/machinery/cell_charger, +/obj/random/powercell, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"HJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/bonesetter, +/obj/item/weapon/surgical/bonegel, +/obj/item/weapon/surgical/FixOVein, +/obj/item/stack/nanopaste, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"HL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced/full, +/obj/machinery/door/blast/shutters{ + density = 0; + dir = 2; + icon_state = "shutter0"; + id = "ninjawindow"; + name = "Blast Shutters"; + opacity = 0 + }, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"HN" = ( +/obj/structure/table/rack, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"HS" = ( +/obj/item/robot_parts/head, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"HX" = ( +/obj/machinery/recharger{ + pixel_y = 0 + }, +/obj/structure/table/steel_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Id" = ( +/turf/simulated/mineral, +/area/skipjack_station) +"Ig" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"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) +"Il" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "asteroid_dug" + }, +/area/skipjack_station) +"Ip" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_r" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/supply/dock) +"Ir" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 2; + start_pressure = 740.5 + }, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"Ix" = ( +/obj/item/weapon/bedsheet/hos, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"Iy" = ( +/obj/structure/closet/crate, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_casual, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/obj/item/clothing/under/vox/vox_robes, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"IA" = ( +/obj/machinery/space_heater, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken3" + }, +/area/ninja_dojo/dojo) +"IC" = ( +/obj/structure/table/standard, +/obj/item/device/paicard, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ID" = ( +/obj/item/pizzabox/meat, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"IG" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"IL" = ( +/obj/item/target/syndicate, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"IM" = ( +/obj/machinery/door/airlock/external{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"IP" = ( +/obj/structure/table/glass, +/obj/item/clothing/mask/balaclava/tactical{ + pixel_x = 2; + pixel_y = 2 + }, +/obj/item/clothing/mask/balaclava, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"IR" = ( +/obj/structure/closet/secure_closet/freezer/fridge, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"IS" = ( +/obj/machinery/airlock_sensor{ + frequency = 1331; + id_tag = "vox_east_sensor"; + pixel_x = -25 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"IW" = ( +/obj/structure/table/standard, +/obj/item/weapon/handcuffs/legcuffs, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"Jc" = ( +/turf/simulated/shuttle/wall/voidcraft/green, +/area/ninja_dojo/start) +"Je" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Jg" = ( +/obj/item/weapon/bedsheet/rainbow, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"Ji" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/fabricator/energy_net, +/obj/item/rig_module/vision/multi, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"Jk" = ( +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"Jp" = ( +/obj/structure/mirror/raider{ + pixel_x = -32 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"Jq" = ( +/obj/structure/ore_box, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Jt" = ( +/obj/item/clothing/mask/gas/swat{ + desc = "A close-fitting mask clearly not made for a human face."; + name = "\improper alien mask" + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Ju" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Jv" = ( +/obj/structure/table/wooden_reinforced, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Jz" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/cautery, +/obj/item/weapon/surgical/retractor, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/glass/bottle/stoxin, +/obj/item/weapon/reagent_containers/syringe, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"JE" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"JJ" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"JK" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_east_control"; + pixel_x = 22; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"JW" = ( +/turf/unsimulated/beach/water{ + density = 1; + opacity = 1 + }, +/area/beach) +"JX" = ( +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"JY" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1331; + master_tag = "vox_west_control"; + pixel_x = -22; + req_one_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Kh" = ( +/obj/item/weapon/bedsheet/orange, +/obj/structure/bed/padded, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"KH" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/computer/station_alert, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"KL" = ( +/obj/structure/table/rack, +/obj/item/weapon/melee/energy/sword/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/clothing/suit/space/pirate, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/pinpointer/shuttle/heist, +/obj/item/weapon/pinpointer/shuttle/heist, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"KN" = ( +/obj/machinery/computer/teleporter, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"KT" = ( +/obj/machinery/washing_machine, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"KX" = ( +/obj/structure/window/reinforced{ + dir = 4; + health = 1e+006 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"KZ" = ( +/obj/machinery/vending/hydroseeds, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Lb" = ( +/obj/structure/table/steel, +/obj/item/device/radio/uplink, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Li" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_east_vent" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Lm" = ( +/obj/machinery/floodlight, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ly" = ( +/obj/effect/floor_decal/carpet, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 10 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Lz" = ( +/obj/machinery/portable_atmospherics/canister/nitrogen, +/obj/item/weapon/tank/nitrogen, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LH" = ( +/obj/machinery/shower{ + dir = 1 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"LI" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/suit/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/obj/item/clothing/head/helmet/space/vox/pressure, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"LJ" = ( +/obj/item/seeds/potatoseed, +/obj/item/seeds/potatoseed, +/obj/item/seeds/ambrosiavulgarisseed, +/obj/item/weapon/material/minihoe, +/obj/item/weapon/beartrap, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LN" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LQ" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"LT" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_southeast_lock"; + locked = 0; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"LY" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/obj/effect/floor_decal/carpet{ + dir = 5 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"Mg" = ( +/turf/unsimulated/wall{ + desc = "That looks like it doesn't open easily."; + icon = 'icons/obj/doors/rapid_pdoor.dmi'; + icon_state = "pdoor1"; + name = "Shuttle Bay Blast Door" + }, +/area/skipjack_station) +"Ml" = ( +/turf/simulated/shuttle/wall/voidcraft/blue, +/area/ninja_dojo/start) +"Mq" = ( +/obj/structure/table/standard, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"Ms" = ( +/obj/item/xenos_claw, +/obj/item/organ/internal/brain/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Mx" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 + }, +/obj/structure/mirror{ + dir = 4; + pixel_x = -28; + pixel_y = 0 + }, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"MB" = ( +/obj/structure/table/steel_reinforced, +/obj/item/device/paicard, +/obj/item/device/pda/syndicate, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"MO" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"MQ" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ng" = ( +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken1" + }, +/area/ninja_dojo/dojo) +"Nj" = ( +/obj/item/clothing/head/collectable/paper, +/turf/unsimulated/beach/sand, +/area/beach) +"Nk" = ( +/obj/structure/table/standard, +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"No" = ( +/obj/item/weapon/beach_ball, +/turf/unsimulated/beach/sand, +/area/beach) +"Np" = ( +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Ns" = ( +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_outer"; + name = "Ship External Hatch"; + req_access = list(150) + }, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 8; + icon_state = "pdoor0"; + id = "blastninja"; + name = "Outer Airlock"; + opacity = 0 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Nt" = ( +/turf/unsimulated/beach/sand{ + density = 1; + opacity = 1 + }, +/area/beach) +"Ny" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"Nz" = ( +/turf/unsimulated/wall, +/area/ninja_dojo/dojo) +"ND" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/unsimulated/floor{ + icon_state = "steel_dirty" + }, +/area/skipjack_station) +"NT" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"NY" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/fancy/cigarettes, +/obj/item/weapon/flame/lighter/zippo, +/obj/item/clothing/gloves/yellow, +/obj/item/stack/material/steel{ + amount = 50 + }, +/obj/item/stack/material/glass{ + amount = 50 + }, +/obj/item/weapon/card/emag, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Od" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Oo" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/skipjack_station/start) +"Ow" = ( +/obj/structure/table/steel_reinforced, +/obj/item/rig_module/mounted/energy_blade, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"OF" = ( +/obj/machinery/microwave{ + pixel_x = -1; + pixel_y = 8 + }, +/obj/structure/table/steel, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"OH" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"OK" = ( +/obj/effect/wingrille_spawn/reinforced, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"OQ" = ( +/obj/effect/decal/cleanable/blood, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"OX" = ( +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/item/weapon/tool/crowbar, +/obj/item/device/suit_cooling_unit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"OZ" = ( +/obj/machinery/portable_atmospherics/canister/oxygen, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Pi" = ( +/obj/item/device/suit_cooling_unit, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"Pm" = ( +/obj/item/weapon/gun/launcher/crossbow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Po" = ( +/obj/effect/landmark{ + name = "voxstart" + }, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/skipjack_station) +"Pt" = ( +/obj/structure/table/steel_reinforced, +/obj/item/clothing/head/pirate, +/obj/item/clothing/glasses/thermal/plain/monocle, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Pw" = ( +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"PI" = ( +/turf/unsimulated/mineral, +/area/ninja_dojo/dojo) +"PK" = ( +/obj/structure/table/rack, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/suit/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/obj/item/clothing/head/helmet/space/vox/medic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"PL" = ( +/obj/structure/table/steel, +/obj/item/device/pda/syndicate, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"PQ" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_west_control"; + req_one_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"PS" = ( +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"PX" = ( +/obj/machinery/computer/station_alert, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"PY" = ( +/obj/machinery/embedded_controller/radio/airlock/airlock_controller{ + tag_airpump = "vox_west_vent"; + tag_exterior_door = "vox_northwest_lock"; + frequency = 1331; + id_tag = "vox_west_control"; + tag_interior_door = "vox_southwest_lock"; + pixel_x = 24; + req_access = list(150); + tag_chamber_sensor = "vox_west_sensor" + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 8; + frequency = 1331; + id_tag = "vox_west_vent" + }, +/obj/machinery/light/small, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Qb" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/obj/structure/window/reinforced/full, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Qw" = ( +/turf/unsimulated/wall{ + icon = 'icons/obj/doors/Dooruranium.dmi'; + icon_state = "door_closed"; + name = "Sealed Door" + }, +/area/ninja_dojo/dojo) +"QB" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"QC" = ( +/obj/machinery/door/airlock{ + icon = 'icons/obj/doors/Dooruranium.dmi' + }, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"QI" = ( +/obj/item/robot_parts/robot_suit, +/obj/item/robot_parts/r_leg, +/obj/item/robot_parts/r_arm, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"QJ" = ( +/obj/machinery/recharge_station, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"QT" = ( +/obj/structure/table/steel, +/obj/item/weapon/deck/cards, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"QU" = ( +/turf/simulated/mineral, +/area/ninja_dojo/dojo) +"QZ" = ( +/obj/machinery/computer/teleporter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"Ra" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/ninja_dojo/dojo) +"Rb" = ( +/obj/effect/decal/cleanable/cobweb2, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Rn" = ( +/obj/item/weapon/storage/box/syndie_kit/spy, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Rp" = ( +/obj/structure/closet/secure_closet/freezer/kitchen, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"RB" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"RN" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"RU" = ( +/obj/structure/flora/ausbushes/palebush, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"RX" = ( +/obj/machinery/portable_atmospherics/canister/phoron, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Sc" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/obj/machinery/meter, +/turf/simulated/shuttle/floor/voidcraft/light, +/area/ninja_dojo/start) +"St" = ( +/obj/machinery/embedded_controller/radio/airlock/docking_port{ + frequency = 1331; + id_tag = "ninja_shuttle"; + pixel_x = 0; + pixel_y = -25; + req_access = list(150) + }, +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + dir = 4; + frequency = 1331; + id_tag = "ninja_shuttle_pump" + }, +/obj/machinery/button/remote/blast_door{ + id = "blastninja"; + name = "ship lockdown control"; + pixel_x = -25 + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Sv" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/firstaid/adv{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/toxin{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/closet/secure_closet/medical_wall{ + pixel_x = 32; + pixel_y = 0; + req_access = list(150) + }, +/obj/item/weapon/storage/firstaid/fire{ + pixel_x = 1 + }, +/obj/item/weapon/storage/firstaid/o2{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/firstaid/regular, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Sy" = ( +/obj/machinery/button/remote/blast_door{ + id = "skipjackshutters"; + name = "remote shutter control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"SI" = ( +/obj/structure/table/standard, +/obj/item/weapon/storage/box/glasses/square{ + pixel_x = 1; + pixel_y = 4 + }, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"SJ" = ( +/obj/item/clothing/head/xenos, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"SL" = ( +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"SM" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"SU" = ( +/obj/structure/grille, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Te" = ( +/obj/effect/floor_decal/carpet{ + dir = 1 + }, +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 9 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/ninja_dojo/dojo) +"Tg" = ( +/obj/effect/floor_decal/carpet{ + dir = 8 + }, +/obj/effect/floor_decal/carpet{ + dir = 4 + }, +/turf/unsimulated/floor{ + dir = 2; + icon_state = "carpet" + }, +/area/skipjack_station) +"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) +"Ts" = ( +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"Tv" = ( +/obj/structure/closet/crate, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/obj/item/clothing/accessory/storage/vox, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Tw" = ( +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"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) +"TL" = ( +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"TO" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/flame/candle, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Ue" = ( +/obj/item/weapon/ore, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"Un" = ( +/obj/machinery/atmospherics/pipe/simple/visible{ + dir = 4 + }, +/obj/machinery/door/airlock/voidcraft/vertical{ + frequency = 1331; + id_tag = "ninja_shuttle_inner"; + name = "Ship Internal Hatch"; + req_access = list(150) + }, +/turf/simulated/shuttle/floor/voidcraft/dark, +/area/ninja_dojo/start) +"Uq" = ( +/obj/item/weapon/gun/energy/sonic, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"Uy" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/vox, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"UB" = ( +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"UK" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "propulsion_r"; + dir = 4 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/trade/centcom) +"UL" = ( +/obj/structure/table/rack, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/weapon/storage/belt/utility/full, +/obj/item/device/multitool, +/obj/item/device/multitool, +/obj/item/clothing/shoes/magboots, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"UO" = ( +/obj/structure/table/standard, +/obj/item/weapon/surgical/circular_saw{ + pixel_y = 8 + }, +/obj/item/weapon/surgical/hemostat, +/obj/item/weapon/surgical/scalpel, +/obj/item/stack/medical/advanced/bruise_pack, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Vx" = ( +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"VA" = ( +/obj/item/pizzabox/meat, +/turf/simulated/shuttle/floor/red, +/area/skipjack_station/start) +"VC" = ( +/turf/unsimulated/beach/sand, +/area/beach) +"VG" = ( +/obj/item/clothing/head/philosopher_wig, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"VH" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/snacks/fortunecookie, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"VT" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"VW" = ( +/obj/structure/undies_wardrobe, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"Wa" = ( +/obj/structure/reagent_dispensers/watertank, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Wf" = ( +/turf/unsimulated/wall, +/area/skipjack_station) +"Wg" = ( +/obj/structure/bed/chair{ + dir = 4 + }, +/turf/unsimulated/floor{ + name = "plating"; + icon_state = "cult" + }, +/area/skipjack_station) +"Wn" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_northwest_lock"; + locked = 0; + req_access = list(150) + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Wr" = ( +/obj/machinery/door/airlock/hatch{ + frequency = 1331; + icon_state = "door_closed"; + id_tag = "vox_southwest_lock"; + locked = 0; + req_access = list(150) + }, +/obj/machinery/atmospherics/pipe/simple/visible, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Ww" = ( +/obj/structure/inflatable, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Wx" = ( +/obj/structure/table/standard, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"Wy" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/ninja_dojo/dojo) +"WD" = ( +/obj/effect/overlay/palmtree_r, +/obj/effect/overlay/coconut, +/turf/unsimulated/beach/sand, +/area/beach) +"WG" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"WM" = ( +/obj/machinery/atmospherics/unary/vent_pump/high_volume{ + frequency = 1331; + id_tag = "vox_west_vent" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"WX" = ( +/obj/structure/window/reinforced{ + dir = 8 + }, +/turf/unsimulated/floor{ + dir = 2; + icon = 'icons/turf/snow_new.dmi'; + icon_state = "snow"; + name = "snow" + }, +/area/ninja_dojo/dojo) +"WY" = ( +/obj/item/target/alien, +/turf/unsimulated/floor{ + icon = 'icons/turf/flooring/wood.dmi'; + icon_state = "wood_broken2" + }, +/area/ninja_dojo/dojo) +"Xo" = ( +/obj/structure/table/steel, +/obj/item/clothing/glasses/regular, +/obj/item/clothing/glasses/regular, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Xq" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"Xt" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "asteroid" + }, +/area/skipjack_station) +"Xu" = ( +/obj/machinery/door/morgue, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"XF" = ( +/obj/item/weapon/gun/launcher/spikethrower, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"XG" = ( +/obj/item/weapon/tool/wrench, +/obj/item/weapon/mop, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"XI" = ( +/mob/living/simple_mob/animal/passive/tindalos, +/turf/simulated/shuttle/floor/black, +/area/skipjack_station/start) +"XL" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/simulated/mineral, +/area/space) +"XO" = ( +/obj/structure/signpost, +/turf/unsimulated/beach/sand, +/area/beach) +"XT" = ( +/obj/structure/urinal{ + pixel_y = 32 + }, +/obj/item/weapon/soap/syndie, +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/skipjack_station) +"XW" = ( +/obj/structure/table/rack, +/obj/item/clothing/mask/breath, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/random/multiple/voidsuit, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"XY" = ( +/obj/structure/closet, +/turf/unsimulated/beach/sand, +/area/beach) +"Yd" = ( +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/green, +/turf/unsimulated/floor{ + icon_state = "wood" + }, +/area/skipjack_station) +"Ye" = ( +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/ninja_dojo/dojo) +"Yf" = ( +/obj/structure/table/rack, +/obj/item/weapon/material/harpoon, +/obj/item/weapon/tank/oxygen, +/obj/item/weapon/tank/oxygen, +/obj/item/clothing/shoes/magboots, +/obj/item/clothing/shoes/magboots, +/obj/random/rigsuit, +/obj/random/multiple/voidsuit, +/obj/random/multiple/voidsuit, +/obj/random/energy, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Yi" = ( +/turf/unsimulated/floor{ + icon_state = "freezerfloor"; + dir = 2 + }, +/area/ninja_dojo/dojo) +"Yj" = ( +/obj/structure/shuttle/engine/propulsion{ + icon_state = "burst_l" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry{ + dir = 1 + }, +/area/supply/dock) +"Yn" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Yp" = ( +/obj/structure/table/wooden_reinforced, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/turf/unsimulated/floor{ + dir = 8; + icon_state = "wood" + }, +/area/ninja_dojo/dojo) +"Yq" = ( +/obj/structure/grille, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/window/reinforced{ + dir = 8 + }, +/obj/machinery/door/blast/regular{ + id = "skipjackshutters"; + name = "Skipjack Blast Shielding" + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Yz" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/storage/toolbox/syndicate{ + pixel_x = -1; + pixel_y = 3 + }, +/obj/random/tech_supply, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"YA" = ( +/obj/structure/bed/chair/office/dark, +/turf/unsimulated/floor{ + icon_state = "dark" + }, +/area/ninja_dojo/dojo) +"YS" = ( +/obj/machinery/teleport/hub, +/obj/effect/floor_decal/industrial/hatch/yellow, +/turf/simulated/shuttle/plating, +/area/ninja_dojo/start) +"YX" = ( +/obj/machinery/light/small{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/tank/air{ + dir = 1; + start_pressure = 740 + }, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Za" = ( +/obj/machinery/access_button{ + command = "cycle_exterior"; + frequency = 1331; + master_tag = "vox_east_control"; + req_access = list(150) + }, +/turf/simulated/wall/skipjack, +/area/skipjack_station/start) +"Zm" = ( +/obj/machinery/optable, +/turf/simulated/shuttle/floor/white, +/area/skipjack_station/start) +"Zo" = ( +/obj/machinery/atmospherics/pipe/manifold/visible{ + dir = 8 + }, +/obj/machinery/meter, +/turf/simulated/shuttle/plating, +/area/skipjack_station/start) +"Zu" = ( +/obj/machinery/light/small, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"Zv" = ( +/obj/item/weapon/ore, +/obj/structure/reagent_dispensers/beerkeg, +/turf/unsimulated/floor{ + icon_state = "white" + }, +/area/skipjack_station) +"ZA" = ( +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"ZB" = ( +/turf/simulated/shuttle/wall/voidcraft/hard_corner, +/area/ninja_dojo/start) +"ZI" = ( +/obj/structure/table/rack, +/obj/item/weapon/gun/energy/darkmatter, +/obj/item/weapon/gun/energy/darkmatter, +/turf/unsimulated/floor{ + icon_state = "plating"; + name = "plating" + }, +/area/skipjack_station) +"ZL" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + tiles = 0 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/obj/effect/step_trigger/teleporter/random{ + affect_ghosts = 1; + name = "escapeshuttle_leave"; + teleport_x = 25; + teleport_x_offset = 245; + teleport_y = 25; + teleport_y_offset = 245; + teleport_z = 6; + teleport_z_offset = 6 + }, +/turf/simulated/mineral, +/area/space) +"ZR" = ( +/obj/machinery/door/airlock/hatch{ + req_access = list(150) + }, +/turf/simulated/shuttle/floor/darkred, +/area/skipjack_station/start) +"ZY" = ( +/obj/effect/decal/cleanable/cobweb2{ + icon_state = "cobweb1" + }, +/turf/unsimulated/floor{ + icon_state = "steel" + }, +/area/skipjack_station) +"ZZ" = ( +/obj/structure/lattice, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/space, +/area/space) (1,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq ap ap ap @@ -10064,97 +12902,96 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Qw +Qw +Nz +Nz +Nz +Nz +Nz +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +XL +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af +Af "} (2,1,1) = {" +aq +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc +uc ap +aq ap ap ap @@ -10207,6 +13044,60 @@ ap ap ap ap +Nz +Wy +JE +xf +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Bg +Bg +OK +Fw +Ac +DC +HD +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10226,77 +13117,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (3,1,1) = {" +aq +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc ap +aq +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp ap ap ap @@ -10328,6 +13186,59 @@ ap ap ap ap +Nz +BC +JE +xf +Nz +yM +yM +yM +CG +yM +yM +vs +yM +yM +yM +yM +yM +yM +Nz +Bg +Bg +QC +xf +xf +YA +Ow +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10341,104 +13252,31 @@ ap ap ap ap +aB ap ap ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -ap -ap +Af "} (4,1,1) = {" +aq +uc +uf +uf +uf +uf +uf +uf +uf +uf +uf +uc ap +aq +gp ap ap ap @@ -10446,6 +13284,10 @@ ap ap ap ap +iE +kw +kM +iE ap ap ap @@ -10454,6 +13296,7 @@ ap ap ap ap +gp ap ap ap @@ -10485,6 +13328,58 @@ ap ap ap ap +Nz +QZ +JE +xf +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Bg +Bg +OK +Pi +yv +Yz +Ji +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10499,94 +13394,43 @@ ap ap ap ap +aB +aB +aB ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (5,1,1) = {" +aq +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc ap +aq +gp ap ap ap ap ap ap +iE +iE +kx +kN +iE +iE ap ap ap @@ -10594,6 +13438,7 @@ ap ap ap ap +gp ap ap ap @@ -10625,6 +13470,53 @@ ap ap ap ap +Nz +Nz +QC +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +CG +yM +yM +OK +Bg +Bg +Nz +Nz +Nz +Nz +Nz +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10643,92 +13535,44 @@ ap ap ap ap +aB +aB +aB +aB ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (6,1,1) = {" +aq +uc +uf +uf +uf +uf +ug +uf +uf +uf +uf +uc ap +aq +gp ap ap ap ap ap ap +kh +kn +jH +kO +kZ +lj ap ap ap @@ -10736,6 +13580,7 @@ ap ap ap ap +gp ap ap ap @@ -10764,6 +13609,54 @@ ap ap ap ap +Nz +Nz +Nz +Nz +Bg +Bg +Bg +Nz +Nz +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +HX +OK +Ye +Ye +Ew +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10784,93 +13677,44 @@ ap ap ap ap +aB +aB +aB +aB +aB ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mw -mw -mx -mx -mx -mw -mw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (7,1,1) = {" +aq +uc +ue +ue +uf +ue +ue +ue +uf +ue +ue +uc ap +aq +gp ap ap ap ap ap ap +ki +ko +ky +jH +la +lk ap ap ap @@ -10878,6 +13722,7 @@ ap ap ap ap +gp ap ap ap @@ -10906,6 +13751,53 @@ ap ap ap ap +Nz +WY +FM +IL +Bg +Bg +Bg +Bg +Bg +wA +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +Bg +uZ +Ye +Ye +At +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -10927,92 +13819,44 @@ ap ap ap ap +aB +aB +aB +aB +aB +aB ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -gX -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -mw -mx -mw -mT -nB -nM -nP -mT -mw -mx -mw -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (8,1,1) = {" +aq +ud +uf +uf +uf +uf +uf +uf +uf +uf +uf +ud ap +aq +gp ap ap ap ap ap ap +iE +iE +iE +kP +iE +iE ap ap ap @@ -11020,6 +13864,7 @@ ap ap ap ap +gp ap ap ap @@ -11048,6 +13893,53 @@ ap ap ap ap +Nz +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Bg +wA +Nz +RU +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +Bg +OK +Ye +Ye +FX +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -11070,91 +13962,43 @@ ap ap ap ap +aB +aB +aB +aB +aB ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hm -hm -hv -hm -hm -hm -ia -in -in -in -ia -in -in -in -ia -in -in -in -ia -in -in -in -ia -in -hm -hm -hv -hm -hm -ai -mu -ap -mv -ap -ap -ap -ap -ap -ap -mw -mw -mw -ni -mw -mw -mT -mT -mT -mw -mw -ok -mw -mw -mw -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (9,1,1) = {" +aq +bc +bc +bc +bQ +cs +bc +cs +dh +bc +bc +bc ap +aq +gp ap ap ap ap ap ap +iE +kp +kz +jg +lb +iE ap ap ap @@ -11162,6 +14006,7 @@ ap ap ap ap +gp ap ap ap @@ -11190,6 +14035,52 @@ ap ap ap ap +Nz +Bg +Bg +Te +He +He +He +Ly +Bg +wA +Nz +xW +xW +xW +xW +xW +xW +xW +xW +xW +xW +Nz +Bg +Bg +Bg +Nz +Nz +Nz +Nz +ar +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -11204,6 +14095,8 @@ ap ap ap ap +JX +JX ap ap ap @@ -11212,89 +14105,50 @@ ap ap ap ap +aB +aB +aB ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -ib -ib -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -ap -ap -mw -mw -mV -mJ -mJ -no -mw -nC -nN -nx -mw -oc -mT -nA -nA -mw -mw -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (10,1,1) = {" +aq +bc +bn +by +bR +bn +cO +bn +di +by +bc +bc +Yj +aq +gp ap +iE +je +ju +iE ap +iE +iE +iC +jg +lc +iE ap +iE +lG +lS +iE ap ap +gp ap ap ap @@ -11323,6 +14177,69 @@ ap ap ap ap +Nz +TO +Bg +AF +FV +FV +FV +Dd +Bg +Bg +OK +Ra +Ra +Ra +Ra +Ra +Ra +Ra +Ra +Ra +Ra +OK +Bg +Bg +Bg +Bg +Bg +Bg +Qw +ar +Id +Id +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +Wf +Wf +Wf +Wf +Wf +ZZ +ZZ +ZZ +JX +JX +JX +JX +JX +JX +JX +xV +vG +Aw +JX +JX +JX ap ap ap @@ -11336,105 +14253,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -ho -ho -ho -ho -ho -ho -ic -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -lx -ho -ho -ho -ho -ho -al -gX -ap -mv -ap -ap -ap -ap -mw -mw -mP -mW -nc -mJ -np -mw -nD -mT -nx -mw -od -mT -oq -oA -oI -mw -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (11,1,1) = {" +aq +bc +bn +bn +bR +bn +bn +bn +di +bn +bn +dE +AJ +aq +gp +iE +iC +jf +jv +iE ap +iE +kq +iE +jg +ld +iE ap +iE +jW +jg +iC +iE ap +gp ap ap ap @@ -11463,6 +14319,69 @@ ap ap ap ap +Nz +FN +Bg +AF +FV +FV +FV +Dd +Bg +Bg +AP +Jk +Jk +Jk +Jk +Jk +Jk +Jk +Jk +Jk +Jk +AP +Bg +Bg +Bg +Bg +Bg +Bg +Nz +Wf +Id +EZ +Id +Id +aB +Wf +Wf +Wf +Wf +Wf +Wf +Wf +Wf +Tw +Tw +Bd +Tw +IM +yw +IM +PQ +WM +Zo +Wr +JY +CE +CE +CE +Av +Av +YX +Gz +Oo ap ap ap @@ -11476,107 +14395,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -ib -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -ap -mw -mH -mQ -mX -nc -mJ -mJ -mY -mT -mT -mT -mZ -mT -mT -nA -oB -nA -oN -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (12,1,1) = {" +aq +bc +bn +bn +bR +bn +bn +bn +di +bn +bn +dE +AJ +aq +gp +iE +iS +jg +jw +iE ap +iE +kr +kA +jg +le +iE ap +iE +lI +jg +mg +iE ap +gp ap ap ap @@ -11605,6 +14461,69 @@ ap ap ap ap +Nz +TO +Bg +AF +FV +FV +FV +Dd +Bg +Bg +OK +KX +KX +KX +KX +KX +KX +KX +KX +Jk +Jk +OK +IP +Bg +Bg +Bg +Bg +Bg +Qw +Wf +Id +EZ +EZ +Id +Id +Wf +Be +vI +Vx +vI +EH +Wf +ZY +Tw +Tw +Tw +Bd +IM +xG +IM +Wn +Cg +PY +JX +Yf +xt +xt +xt +xt +xt +Bi +Gz +Oo ap ap ap @@ -11618,107 +14537,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -ib -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -mw -mw -mI -mR -mR -mJ -mJ -nq -mw -nE -mT -nQ -mw -oe -mT -or -oC -nA -oO -mw -mw -ap -ap -ap -mv -ap -ap +Af "} (13,1,1) = {" +aq +bc +bn +bn +bn +bn +bn +bn +bn +bn +bn +dE +AJ +aq +gp +iE +iT +jg +jx +iE ap +iE +ks +iE +kQ +lf +iE ap +iE +lJ +jg +mh +iE ap +gp ap ap ap @@ -11747,6 +14603,69 @@ ap ap ap ap +Nz +Bg +Bg +Fs +SL +SL +SL +Hf +Bg +wA +Nz +WX +WX +WX +WX +WX +WX +WX +WX +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Nz +Wf +EZ +EZ +EZ +EZ +Id +Wf +Wx +Vx +yD +Vx +Wx +Wf +Tw +Tw +Tw +Wf +Wf +Gx +Gx +Gx +JX +JX +JX +JX +JX +OF +xt +xt +Lm +xt +Bi +JX +JX ap ap ap @@ -11760,105 +14679,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -id -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -ap -mx -mB -mJ -mJ -mJ -mJ -mJ -np -mw -nF -mT -nR -mw -of -mT -mT -mT -mT -mT -oQ -mx -ap -ap -ap -mv -ap -ap +Af "} (14,1,1) = {" +aq +bc +bn +bz +bn +bn +bn +bn +bn +bz +bc +bc +Ip +aq +gp +iE +iE +jh +iE +iE +iE +iE +iC +kB +jg +jg +iE +iE +iE +iE +lT +iE +iE ap +gp ap ap ap @@ -11887,6 +14745,52 @@ ap ap ap ap +Nz +Bg +Bg +Bg +Bg +Bg +Bg +Bg +Ng +wA +Nz +RU +yM +yM +yM +yM +yM +yM +yM +Nz +Yp +Bg +Bg +Bg +BE +OK +Bg +Bg +Nz +Wf +Wf +RN +Ww +Wf +Wf +Wf +uX +vI +Vx +vI +AY +Wf +Tw +Tw +Tw +zv ap ap ap @@ -11895,6 +14799,19 @@ ap ap ap ap +JX +LJ +xt +xt +DF +JX +JX +JX +JX +JX +JX +JX +JX ap ap ap @@ -11904,104 +14821,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -id -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -mw -mw -mC -mJ -mJ -mJ -mJ -nj -mw -mw -mw -mZ -mw -mw -mw -ol -os -mT -oJ -oP -oR -mw -mw -ap -ap -mv -ap -ap +Af "} (15,1,1) = {" +aq +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc +bc ap +aq +gp +iE +iU +jg +jg +iE +iE +iE +iE +iE +jg +lg +iC +iE +jg +jg +jg +mi +iE ap +gp ap ap ap @@ -12030,6 +14887,52 @@ ap ap ap ap +Nz +Hq +Bg +Bg +Bg +Bg +Bg +Bg +Bg +wA +Nz +yM +yM +yM +yM +yM +CG +yM +yM +OK +Bg +Bg +wA +Bg +Bg +Nz +Bg +Bg +Nz +Wf +uY +Tw +EZ +vt +Tw +Wf +Wx +Vx +Vx +Vx +Wx +Wf +Bd +Tw +Tw +zv ap ap ap @@ -12038,6 +14941,19 @@ ap ap ap ap +JX +KZ +Wa +xt +xt +WG +Ak +Ak +IW +Ak +Ak +JX +JX ap ap ap @@ -12047,102 +14963,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -ho -ho -ho -ho -ho -ho -ie -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -io -lx -ho -ho -ho -ho -ho -al -gX -ap -mv -ap -ap -mw -mw -mw -mw -mw -mY -mw -mw -mw -nv -nG -nx -nS -nX -mw -mw -mw -mZ -mw -mw -mw -mw -mw -ap -ap -mv -ap -ap +Af "} (16,1,1) = {" +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +aq +gp +iE +iV +jg +jg +jM +iE +kj +kt +kC +jg +jg +ll +iE +lv +jg +jg +jg +iE ap +gp ap ap ap @@ -12167,12 +15025,78 @@ ap ap ap ap +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Bg +Nz +Nz +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +wA +VH +yf +Bg +Bh +Bg +Bg +Nz +Wf +uY +Tw +Tw +Tw +Tw +Wf +Yd +vI +Vx +Po +Dk +Wf +Bd +Bd +Tw +zv ap ap ap ap ap ap +JX +JX +JX +JX +JX +ZR +JX +JX +we +Ak +Mq +XI +Ak +vu +JX +JX ap ap ap @@ -12181,109 +15105,47 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hn -hn -hn -hn -hn -hn -id -id -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -ip -lo -lo -hn -hn -hn -hn -hn -aj -gX -ap -mv -ap -ap -mw -my -mD -mK -mS -mT -nd -nd -mw -nw -nx -mT -nx -nY -mw -om -ot -oD -ot -mw -mT -oU -mw -ap -ap -mv -ap -ap +Af "} (17,1,1) = {" +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +iI +iW +ji +jy +jg +jY +jg +jg +jH +jH +jg +jg +jY +jg +ji +lU +mj +lX +ap +gp +ap +ap +ap ap ap ap @@ -12294,143 +15156,135 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hp -hp -hp -hI -hp -hp -if -iq -if -if -if -iq -if -if -if -iq -if -if -if -iq -if -if -if -iq -hp -hp -hp -hI -hp -dZ -gX -ap -mv -ap -ap -mx -mz -mE -mE -mE -mT -mT -mT -mZ -nx -mT -mw -mT -nx -mZ -on -ou -mT -mT -mZ -mT -oV -mx -ap -ap -mv -ap -ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +Nz +PI +PI +PI +QU +yM +yM +Nz +Nz +zT +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Bg +Bg +wA +Bg +Bg +Nz +Bg +Bg +Nz +Wf +IC +Tw +Tw +Tw +Tw +Wf +Nk +LY +Tg +AV +Wx +Wf +Wf +Wf +vZ +Wf +Wf +Wf +ap +ap +JX +JX +JX +JX +Hg +KL +Yn +ZA +zn +JX +Ak +Ak +Ak +Ak +Ec +Ak +JX +JX +JX +ap +ap +ap +ap +ap +ap +ap +Af "} (18,1,1) = {" +gp +gu +gu +gu +gu +gu +gu +gu +gu +gu +gu ap ap ap ap +iJ +iX +jj +jz +jg +jg +jg +jH +jH +jH +jH +jg +jg +jg +lK +lV +mk +lY ap +gp ap ap ap @@ -12455,9 +15309,79 @@ ap ap ap ap +Nz +PI +QU +QU +yM +vs +yM +OK +EA +EA +EA +OK +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Jv +Bg +Bg +Bg +Jv +OK +Bg +Bg +Nz +Wf +Wf +Wf +Ig +Wf +Wf +Wf +Wf +Wf +ND +Wf +Wf +Wf +EX +EX +EX +EX +Rn +Wf ap ap ap +xL +PX +Ai +ZA +ZA +pF +ZA +vK +JX +SU +RB +Yq +JX +JX +JX +JX +Gz +Oo ap ap ap @@ -12465,114 +15389,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -hl -gX -ap -mv -ap -ap -mw -mA -mE -mE -mE -mT -ne -nk -mw -ny -nH -mT -nx -nZ -mw -oo -ov -oE -ov -mw -mT -oW -mw -ap -ap -mv -ap -ap +Af "} (19,1,1) = {" +gp +gu +gv +gv +gv +gu +ht +gu +hM +hM +gu ap ap ap ap +iK +iY +jk +jk +jN +iE +jg +jH +kD +kR +jH +jg +iE +ly +lL +lW +ml +lZ ap +gp ap ap ap @@ -12597,9 +15451,79 @@ ap ap ap ap +Nz +PI +QU +yM +yM +yM +yM +OK +EA +EA +EA +OK +yM +vs +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Nz +Wf +ZY +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Bd +zv +EX +EX +Wg +Wg +EX +zv ap ap ap +Qb +DO +ZA +ZA +ZA +MQ +ZA +ZA +NT +EN +EN +Zu +JX +Jg +Kh +zs +Gz +Oo ap ap ap @@ -12607,114 +15531,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -mw -mw -mw -mw -mw -mZ -mw -mw -mw -nz -nI -nx -nT -oa -mw -mw -mw -mZ -mw -mw -mw -mw -mw -ap -ap -mv -ap -ap +Af "} (20,1,1) = {" +gp +gu +gw +gC +gC +gu +hu +gu +hH +hH +gu ap ap ap ap +iE +iE +iE +iE +iE +iC +jg +jH +kE +kS +jH +jg +iC +iE +iE +iE +iE +iE ap +gp ap ap ap @@ -12739,9 +15593,79 @@ ap ap ap ap +Nz +PI +QU +yM +vs +yM +yM +Nz +Nz +zT +Nz +Nz +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +OK +Cj +Bg +Bg +Nz +Bg +Bg +Nz +Wf +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +vZ +EX +CK +PL +Lb +SM +zv ap ap ap +Qb +Ge +OH +ZA +ZA +ZR +ZA +ZA +Xo +QT +Gk +ZA +EF +UB +UB +VA +Gz +Oo ap ap ap @@ -12749,116 +15673,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -mw -mw -mF -mL -mT -mT -nf -nl -mw -mw -mw -mZ -mw -mw -mw -op -oh -mT -nx -nx -oS -mw -mw -ap -ap -mv -ap -ap +Af "} (21,1,1) = {" +gp +gu +gx +gC +gC +gC +gC +hG +hH +hS +gu ap ap ap ap ap +iE +iE +jA +jO +jZ +kk +jH +kF +kT +jH +jV +lp +lz +lM +iE +iE ap ap +gp ap ap ap @@ -12883,9 +15735,79 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +yM +Jc +Ns +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +FQ +xX +Bg +Bh +Bg +Bg +Nz +Wf +Tw +Ue +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +Tw +zv +EX +EX +LQ +LQ +EX +zv ap ap ap +Qb +FE +ZA +ZA +ZA +Yn +ZA +ZA +Pw +yI +yI +Zu +JX +Ix +wE +vX +Gz +Oo ap ap ap @@ -12893,116 +15815,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -mx -mG -mM -mT -mT -mT -mT -nr -mw -nJ -mT -nU -mw -og -mT -mT -mT -mT -mT -oT -mx -ap -ap -ap -mv -ap -ap +Af "} (22,1,1) = {" +gp +gu +gy +gC +hh +hh +gC +hH +hH +hT +gu ap ap ap ap ap ap +iI +jB +jP +ka +jg +jH +kG +kU +jH +jg +lq +lA +lN +lX ap ap ap +gp ap ap ap @@ -13027,9 +15877,79 @@ ap ap ap ap +Nz +PI +vs +yM +yM +yM +yM +Jc +Jc +Db +St +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Bg +Bg +Bg +Wf +Wf +Np +Wf +Wf +Wf +Ny +Wf +Wf +Wf +Tw +Tw +Wf +Rb +EX +EX +EX +EX +Wf ap ap ap +LN +Pt +qK +ZA +ZA +pF +ZA +OZ +JX +SU +RB +Yq +JX +JX +JX +JX +Gz +Oo ap ap ap @@ -13037,114 +15957,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -gX -ap -mv -ap -ap -ap -mw -mw -mN -mT -mT -ng -mT -ns -mw -nx -mT -nx -mw -oh -mT -ow -oF -oK -oz -mw -mw -ap -ap -ap -mv -ap -ap +Af "} (23,1,1) = {" +gp +gu +gz +gC +gC +gC +gC +gu +hH +hH +gu ap ap ap ap ap ap +iJ +jC +jQ +kb +jg +jH +ag +ah +jH +jg +lr +lB +lO +lY ap ap ap +gp ap ap ap @@ -13169,8 +16019,79 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +wQ +ZB +Jc +Un +ZB +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +FQ +xX +Bg +Bh +Bg +Bg +Bg +Wf +Id +Id +SI +Fl +Ju +QB +QB +OQ +Wf +Tw +Tw +Wf +Wf +Wf +vZ +Wf +Wf +Wf ap ap +JX +JX +JX +Sy +Hg +KL +MQ +ZA +BN +JX +Bo +TL +TL +Zm +TL +Ab +JX +JX +JX ap ap ap @@ -13178,115 +16099,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -mw -mO -mT -na -mT -nm -mT -mZ -mT -mT -mT -mZ -mT -mT -ox -oG -oL -oz -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (24,1,1) = {" +gp +gu +gA +gT +hi +gC +gC +gu +hN +hN +gu ap ap ap ap ap ap +iK +jD +jR +kc +jg +jH +kI +kW +jH +jg +ls +lC +lP +lZ ap ap ap +gp ap ap ap @@ -13311,12 +16161,78 @@ ap ap ap ap +Nz +PI +yM +Jc +Jc +Jc +Jc +Jc +Ir +Sc +vY +KH +MB +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +vs +yM +yM +OK +ya +Bg +Bg +Nz +Bg +Bg +Hq +ar +aB +Id +uU +QB +QB +QB +QB +DZ +Wf +Tw +Tw +Wf +wU +Tw +Tw +zv ap ap ap ap ap ap +JX +JX +JX +JX +JX +ZR +JX +JX +Es +TL +TL +TL +TL +Sv +JX +JX ap ap ap @@ -13325,108 +16241,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -mw -mw -mU -mT -mT -mT -nt -mw -nx -mT -nx -mw -oi -mT -oy -oH -oM -mw -mw -ap -ap -ap -ap -mv -ap -ap +Af "} (25,1,1) = {" +gp +gu +gu +gu +gu +gC +gC +gu +gu +gu +gu ap ap ap ap ap +iE +iE +jE +jS +kd +jg +jH +kJ +kX +jH +jg +lt +lD +lQ +iE +iE ap ap +gp ap ap ap @@ -13451,6 +16303,56 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +wQ +Jc +KN +Je +wi +wi +wi +vq +wb +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Bg +Bg +IA +ar +aB +Id +Id +Zv +QB +QB +QB +DM +Wf +Tw +Tw +Wf +Tw +Tw +Tw +zv ap ap ap @@ -13459,6 +16361,19 @@ ap ap ap ap +JX +UL +XW +xt +xt +VT +TL +Od +UO +Jz +HJ +JX +JX ap ap ap @@ -13468,105 +16383,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -mw -mw -nb -nh -mT -nu -mw -nK -nO -mw -mw -oj -mT -oz -oz -mw -mw -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (26,1,1) = {" +gp +gu +gB +gU +hj +gC +gC +gC +gC +gC +gu ap ap ap ap +iE +iE +iE +jF +jT +ke +iE +jH +jH +jH +jH +iE +jF +jT +ke +iE +iE +iE ap +gp ap ap ap @@ -13591,6 +16445,56 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +Ml +Jc +yl +Je +wi +wi +IG +xQ +HL +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Ch +Cl +FF +Nz +Xu +Nz +Nz +ar +aB +aB +Id +Id +Np +Rp +IR +Wf +Wf +Tw +Tw +Wf +Tw +Tw +Tw +zv ap ap ap @@ -13599,6 +16503,19 @@ ap ap ap ap +JX +KT +xt +xt +zL +JX +JX +JX +JX +JX +JX +JX +JX ap ap ap @@ -13608,102 +16525,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -mw -mw -mw -nn -mw -mw -nL -nA -nV -mw -mw -mT -mw -mw -mw -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (27,1,1) = {" +gp +gu +gC +gE +gE +gE +gE +gE +gE +gC +gu +gu +gu +gu +iC +iE +iC +jl +jG +jU +jU +iE +jg +jH +jH +jg +iE +lu +lE +lR +ma +iC +iE +iC +gp ap ap ap @@ -13728,6 +16587,73 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +wQ +Jc +YS +Je +wi +wi +wi +xD +Gi +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Yi +Yi +Yi +Yi +Yi +wq +Nz +ar +aB +aB +aB +Id +Id +Wf +Wf +Wf +Tw +Tw +Tw +Wf +Tw +Tw +Tw +Wf +Wf +ZZ +ZZ +ZZ +JX +JX +JX +JX +JX +NY +xt +wS +xt +Dx +Cf +JX +JX ap ap ap @@ -13741,111 +16667,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -mw -mx -mw -nA -nA -nA -nW -ob -mw -mx -mw -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (28,1,1) = {" +gp +gu +gC +gE +hk +hk +hk +hk +gE +gC +gC +gC +gC +iy +iD +jg +am +jg +jH +jH +jH +kl +jH +jH +jH +jH +kl +jH +jH +jH +mb +mm +mq +ms +gp ap ap ap @@ -13870,6 +16729,73 @@ ap ap ap ap +Nz +PI +yM +Jc +Jc +Jc +Jc +Jc +wa +Cu +wi +vC +wv +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +QJ +Yi +Yi +Yi +Yi +Dg +Nz +ar +aB +aB +aB +Wf +Hm +Jp +Mx +Wf +Tw +Tw +Tw +Wf +xR +Bd +Tw +Tw +Tw +IM +yw +IM +Bj +IS +BH +JX +AZ +xt +HS +xt +QI +XG +Lz +Gz +Oo ap ap ap @@ -13883,111 +16809,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mw -mw -mx -mx -mx -mw -mw -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (29,1,1) = {" +gp +gu +gC +gE +hk +hk +hk +hk +gE +gC +gC +im +gC +iy +iD +iM +iD +jg +jH +jH +jg +jg +jg +jH +jH +jg +jg +jg +jH +jH +mc +mn +mr +mt +gp ap ap ap @@ -14012,6 +16871,73 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +wQ +ZB +wi +wi +ZB +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +ar +aB +aB +aB +Wf +XT +Xq +Xq +Ig +Tw +Tw +Wf +Wf +Wf +Bd +Bd +Tw +Tw +IM +xG +IM +Za +Li +FO +LT +JK +CE +CE +CE +CE +OX +yA +Gz +Oo ap ap ap @@ -14025,111 +16951,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (30,1,1) = {" +gp +gu +gC +gV +gV +gE +gE +gV +gV +gC +gu +gu +gu +gu +iC +iE +iC +jm +jg +jg +jM +iC +ku +kK +kY +lh +iC +lv +jg +jg +jg +iC +iE +iC +gp ap ap ap @@ -14154,6 +17013,32 @@ ap ap ap ap +Nz +PI +yM +yM +yM +yM +yM +Jc +Jc +ui +zb +ZB +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14161,6 +17046,40 @@ ap ap ap ap +ar +aB +aB +aB +Wf +VW +Xq +Xq +Wf +Tw +Tw +Wf +Id +Wf +Wf +Wf +Wf +Wf +Gx +Gx +Gx +JX +JX +JX +JX +JX +JX +JX +xV +vG +Aw +JX +JX +JX ap ap ap @@ -14174,109 +17093,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -ap -ap +Af "} (31,1,1) = {" +gp +gu +gC +gC +gC +gC +gC +gC +gC +gC +gu ap ap ap ap +iE +iE +iE +jI +jI +iC +iE +kv +kL +jH +jg +iE +iC +lF +lF +iE +iE +iE ap +gp ap ap ap @@ -14301,6 +17155,32 @@ ap ap ap ap +Nz +PI +QU +QU +yM +yM +yM +yM +Jc +Jc +Jc +Jc +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +CG +yM +yM +Nz ap ap ap @@ -14308,6 +17188,24 @@ ap ap ap ap +ar +aB +aB +aB +Wf +wj +MO +LH +Wf +Np +Tw +Wf +Id +Id +Id +Id +Id +Id ap ap ap @@ -14321,6 +17219,8 @@ ap ap ap ap +JX +JX ap ap ap @@ -14335,92 +17235,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -mv -ap -ap +Af "} (32,1,1) = {" +gp +gu +gu +gu +gu +hr +hr +gu +gu +gu +gu ap ap ap ap ap +iI +jn +jg +jg +iE +km +jH +jH +jH +li +lm +iE +jg +jg +md +lX ap ap +gp ap ap ap @@ -14445,6 +17297,32 @@ ap ap ap ap +Nz +PI +QU +QU +QU +yM +yM +vs +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14452,6 +17330,26 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Wf +Wf +Wf +Wf +ND +JJ +Id +Id +Id +Id +aB +aB +aB +aB +aB ap ap ap @@ -14476,93 +17374,47 @@ ap ap ap ap +aB +aB ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (33,1,1) = {" +gp +gu +gD +gW +gE +gE +gE +gE +gW +gD +gu ap ap ap ap ap +iK +jo +jg +jV +iE +km +jH +jH +jH +jH +ln +iE +kk +jg +me +lZ ap ap +gp ap ap ap @@ -14587,6 +17439,32 @@ ap ap ap ap +Nz +PI +QU +QU +QU +QU +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14594,6 +17472,28 @@ ap ap ap ap +ar +aB +aB +aB +Wf +DK +PK +LI +Wf +Bd +Bd +EU +Id +Id +Id +Id +aB +aB +aB +aB +aB +aB ap ap ap @@ -14615,94 +17515,48 @@ ap ap ap ap +aB +aB +aB ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (34,1,1) = {" +gp +gu +gE +gE +gE +gE +gE +gE +gE +gE +gu ap ap ap ap +iE +iC +jp +jg +cE +iC +iE +jg +jg +jg +jq +iE +iE +jg +jg +mf +iE +iE ap +gp ap ap ap @@ -14727,6 +17581,32 @@ ap ap ap ap +Nz +PI +QU +QU +QU +QU +QU +yM +yM +yM +yM +vs +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +yM +Nz ap ap ap @@ -14734,6 +17614,28 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Uq +Np +Bk +Wf +Ms +EZ +Bd +yL +EZ +PS +Id +Id +aB +aB +aB +aB +aB ap ap ap @@ -14755,94 +17657,48 @@ ap ap ap ap +aB +aB +aB ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (35,1,1) = {" +gp +gu +gD +gW +gE +gE +gE +gE +gD +gD +gu ap ap ap +iE +iE +iZ +jg +jg +jg +kf +iE +iE +iE +iE +iE +iE +jg +jg +jg +jg +mo +iE +iE +gp ap ap ap @@ -14867,6 +17723,32 @@ ap ap ap ap +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz +Nz ap ap ap @@ -14874,6 +17756,29 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Iy +xm +Pm +Mg +EZ +Ev +EZ +EZ +Uy +EZ +RX +Id +aB +aB +aB +aB +aB +aB ap ap ap @@ -14894,97 +17799,48 @@ ap ap ap ap +aB +aB ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (36,1,1) = {" +gp +gu +gE +gE +gE +gE +gE +gE +gE +gE +gu ap ap ap +iE +iE +ja +jq +jJ +jg +kg +iE +iN +iN +iN +iN +iE +lw +jg +jg +jq +mp +iE +iE +gp ap ap ap @@ -15042,6 +17898,34 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Tv +Np +iO +Mg +EZ +HN +EZ +EZ +HN +EZ +VG +Id +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap @@ -15052,6 +17936,8 @@ ap ap ap ap +aB +aB ap ap ap @@ -15059,74 +17945,44 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (37,1,1) = {" +gp +gu +gD +gW +gE +gE +gE +gE +gW +gD +gu ap ap ap +iE +iE +iE +iE +iE +iE +iE +iE +UK +BP +BP +Ci +iE +iE +iE +iE +iE +iE +iE +iE +gp ap ap ap @@ -15184,97 +18040,91 @@ ap ap ap ap +ar +aB +aB +aB +Wf +Eo +Np +xm +Mg +Il +Xt +EZ +EZ +HN +EZ +EZ +AN +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap ap +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (38,1,1) = {" +gp +gu +gE +gE +gE +gE +gE +gE +gE +gE +gu ap ap ap +iE +iN +iN +iN +iN +iE +iE ap ap ap ap ap ap +iE +iE +iN +iN +iN +iN +iE +gp ap ap ap @@ -15332,85 +18182,76 @@ ap ap ap ap +ar +aB +aB +aB +Wf +XF +Np +AA +Wf +EZ +EZ +SJ +Jt +ID +EZ +Id +EZ +Jq +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Af "} (39,1,1) = {" +gp +gu +gu +gu +gu +gu +gu +gu +gu +gu +gu ap ap ap +iE +UK +BP +BP +Ci +iE ap ap ap @@ -15419,6 +18260,13 @@ ap ap ap ap +iE +UK +BP +BP +Ci +iE +gp ap ap ap @@ -15476,80 +18324,91 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +ar +aB +aB +aB +Wf +AB +ZI +Ep +Wf +Id +Id +Id +Id +Id +Id +Id +Id +Id +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +aB +ZL "} (40,1,1) = {" +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp +gp ap ap ap @@ -15607,124 +18466,89 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ar +ZL "} (41,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 +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +ar ap ap ap @@ -15834,39 +18658,39 @@ ap ap "} (42,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 +Gq +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Ax +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +ar ap ap ap @@ -15976,39 +18800,39 @@ ap ap "} (43,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 +Gq +Nt +VC +Gw +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16118,39 +18942,39 @@ ap ap "} (44,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 +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16260,39 +19084,39 @@ ap ap "} (45,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 +Gq +Nt +XO +VC +VC +VC +VC +VC +VC +VC +VC +Ts +BD +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16402,39 +19226,39 @@ ap ap "} (46,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 +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +Ts +VC +Nj +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16544,39 +19368,39 @@ ap ap "} (47,1,1) = {" -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +BD +VC +TG +TG +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16686,39 +19510,39 @@ ap ap "} (48,1,1) = {" -aq -ap -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +Ts +TG +Fa +Dw +TG +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16828,39 +19652,39 @@ ap ap "} (49,1,1) = {" -aq -ap -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +TG +Tn +Ik +TG +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -16970,39 +19794,39 @@ ap ap "} (50,1,1) = {" -aq -ap -uc -uf -uf -uf -uf -uf -uf -uf -uf -uf -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +TG +TG +VC +VC +VC +FH +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17112,39 +19936,39 @@ ap ap "} (51,1,1) = {" -aq -ap -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17254,39 +20078,39 @@ ap ap "} (52,1,1) = {" -aq -ap -uc -uf -uf -uf -uf -ug -uf -uf -uf -uf -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +TF +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17396,39 +20220,39 @@ ap ap "} (53,1,1) = {" -aq -ap -uc -ue -ue -uf -ue -ue -ue -uf -ue -ue -uc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +BD +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17538,39 +20362,39 @@ ap ap "} (54,1,1) = {" -aq -ap -ud -uf -uf -uf -uf -uf -uf -uf -uf -uf -ud -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +TF +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17680,39 +20504,39 @@ ap ap "} (55,1,1) = {" -aq -ap -bc -bc -bc -bQ -cs -bc -cs -dh -bc -bc -bc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +XY +VC +VC +VC +VC +VC +VC +No +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17822,39 +20646,39 @@ ap ap "} (56,1,1) = {" -aq -ap -bc -bn -by -bR -bn -cO -bn -di -by -bc -bc +Gq +Nt +XY +VC +Ts +Gw +VC +VC +VC +VC +VC +VC +VC aa -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -17964,39 +20788,39 @@ ap ap "} (57,1,1) = {" -aq -ap -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -ab -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18106,39 +20930,39 @@ ap ap "} (58,1,1) = {" -aq -ap -bc -bn -bn -bR -bn -bn -bn -di -bn -bn -dE -ab -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18248,39 +21072,39 @@ ap ap "} (59,1,1) = {" -aq -ap -bc -bn -bn -bn -bn -bn -bn -bn -bn -bn -dE -ab -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +Gw +Ts +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18390,39 +21214,39 @@ ap ap "} (60,1,1) = {" -aq -ap -bc -bn -bz -bn -bn -bn -bn -bn -bz -bc -bc -ac -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18532,39 +21356,39 @@ ap ap "} (61,1,1) = {" -aq -ap -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -bc -ap -ap -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +VC +WD +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +VC +wZ +Az +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +Bw +JW +ar ap ap ap @@ -18674,39 +21498,39 @@ ap ap "} (62,1,1) = {" -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -aq -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +Gq +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Nt +Ax +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +JW +ar ap ap ap @@ -18816,39 +21640,39 @@ ap ap "} (63,1,1) = {" +Gq +zz +zz +zz +zz +zz +zz +zz +zz +zz +zz +Gq +zz +zz +zz +zz +zz +zz +zz +zz +zz +zz +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq +Gq 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 @@ -22673,35 +25497,35 @@ fo fP eK 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 +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv ap ap ap @@ -22815,6 +25639,7 @@ fo fP eK fZ +mv ap ap ap @@ -22842,8 +25667,7 @@ ap ap ap ap -ap -ap +mv ap ap ap @@ -22957,6 +25781,7 @@ fo fP eK fZ +mv ap ap ap @@ -22984,8 +25809,7 @@ ap ap ap ap -ap -ap +mv ap ap ap @@ -23099,6 +25923,7 @@ fH fQ eK fZ +mv ap ap ap @@ -23109,6 +25934,13 @@ ap ap ap ap +mw +mw +mx +mx +mx +mw +mw ap ap ap @@ -23119,15 +25951,7 @@ ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23241,19 +26065,7 @@ eK eK eK fZ -aI -aI -aI -ar -aI -aI -aI -ar -aI -aI -aI -ar -ap +mv ap ap ap @@ -23262,6 +26074,17 @@ ap ap ap ap +mw +mx +mw +mT +nB +nM +nP +mT +mw +mx +mw ap ap ap @@ -23270,6 +26093,7 @@ ap ap ap ap +mv ap ap ap @@ -23382,36 +26206,36 @@ eL eL eL eL -dA -ga -ga -ga -dB -gN -gO -gO -dB -hx -hx -hx fZ +mv ap ap ap ap ap ap +mw +mw +mw +ni +mw +mw +mT +mT +mT +mw +mw +ok +mw +mw +mw ap ap ap ap ap ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23524,36 +26348,36 @@ aL aL aL aL -as -gb -ga -gq -dB -gO -gO -gP -dB -hy -hJ -hO -fZ -ap -ap -ap -ap -ap -ap -ap +ar +mv ap ap ap ap ap +mw +mw +mV +mJ +mJ +no +mw +nC +nN +nx +mw +oc +mT +nA +nA +mw +mw ap ap ap ap ap +mv ap ap ap @@ -23666,36 +26490,36 @@ dJ dJ dJ dJ -dA -gc -ga -gc -dB -gO -gO -gO -dB -hz -hK -hP fZ +mv ap ap ap ap +mw +mw +mP +mW +nc +mJ +np +mw +nD +mT +nx +mw +od +mT +oq +oA +oI +mw +mw ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23808,36 +26632,36 @@ dK dJ dK dK -dA -gd -ga -ga -dB -gO -gN -gO -dB -hz -hK -hP fZ +mv ap ap ap ap +mw +mH +mQ +mX +nc +mJ +mJ +mY +mT +mT +mT +mZ +mT +mT +nA +oB +nA +oN +mw ap ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -23950,36 +26774,36 @@ dL fI dL dL -dA -gc -ga -gq -dB -gO -gO -gO -dB -hA -hL -hQ fZ +mv ap ap ap +mw +mw +mI +mR +mR +mJ +mJ +nq +mw +nE +mT +nQ +mw +oe +mT +or +oC +nA +oO +mw +mw ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -24092,36 +26916,36 @@ fz fz fz fS -dA -gc -ga -gc -dB -gP -gO -gO -dB -hx -hx -hx fZ +mv ap ap ap +mx +mB +mJ +mJ +mJ +mJ +mJ +np +mw +nF +mT +nR +mw +of +mT +mT +mT +mT +mT +oQ +mx ap ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -24235,35 +27059,35 @@ ei ei fJ fZ -aL -aL -aL -ar -aL -aL -aL -ar -aL -aL -aL -ar -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap +mw +mw +mC +mJ +mJ +mJ +mJ +nj +mw +mw +mw +mZ +mw +mw +mw +ol +os +mT +oJ +oP +oR +mw +mw ap ap +mv ap ap ap @@ -24376,36 +27200,36 @@ ei fJ fz fS -dA -ge -gl -gr -dB -gQ -gR -gQ -dB -hB -hD -hD fZ +mv ap ap +mw +mw +mw +mw +mw +mY +mw +mw +mw +nv +nG +nx +nS +nX +mw +mw +mw +mZ +mw +mw +mw +mw +mw ap ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap -ap +mv ap ap ap @@ -24518,42 +27342,42 @@ ei fJ ei fT -dA -gf -gl -gr -dB -gR -gQ -gR -dB -hC -hC -hC fZ +mv +ap +ap +mw +my +mD +mK +mS +mT +nd +nd +mw +nw +nx +mT +nx +nY +mw +om +ot +oD +ot +mw +mT +oU +mw +ap +ap +mv +ap +ap +ap +ap ap ap -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp ap ap ap @@ -24660,22 +27484,36 @@ ei fJ fA fU -dA -gg -gl -gr -dB -gQ -hg -gQ -dB -hD -hD -hD fZ +mv ap ap -gp +mx +mz +mE +mE +mE +mT +mT +mT +mZ +nx +mT +mw +mT +nx +mZ +on +ou +mT +mT +mZ +mT +oV +mx +ap +ap +mv ap ap ap @@ -24683,20 +27521,6 @@ ap ap ap ap -iE -kw -kM -iE -ap -ap -ap -ap -ap -ap -ap -ap -gp -ap ap ap ap @@ -24802,42 +27626,42 @@ ei ei ei fJ -dA -gh -gl -gr -dB -gR -gQ -gR -dB -hD -hD -hD fZ +mv ap ap -gp +mw +mA +mE +mE +mE +mT +ne +nk +mw +ny +nH +mT +nx +nZ +mw +oo +ov +oE +ov +mw +mT +oW +mw +ap +ap +mv ap ap ap ap ap ap -iE -iE -kx -kN -iE -iE -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -24944,42 +27768,42 @@ fA fA fA fU -dA -gi -gl -gr -dB -gQ -gR -gQ -dB -hE -hE -hE fZ +mv ap ap -gp +mw +mw +mw +mw +mw +mZ +mw +mw +mw +nz +nI +nx +nT +oa +mw +mw +mw +mZ +mw +mw +mw +mw +mw +ap +ap +mv ap ap ap ap ap ap -kh -kn -jH -kO -kZ -lj -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25086,42 +27910,42 @@ aL aL aL aL -as -gf -gl -gr -dB -gR -gQ -gR -dB -hD -hD -hR -fZ +ar +mv ap ap -gp +mw +mw +mF +mL +mT +mT +nf +nl +mw +mw +mw +mZ +mw +mw +mw +op +oh +mT +nx +nx +oS +mw +mw +ap +ap +mv ap ap ap ap ap ap -ki -ko -ky -jH -la -lk -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25229,41 +28053,41 @@ fK fR fR fZ -aL -aL -aL -ar -aL -aL -aL -ar -aL -aL -aL -ar +mv ap ap -gp +ap +mx +mG +mM +mT +mT +mT +mT +nr +mw +nJ +mT +nU +mw +og +mT +mT +mT +mT +mT +oT +mx +ap +ap +ap +mv ap ap ap ap ap ap -iE -iE -iE -kP -iE -iE -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25370,42 +28194,42 @@ dQ fK fR fR -dA -gj -gk -gs -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv ap ap -gp +ap +mw +mw +mN +mT +mT +ng +mT +ns +mw +nx +mT +nx +mw +oh +mT +ow +oF +oK +oz +mw +mw +ap +ap +ap +mv ap ap ap ap ap ap -iE -kp -kz -jg -lb -iE -ap -ap -ap -ap -ap -ap -ap -gp ap ap ap @@ -25512,42 +28336,42 @@ dQ fK fR fR -dA -gk -gm -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +mw +mO +mT +na +mT +nm +mT +mZ +mT +mT +mT +mZ +mT +mT +ox +oG +oL +oz +mw +ap +ap +ap +ap +mv +ap +ap ap ap -gp -ap -iE -je -ju -iE -ap -iE -iE -iC -jg -lc -iE -ap -iE -lG -lS -iE ap ap -gp ap ap ap @@ -25654,42 +28478,42 @@ dQ fK fR fR -dA -gk -gn -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +mw +mw +mU +mT +mT +mT +nt +mw +nx +mT +nx +mw +oi +mT +oy +oH +oM +mw +mw +ap +ap +ap +ap +mv +ap ap ap -gp -iE -iC -jf -jv -iE ap -iE -kq -iE -jg -ld -iE ap -iE -jW -jg -iC -iE ap -gp ap ap ap @@ -25796,42 +28620,42 @@ dQ fK fR fR -dA -gk -go -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +ap +mw +mw +nb +nh +mT +nu +mw +nK +nO +mw +mw +oj +mT +oz +oz +mw +mw +ap +ap +ap +ap +ap +mv +ap ap ap -gp -iE -iS -jg -jw -iE ap -iE -kr -kA -jg -le -iE ap -iE -lI -jg -mg -iE ap -gp ap ap ap @@ -25938,42 +28762,42 @@ dQ fK fR fR -dA -gk -gk -gk -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +ap +ap +mw +mw +mw +nn +mw +mw +nL +nA +nV +mw +mw +mT +mw +mw +mw +ap +ap +ap +ap +ap +ap +mv +ap ap ap -gp -iE -iT -jg -jx -iE ap -iE -ks -iE -kQ -lf -iE ap -iE -lJ -jg -mh -iE ap -gp ap ap ap @@ -26080,42 +28904,42 @@ dQ fK fR fR -dA -gk -gk -gt -dB -gS -gS -gS -dB -hF -hF -hF fZ +mv +ap +ap +ap +ap +ap +ap +ap +ap +mw +mx +mw +nA +nA +nA +nW +ob +mw +mx +mw +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap ap ap -gp -iE -iE -jh -iE -iE -iE -iE -iC -kB -jg -jg -iE -iE -iE -iE -lT -iE -iE ap -gp ap ap ap @@ -26223,41 +29047,41 @@ fK fR fR fZ -bb -bb -bb -ar -bb -bb -bb -ar -bb -bb -bb -ar +mv +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mw +mw +mx +mx +mx +mw +mw +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap ap ap -gp -iE -iU -jg -jg -iE -iE -iE -iE -iE -jg -lg -iC -iE -jg -jg -jg -mi -iE ap -gp ap ap ap @@ -26365,6 +29189,7 @@ fK fR fR fZ +mv ap ap ap @@ -26379,27 +29204,26 @@ ap ap ap ap -gp -iE -iV -jg -jg -jM -iE -kj -kt -kC -jg -jg -ll -iE -lv -jg -jg -jg -iE ap -gp +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap +ap +ap +ap ap ap ap @@ -26507,41 +29331,41 @@ fK fR fR fZ -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -iI -iW -ji -jy -jg -jY -jg -jg -jH -jH -jg -jg -jY -jg -ji -lU -mj -lX +mv +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +ap +mv +ap +ap +ap +ap +ap ap -gp ap ap ap @@ -26649,41 +29473,41 @@ aL aL aL ar -gp -gu -gu -gu -gu -gu -gu -gu -gu -gu -gu +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +mv +ap ap ap ap ap -iJ -iX -jj -jz -jg -jg -jg -jH -jH -jH -jH -jg -jg -jg -lK -lV -mk -lY ap -gp ap ap ap @@ -26791,41 +29615,41 @@ dR dR dR fZ -gp -gu -gv -gv -gv -gu -ht -gu -hM -hM -gu +aI +aI +aI +ar +aI +aI +aI +ar +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 -iK -iY -jk -jk -jN -iE -jg -jH -kD -kR -jH -jg -iE -ly -lL -lW -ml -lZ ap -gp ap ap ap @@ -26932,51 +29756,51 @@ dS dR dS dS +dB +ga +ga +ga +dB +gN +gO +gO +dB +hx +hx +hx fZ -gp -gu -gw -gC -gC -gu -hu -gu -hH -hH -gu -ap -ap -ap -ap -iE -iE -iE -iE -iE -iC -jg -jH -kE -kS -jH -jg -iC -iE -iE -iE -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27074,51 +29898,51 @@ dT fL dT dT +dB +gb +ga +gq +dB +gO +gO +gP +dB +hy +hJ +hO fZ -gp -gu -gx -gC -gC -gC -gC -hG -hH -hS -gu -ap -ap -ap -ap -ap -iE -iE -jA -jO -jZ -kk -jH -kF -kT -jH -jV -lp -lz -lM -iE -iE -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27216,51 +30040,51 @@ fB fB fB fV +dB +gc +ga +gc +dB +gO +gO +gO +dB +hz +hK +hP fZ -gp -gu -gy -gC -hh -hh -gC -hH -hH -hT -gu -ap -ap -ap -ap -ap -ap -iI -jB -jP -ka -jg -jH -kG -kU -jH -jg -lq -lA -lN -lX -ap -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27358,51 +30182,51 @@ em em em fW +dB +gd +ga +ga +dB +gO +gN +gO +dB +hz +hK +hP fZ -gp -gu -gz -gC -gC -gC -gC -gu -hH -hH -gu -ap -ap -ap -ap -ap -ap -iJ -jC -jQ -kb -jg -jH -ag -ah -jH -jg -lr -lB -lO -lY -ap -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -27500,51 +30324,51 @@ em em em fW +dB +gc +ga +gq +dB +gO +gO +gO +dB +hA +hL +hQ fZ -gp -gu -gA -gT -hi -gC -gC -gu -hN -hN -gu -ap -ap -ap -ap -ap -ap -iK -jD -jR -kc -jg -jH -kI -kW -jH -jg -ls -lC -lP -lZ -ap -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +gX ap ap ap @@ -27642,51 +30466,51 @@ em em em fW +dB +gc +ga +gc +dB +gP +gO +gO +dB +hx +hx +hx fZ -gp -gu -gu -gu -gu -gC -gC -gu -gu -gu -gu -ap -ap -ap -ap -ap -iE -iE -jE -jS -kd -jg -jH -kJ -kX -jH -jg -lt -lD -lQ -iE -iE -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hm +hm +hv +hm +hm +hm +ia +in +in +in +ia +in +in +in +ia +in +in +in +ia +in +in +in +ia +in +hm +hm +hv +hm +hm +ai +mu ap ap ap @@ -27785,50 +30609,50 @@ em em fW fZ -gp -gu -gB -gU -hj -gC -gC -gC -gC -gC -gu -ap -ap -ap -ap -iE -iE -iE -jF -jT -ke -iE -jH -jH -jH -jH -iE -jF -jT -ke -iE -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +aL +aL +aL +ar +aL +aL +aL +ar +aL +aL +aL +ar +gX +hn +hn +hn +hn +hn +hn +ib +ib +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -27926,51 +30750,51 @@ em em em fW +dB +ge +gl +gr +dB +gQ +gR +gQ +dB +hB +hD +hD fZ -gp -gu -gC -gE -gE -gE -gE -gE -gE -gC -gu -gu -gu -gu -iC -iE -iC -jl -jG -jU -jU -iE -jg -jH -jH -jg -iE -lu -lE -lR -ma -iC -iE -iC -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +ho +ho +ho +ho +ho +ho +ic +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +lx +ho +ho +ho +ho +ho +al +gX ap ap ap @@ -28068,51 +30892,51 @@ fC fC fC fX +dB +gf +gl +gr +dB +gR +gQ +gR +dB +hC +hC +hC fZ -gp -gu -gC -gE -hk -hk -hk -hk -gE -gC -gC -gC -gC -iy -iD -jg -am -jg -jH -jH -jH -kl -jH -jH -jH -jH -kl -jH -jH -jH -mb -mm -mq -ms -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hn +hn +hn +hn +hn +hn +ib +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28210,51 +31034,51 @@ aL aL aL aL -ar -gp -gu -gC -gE -hk -hk -hk -hk -gE -gC -gC -im -gC -iy -iD -iM -iD -jg -jH -jH -jg -jg -jg -jH -jH -jg -jg -jg -jH -jH -mc -mn -mr -mt -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +as +gg +gl +gr +dB +gQ +hg +gQ +dB +hD +hD +hD +fZ +gX +hn +hn +hn +hn +hn +hn +ib +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28352,51 +31176,51 @@ dY dY dY dY +dB +gh +gl +gr +dB +gR +gQ +gR +dB +hD +hD +hD fZ -gp -gu -gC -gV -gV -gE -gE -gV -gV -gC -gu -gu -gu -gu -iC -iE -iC -jm -jg -jg -jM -iC -ku -kK -kY -lh -iC -lv -jg -jg -jg -iC -iE -iC -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hn +hn +hn +hn +hn +hn +id +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28494,51 +31318,51 @@ eo dY dY dY +dB +gi +gl +gr +dB +gQ +gR +gQ +dB +hE +hE +hE fZ -gp -gu -gC -gC -gC -gC -gC -gC -gC -gC -gu -ap -ap -ap -ap -iE -iE -iE -jI -jI -iC -iE -kv -kL -jH -jg -iE -iC -lF -lF -iE -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hn +hn +hn +hn +hn +hn +id +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28636,51 +31460,51 @@ eN dY dY dY +dB +gf +gl +gr +dB +gR +gQ +gR +dB +hD +hD +hR fZ -gp -gu -gu -gu -gu -hr -hr -gu -gu -gu -gu -ap -ap -ap -ap -ap -iI -jn -jg -jg -iE -km -jH -jH -jH -li -lm -iE -jg -jg -md -lX -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +ho +ho +ho +ho +ho +ho +ie +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +io +lx +ho +ho +ho +ho +ho +al +gX ap ap ap @@ -28779,50 +31603,50 @@ fM eo dY fZ -gp -gu -gD -gW -gE -gE -gE -gE -gW -gD -gu -ap -ap -ap -ap -ap -iK -jo -jg -jV -iE -km -jH -jH -jH -jH -ln -iE -kk -jg -me -lZ -ap -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +aL +aL +aL +ar +aL +aL +aL +ar +aL +aL +aL +ar +gX +hn +hn +hn +hn +hn +hn +id +id +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +ip +lo +lo +hn +hn +hn +hn +hn +aj +gX ap ap ap @@ -28920,51 +31744,51 @@ fD fM eo dY +dB +gj +gk +gs +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gE -gE -gE -gE -gE -gE -gE -gE -gu -ap -ap -ap -ap -iE -iC -jp -jg -cE -iC -iE -jg -jg -jg -jq -iE -iE -jg -jg -mf -iE -iE -ap -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hp +hp +hp +hI +hp +hp +if +iq +if +if +if +iq +if +if +if +iq +if +if +if +iq +if +if +if +iq +hp +hp +hp +hI +hp +dZ +gX ap ap ap @@ -29062,51 +31886,51 @@ fD fM eo dY +dB +gk +gm +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gD -gW -gE -gE -gE -gE -gD -gD -gu -ap -ap -ap -iE -iE -iZ -jg -jg -jg -kf -iE -iE -iE -iE -iE -iE -jg -jg -jg -jg -mo -iE -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +hl +gX ap ap ap @@ -29204,51 +32028,51 @@ fE fN dY dY +dB +gk +gn +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gE -gE -gE -gE -gE -gE -gE -gE -gu -ap -ap -ap -iE -iE -ja -jq -jJ -jg -kg -iE -iN -iN -iN -iN -iE -lw -jg -jg -jq -mp -iE -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29346,51 +32170,51 @@ eR dY dY dY +dB +gk +go +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gD -gW -gE -gE -gE -gE -gW -gD -gu -ap -ap -ap -iE -iE -iE -iE -iE -iE -iE -iE -ad -ae -ae -af -iE -iE -iE -iE -iE -iE -iE -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29488,51 +32312,51 @@ eo dY dY fY +dB +gk +gk +gk +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gE -gE -gE -gE -gE -gE -gE -gE -gu -ap -ap -ap -iE -iN -iN -iN -iN -iE -iE -ap -ap -ap -ap -ap -ap -iE -iE -iN -iN -iN -iN -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29630,51 +32454,51 @@ dY dY dY fY +dB +gk +gk +gt +dB +gS +gS +gS +dB +hF +hF +hF fZ -gp -gu -gu -gu -gu -gu -gu -gu -gu -gu -gu -ap -ap -ap -iE -ad -ae -ae -af -iE -ap -ap -ap -ap -ap -ap -ap -ap -iE -ad -ae -ae -af -iE -gp -ap -ap -ap -ap -ap -ap -ap -ap -ap +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX +gX ap ap ap @@ -29773,41 +32597,41 @@ bb bb bb ar -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp -gp +bb +bb +bb +ar +bb +bb +bb +ar +bb +bb +bb +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 diff --git a/maps/tether/submaps/tether_ships.dmm b/maps/tether/submaps/tether_ships.dmm index e24ebf782c..9ad3b6a752 100644 --- a/maps/tether/submaps/tether_ships.dmm +++ b/maps/tether/submaps/tether_ships.dmm @@ -2782,6 +2782,60 @@ icon_state = "rock" }, /area/space) +"kd" = ( +/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) +"oW" = ( +/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) +"yn" = ( +/turf/space/transit/north, +/area/ninja_dojo/transit) +"HO" = ( +/turf/space/transit/north, +/area/space) +"Js" = ( +/turf/space/transit/north, +/area/skipjack_station/transit) +"Nb" = ( +/turf/space, +/turf/space/transit/north, +/area/space) +"SG" = ( +/obj/effect/step_trigger/thrower{ + affect_ghosts = 1; + direction = 2; + name = "thrower_throwdown"; + nostop = 1; + stopper = 0; + tiles = 0 + }, +/turf/space/transit/north, +/area/space) +"TL" = ( +/turf/space/transit/east, +/area/shuttle/specialops/transit) (1,1,1) = {" aa @@ -2927,42 +2981,42 @@ aa "} (2,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd aa aa aa @@ -3013,7 +3067,7 @@ dQ dQ dQ dQ -aa +dJ gV gV gV @@ -3069,42 +3123,42 @@ aa "} (3,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3155,7 +3209,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -3211,42 +3265,42 @@ aa "} (4,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3297,7 +3351,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -3353,42 +3407,42 @@ aa "} (5,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3439,7 +3493,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -3495,42 +3549,42 @@ aa "} (6,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3581,7 +3635,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -3637,42 +3691,42 @@ aa "} (7,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3723,7 +3777,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -3779,42 +3833,42 @@ aa "} (8,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -3865,7 +3919,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -3921,42 +3975,42 @@ aa "} (9,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4007,7 +4061,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -4063,42 +4117,42 @@ aa "} (10,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4149,7 +4203,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -4205,42 +4259,42 @@ aa "} (11,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4347,42 +4401,42 @@ aa "} (12,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4433,7 +4487,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -4489,42 +4543,42 @@ aa "} (13,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4575,7 +4629,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -4631,42 +4685,42 @@ aa "} (14,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4717,7 +4771,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -4773,42 +4827,42 @@ aa "} (15,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -4859,7 +4913,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -4915,42 +4969,42 @@ aa "} (16,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5001,7 +5055,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -5057,42 +5111,42 @@ aa "} (17,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5143,7 +5197,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -5199,42 +5253,42 @@ aa "} (18,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5285,7 +5339,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -5341,42 +5395,42 @@ aa "} (19,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5427,7 +5481,7 @@ hd eO gU dQ -aa +dJ gV et et @@ -5483,42 +5537,42 @@ aa "} (20,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5569,7 +5623,7 @@ eO eO gU dQ -aa +dJ gV et et @@ -5625,42 +5679,42 @@ aa "} (21,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5711,7 +5765,7 @@ eO gU gU dQ -aa +dJ gV et et @@ -5767,42 +5821,42 @@ aa "} (22,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5853,7 +5907,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -5909,42 +5963,42 @@ aa "} (23,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -5995,7 +6049,7 @@ gU gU gU dQ -aa +dJ gV et et @@ -6051,42 +6105,42 @@ aa "} (24,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6137,7 +6191,7 @@ dQ dQ dQ dQ -aa +dJ gV gV gV @@ -6193,42 +6247,42 @@ aa "} (25,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6335,42 +6389,42 @@ aa "} (26,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6477,42 +6531,42 @@ aa "} (27,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6619,42 +6673,42 @@ aa "} (28,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6761,42 +6815,42 @@ aa "} (29,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -6903,42 +6957,42 @@ aa "} (30,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7045,42 +7099,42 @@ aa "} (31,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +Js +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7187,42 +7241,42 @@ aa "} (32,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +SG +Js +Js +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7329,42 +7383,42 @@ aa "} (33,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7471,42 +7525,42 @@ aa "} (34,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7613,42 +7667,42 @@ aa "} (35,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7755,42 +7809,42 @@ aa "} (36,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -7897,42 +7951,42 @@ aa "} (37,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -8039,42 +8093,42 @@ aa "} (38,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -8181,42 +8235,42 @@ aa "} (39,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +kd aa aa aa @@ -8323,42 +8377,42 @@ aa "} (40,1,1) = {" aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd aa aa aa @@ -12532,29 +12586,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv aa hv hv @@ -12674,29 +12728,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -12816,29 +12870,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -12958,29 +13012,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13100,29 +13154,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13242,29 +13296,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +hG +hG +hG +hG +hG +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13384,29 +13438,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13526,29 +13580,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13668,29 +13722,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13810,29 +13864,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -13952,29 +14006,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14094,29 +14148,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14236,29 +14290,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14378,29 +14432,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14520,29 +14574,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14662,29 +14716,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14804,29 +14858,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +TL +TL +TL +TL +TL +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -14946,29 +15000,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +hG +hH +TL +TL +TL +hI +hG +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15088,29 +15142,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +hG +hH +hH +hI +hI +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15230,29 +15284,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15372,29 +15426,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15514,29 +15568,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15656,29 +15710,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15798,29 +15852,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +gT +hv aa hv gT @@ -15940,29 +15994,29 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv +hv aa hv hv @@ -19773,30 +19827,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +kd +oW +oW +oW +oW aa aa aa @@ -19915,30 +19969,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hw hw @@ -20057,30 +20111,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -20199,30 +20253,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -20341,30 +20395,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -20483,30 +20537,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +SG +SG +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -20625,30 +20679,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +SG +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -20767,30 +20821,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +SG +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -20909,30 +20963,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW aa hw hp @@ -21051,30 +21105,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW aa hw hw @@ -21193,30 +21247,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW aa aa aa @@ -21335,30 +21389,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW aa hx gW @@ -21477,30 +21531,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +SG +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +yn +SG +HO +HO +HO +Nb +Nb +Nb +oW aa hx gX @@ -21619,30 +21673,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +SG +SG +SG +SG +SG +yn +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +Nb +Nb +Nb +oW aa hx gY @@ -21761,30 +21815,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +SG +yn +yn +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hx gY @@ -21903,30 +21957,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +SG +SG +yn +yn +yn +yn +SG +SG +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hx gY @@ -22045,30 +22099,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +SG +SG +SG +SG +SG +SG +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hx gY @@ -22187,30 +22241,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hx gY @@ -22329,30 +22383,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hx gZ @@ -22471,30 +22525,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +kd +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +HO +Nb +Nb +Nb +oW aa hx gW @@ -22613,30 +22667,30 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW +oW aa aa aa diff --git a/maps/tether/submaps/underdark_pois/_templates.dm b/maps/tether/submaps/underdark_pois/_templates.dm index b015159f83..6b250fb12e 100644 --- a/maps/tether/submaps/underdark_pois/_templates.dm +++ b/maps/tether/submaps/underdark_pois/_templates.dm @@ -36,7 +36,7 @@ /datum/map_template/underdark/guardedloot_hard name = "Underdark Guarded Loot Hard" mappath = 'guardedloot_hard.dmm' - cost = 20 + cost = 15 /datum/map_template/underdark/blaster name = "Underdark Blaster" @@ -88,12 +88,12 @@ /datum/map_template/underdark/old_drone_hive name = "Underdark Old Drone Hive" mappath = 'old_drone_hive.dmm' - cost = 25 + cost = 15 /datum/map_template/underdark/phoron_rat_den name = "Underdark Phoron Rat Den" mappath = 'phoron_rat_den.dmm' - cost = 35 + cost = 25 allow_duplicates = FALSE /datum/map_template/underdark/subterranean_lake @@ -123,6 +123,7 @@ mappath = 'abandonded_outpost.dmm' cost = 45 allow_duplicates = FALSE + discard_prob = 35 /datum/map_template/underdark/mimicry name = "Underdark Mimic Death" diff --git a/maps/tether/submaps/underdark_pois/abandonded_outpost.dmm b/maps/tether/submaps/underdark_pois/abandonded_outpost.dmm index 300da22c19..81eb5b5d65 100644 --- a/maps/tether/submaps/underdark_pois/abandonded_outpost.dmm +++ b/maps/tether/submaps/underdark_pois/abandonded_outpost.dmm @@ -28,10 +28,6 @@ /obj/machinery/floodlight, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) -"ai" = ( -/obj/machinery/door/airlock/uranium, -/turf/simulated/wall, -/area/mine/explored/underdark) "aj" = ( /obj/machinery/crystal, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, @@ -160,7 +156,9 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored/underdark) "aO" = ( -/obj/machinery/porta_turret/stationary/syndie, +/obj/machinery/porta_turret/stationary/syndie{ + faction = "underdark" + }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored/underdark) "aP" = ( @@ -355,7 +353,9 @@ /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored/underdark) "bB" = ( -/mob/living/simple_mob/mechanical/infectionbot, +/mob/living/simple_mob/mechanical/infectionbot{ + faction = "underdark" + }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored/underdark) "bC" = ( @@ -367,6 +367,10 @@ /obj/random/underdark, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/mine/explored/underdark) +"bE" = ( +/obj/item/device/geiger, +/turf/simulated/mineral/floor/ignore_cavegen/virgo3b, +/area/mine/explored/underdark) (1,1,1) = {" aa @@ -392,7 +396,6 @@ ad ad aj ad -aa ac "} (2,1,1) = {" @@ -411,15 +414,14 @@ ad aj ad ad +bE ad -aX ad ad aj ad ad ad -aa ac "} (3,1,1) = {" @@ -446,7 +448,6 @@ ab ab ab ad -aa ac "} (4,1,1) = {" @@ -473,7 +474,6 @@ bp ae ab ad -aa ac "} (5,1,1) = {" @@ -484,7 +484,7 @@ ad ah ad ad -ai +af ae ae ae @@ -500,7 +500,6 @@ ae ae ab ad -aa ac "} (6,1,1) = {" @@ -527,7 +526,6 @@ bi ae ab ad -aa ac "} (7,1,1) = {" @@ -554,7 +552,6 @@ br ae ab ad -aa ac "} (8,1,1) = {" @@ -581,7 +578,6 @@ bj bj ab ad -aa ac "} (9,1,1) = {" @@ -592,7 +588,7 @@ ad ad ad ad -ai +af ae ae ae @@ -608,7 +604,6 @@ bj bj ab bc -aa ac "} (10,1,1) = {" @@ -635,7 +630,6 @@ bj bD ab ad -aa ac "} (11,1,1) = {" @@ -662,7 +656,6 @@ ae bC ab ad -aa ac "} (12,1,1) = {" @@ -689,7 +682,6 @@ ae aJ ab ad -aa ac "} (13,1,1) = {" @@ -716,7 +708,6 @@ ae aK ab ad -aa ac "} (14,1,1) = {" @@ -726,7 +717,7 @@ ad ad be ad -ad +bE ab bl ae @@ -743,7 +734,6 @@ ae aL ab bc -aa ac "} (15,1,1) = {" @@ -770,7 +760,6 @@ ae bC ab ad -aa ac "} (16,1,1) = {" @@ -797,7 +786,6 @@ ae bC ab ad -aa ac "} (17,1,1) = {" @@ -824,7 +812,6 @@ ae ae ab ad -aa ac "} (18,1,1) = {" @@ -846,12 +833,11 @@ ae ae ae as -ab +aE ae ae ab ad -aa ac "} (19,1,1) = {" @@ -878,7 +864,6 @@ ae bk ab ad -aa ac "} (20,1,1) = {" @@ -900,12 +885,11 @@ bb ae ae aW -ab +aE ae ae ab ad -aa ac "} (21,1,1) = {" @@ -932,7 +916,6 @@ ae ae ab ad -aa ac "} (22,1,1) = {" @@ -959,7 +942,6 @@ bq ae ab ad -aa ac "} (23,1,1) = {" @@ -986,7 +968,6 @@ ab ab ab ad -aa ac "} (24,1,1) = {" @@ -1013,7 +994,6 @@ ad aj ad ad -aa ac "} (25,1,1) = {" @@ -1025,7 +1005,7 @@ aa aa aa ad -ad +bE ad ad ad @@ -1040,6 +1020,5 @@ ad ad ad ad -aa ac "} diff --git a/maps/tether/submaps/underdark_pois/mimicry.dmm b/maps/tether/submaps/underdark_pois/mimicry.dmm index 001206a9d1..b1f0613a74 100644 --- a/maps/tether/submaps/underdark_pois/mimicry.dmm +++ b/maps/tether/submaps/underdark_pois/mimicry.dmm @@ -8,10 +8,6 @@ "c" = ( /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) -"d" = ( -/obj/structure/closet/crate, -/turf/simulated/mineral/floor/ignore_cavegen/virgo3b, -/area/mine/explored/underdark) "e" = ( /obj/structure/closet/crate/mimic/cointoss, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, @@ -53,7 +49,7 @@ a b c e -d +h g h f @@ -66,7 +62,7 @@ c i c c -d +h a "} (4,1,1) = {" @@ -82,11 +78,11 @@ a (5,1,1) = {" b c -d +e f -d +e f -d +h a "} (6,1,1) = {" diff --git a/maps/tether/submaps/underdark_pois/puzzle_corridor.dmm b/maps/tether/submaps/underdark_pois/puzzle_corridor.dmm index 8e0f2ae6c0..a616f08699 100644 --- a/maps/tether/submaps/underdark_pois/puzzle_corridor.dmm +++ b/maps/tether/submaps/underdark_pois/puzzle_corridor.dmm @@ -9,61 +9,74 @@ /obj/tether_away_spawner/underdark_normal, /turf/simulated/mineral/floor/ignore_cavegen/virgo3b, /area/mine/explored/underdark) -"d" = ( -/turf/template_noop, -/area/mine/explored/underdark) (1,1,1) = {" -d -d -d b -a +b +b +b +b a b a b a b -d -d -d +b +b +b "} (2,1,1) = {" b b b -a +b a a b a b a -c +b b b b "} (3,1,1) = {" -a -a +b +b +b a a a b a -a -b -b -b b a -a +c +b +b +b "} (4,1,1) = {" a a +a +a +a +b +a +a +b +b +b +b +a +a +"} +(5,1,1) = {" +a +a b a b @@ -77,7 +90,7 @@ a a a "} -(5,1,1) = {" +(6,1,1) = {" b b b @@ -93,9 +106,9 @@ b b b "} -(6,1,1) = {" -d -d +(7,1,1) = {" +b +b b a a @@ -106,6 +119,22 @@ a b a b -d -d +b +b +"} +(8,1,1) = {" +b +b +b +b +a +b +b +a +b +b +b +b +b +b "} diff --git a/maps/tether/tether-01-surface1.dmm b/maps/tether/tether-01-surface1.dmm index f98378c8df..344cb2d464 100644 --- a/maps/tether/tether-01-surface1.dmm +++ b/maps/tether/tether-01-surface1.dmm @@ -1358,12 +1358,17 @@ /turf/simulated/floor/tiled, /area/engineering/atmos) "acw" = ( -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 1 - }, -/turf/simulated/floor/tiled/monofloor{ +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; dir = 1 }, +/obj/machinery/vending/loadout/clothing, +/turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "acx" = ( /turf/simulated/floor/tiled, @@ -1373,29 +1378,17 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/storage) "acz" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - autoclose = 1; - dir = 2; - id_tag = null; - name = "Laundry"; - req_access = list() +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals_central1, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/monofloor, +/obj/machinery/vending/loadout, +/turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "acA" = ( /obj/effect/floor_decal/borderfloor{ @@ -1657,6 +1650,7 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 8 }, +/obj/vehicle/train/engine, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/storage) "acV" = ( @@ -2346,6 +2340,16 @@ /obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/item/device/destTagger{ + pixel_x = 4; + pixel_y = 3 + }, +/obj/item/weapon/packageWrap, +/obj/item/weapon/paper{ + desc = ""; + info = "There is a pipe you can send stuff through in the warehouse. This is primarily a direct pipeline between mining and cargo. However, it can mail things to the 'Research' tag. If you tag anything else, it will just go to cargo! Keep it in mind."; + name = "note to mining staff" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/storage) "adY" = ( @@ -2693,15 +2697,11 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "aeC" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/sign/department/miner_dock{ + name = "MINING" }, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 - }, -/obj/vehicle/train/engine, -/turf/simulated/floor/tiled/steel_dirty, -/area/tether/surfacebase/mining_main/ore) +/turf/simulated/wall, +/area/tether/surfacebase/mining_main/eva) "aeD" = ( /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -2717,10 +2717,13 @@ /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "aeE" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/vehicle/train/trolley, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "aeF" = ( @@ -2806,6 +2809,15 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 1 }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + icon_state = "0-2" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "aeM" = ( @@ -3096,7 +3108,7 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "afe" = ( -/obj/structure/closet/crate, +/obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "aff" = ( @@ -3149,7 +3161,7 @@ dir = 4 }, /turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "afi" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -3166,8 +3178,17 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "afk" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) @@ -3233,7 +3254,7 @@ }, /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "afq" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/virgo3b, @@ -3367,7 +3388,10 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "afD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/vehicle/train/trolley, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "afE" = ( @@ -3511,12 +3535,13 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "afP" = ( -/obj/structure/table/glass, -/obj/effect/floor_decal/borderfloor{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) @@ -3588,15 +3613,15 @@ /area/tether/surfacebase/tram) "afZ" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, /obj/effect/floor_decal/corner/grey/border{ icon_state = "bordercolor"; - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 + dir = 1 }, +/obj/machinery/vending/loadout/overwear, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aga" = ( @@ -3626,23 +3651,22 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "age" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, /obj/vehicle/train/trolley, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "agf" = ( -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/crate, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "agg" = ( -/obj/structure/closet/crate, -/obj/machinery/light, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "agh" = ( @@ -3670,10 +3694,6 @@ /obj/effect/floor_decal/corner/brown/bordercorner2{ dir = 8 }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agk" = ( @@ -3681,40 +3701,29 @@ /turf/simulated/floor/tiled, /area/rnd/xenoarch_storage) "agl" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/junction, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agm" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agn" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "ago" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agp" = ( @@ -3781,26 +3790,18 @@ /turf/simulated/floor/tiled, /area/rnd/xenoarch_storage) "agx" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 + dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agz" = ( @@ -3836,12 +3837,8 @@ /turf/simulated/floor/tiled/steel_grid, /area/rnd/xenoarch_storage) "agD" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agE" = ( @@ -3913,15 +3910,12 @@ /area/rnd/chemistry_lab) "agM" = ( /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "agN" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "agO" = ( @@ -4093,53 +4087,31 @@ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ahd" = ( +/obj/structure/table/glass, /obj/effect/floor_decal/borderfloor{ - dir = 8 + dir = 4 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 8 + dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/machinery/newscaster{ + pixel_x = 30; + pixel_y = 0 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "ahe" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 5 - }, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) @@ -4301,29 +4273,30 @@ /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ahv" = ( -/obj/machinery/door/airlock/multi_tile/glass{ - name = "Mining Lobby" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor/glass, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 8 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/turf/simulated/floor/tiled/monofloor{ - dir = 8 +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 9 }, -/area/tether/surfacebase/atrium_one) +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/lobby) "ahw" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals_central1{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/monofloor{ - dir = 4 - }, -/area/tether/surfacebase/atrium_one) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/lobby) "ahx" = ( /turf/simulated/wall, /area/tether/surfacebase/emergency_storage/atrium) @@ -4636,13 +4609,17 @@ /turf/simulated/wall, /area/tether/surfacebase/north_stairs_one) "ahY" = ( -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 }, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/north_stairs_one) +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/mining_main/ore) "ahZ" = ( /obj/structure/sign/directions/cargo{ dir = 4 @@ -4685,7 +4662,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aid" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4704,7 +4681,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aie" = ( /obj/machinery/light{ dir = 1 @@ -4723,7 +4700,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aif" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4740,7 +4717,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aig" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4756,23 +4733,18 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aih" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/computer/supplycomp{ + icon_state = "computer"; dir = 1 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/mining_main/lobby) "aii" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4791,7 +4763,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aij" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4800,48 +4772,36 @@ /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) "aik" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, /obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 + dir = 9 }, /obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 + dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/mining_main/lobby) "ail" = ( -/obj/structure/disposalpipe/segment{ +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/trunk{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 +/obj/structure/plasticflaps, +/obj/machinery/disposal/deliveryChute{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/mining_main/ore) "aim" = ( -/obj/structure/disposalpipe/junction{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/mining_main/lobby) "ain" = ( /obj/machinery/chem_master, /obj/effect/floor_decal/borderfloor{ @@ -4857,22 +4817,15 @@ /turf/simulated/floor/tiled/white, /area/rnd/chemistry_lab) "aio" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/structure/bed/chair{ dir = 1 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/mining_main/lobby) "aip" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/beakers, @@ -4901,18 +4854,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/eva) "air" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/obj/structure/closet/firecloset, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "ais" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -5150,30 +5094,10 @@ /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/north_stairs_one) "aiQ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/north_stairs_one) +/area/tether/surfacebase/mining_main/lobby) "aiR" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -5328,7 +5252,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 1 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ajb" = ( /obj/structure/cable/green{ d1 = 1; @@ -5669,7 +5593,7 @@ pixel_x = 24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ajB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -6682,6 +6606,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "alF" = ( @@ -6747,21 +6674,11 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "alJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 1 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/mining_main/ore) "alK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -6946,7 +6863,14 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "alY" = ( -/obj/vehicle/train/trolley, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "alZ" = ( @@ -6967,22 +6891,22 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "amb" = ( -/obj/structure/disposalpipe/junction, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) -"amc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) +"amc" = ( +/turf/simulated/wall, +/area/tether/surfacebase/mining_main/surfacecargo) "amd" = ( /obj/structure/table/glass, /obj/effect/floor_decal/borderfloor{ @@ -7143,15 +7067,13 @@ /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "ams" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" }, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) @@ -7192,13 +7114,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "amw" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/obj/structure/sign/department/cargo, +/turf/simulated/wall, +/area/tether/surfacebase/mining_main/surfacecargo) "amx" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -7208,13 +7126,13 @@ name = "Mining Lobby" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/monofloor{ dir = 8 }, /area/tether/surfacebase/mining_main/lobby) "amy" = ( /obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 4 }, @@ -7224,33 +7142,32 @@ }, /area/tether/surfacebase/mining_main/lobby) "amz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + id = "mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -26; + pixel_y = 24; + req_access = list(31) }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 +/obj/machinery/button/remote/blast_door{ + id = "surfcargooffice"; + name = "Office Shutters"; + pixel_x = -34; + pixel_y = 24; + req_access = list(31) }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/camera/network/cargo{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/bed/chair/office/dark{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/mining_main/surfacecargo) "amA" = ( /obj/effect/floor_decal/techfloor{ dir = 10 @@ -7416,58 +7333,32 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "amN" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 +/obj/machinery/light, +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" }, -/obj/structure/cable/green, -/obj/structure/closet/crate, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "amO" = ( -/obj/machinery/button/remote/blast_door{ - id = "mine_warehouse"; - name = "Warehouse Door Control"; - pixel_x = 26; - pixel_y = 0; - req_access = list(31) +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" }, -/obj/structure/closet/crate, /turf/simulated/floor/tiled/steel_dirty, /area/tether/surfacebase/mining_main/ore) "amP" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 9 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = -30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/mining_main/surfacecargo) "amQ" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "amR" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -7623,14 +7514,9 @@ /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden) "anc" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/machinery/door/airlock/maintenance/common{ - name = "Mining Maintenance Access" +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, @@ -7646,31 +7532,20 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining_eva) "ane" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/mining_main/lobby) +/area/tether/surfacebase/mining_main/surfacecargo) "anf" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -7789,51 +7664,41 @@ /turf/simulated/floor/tiled, /area/storage/primary) "anm" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/mining_main/ore) "ann" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 +/obj/machinery/button/remote/blast_door{ + id = "mine_warehouse"; + name = "Warehouse Door Control"; + pixel_x = 0; + pixel_y = -22; + req_access = list(31) }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/tiled/steel_dirty, +/area/tether/surfacebase/mining_main/ore) "ano" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/machinery/door/airlock/maintenance/cargo{ + name = "Mining Maintenance Access"; + req_one_access = list(48) }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/mining_eva) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/mining_main/ore) "anp" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/cable{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) "anq" = ( /obj/effect/decal/cleanable/dirt, @@ -8024,96 +7889,53 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/machinery/newscaster{ - pixel_x = 0; - pixel_y = 30 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) -"anF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) -"anG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/firealarm{ +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/door/window/northright{ dir = 2; + name = "Mailing Room"; + req_access = list(50) + }, +/obj/structure/noticeboard{ + pixel_x = 32 + }, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; layer = 3.3; - pixel_x = 0; - pixel_y = 26 + name = "Cargo Office Shutters" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) -"anH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/status_display{ - pixel_y = 30 +/area/tether/surfacebase/mining_main/surfacecargo) +"anF" = ( +/obj/machinery/door/airlock/maintenance/cargo{ + name = "Mining Maintenance Access"; + req_one_access = list(48) }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/mining_main/surfacecargo) +"anG" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) +"anH" = ( +/obj/structure/plasticflaps, +/obj/machinery/conveyor{ + dir = 4; + id = "gloriouscargopipeline" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/mining_main/lobby) "anI" = ( /obj/structure/cable{ icon_state = "0-2"; @@ -8299,7 +8121,7 @@ sortType = "Primary Tool Storage" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anV" = ( /obj/structure/cable{ d1 = 2; @@ -8307,7 +8129,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anW" = ( /obj/structure/cable{ d1 = 4; @@ -8316,7 +8138,7 @@ pixel_x = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anX" = ( /obj/structure/cable{ d1 = 4; @@ -8326,7 +8148,7 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anY" = ( /obj/structure/cable{ d1 = 4; @@ -8336,7 +8158,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "anZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8357,7 +8179,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoa" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -8371,7 +8193,7 @@ req_one_access = list() }, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aob" = ( /obj/structure/cable{ d1 = 1; @@ -8465,18 +8287,18 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoi" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoj" = ( /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aok" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aol" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8494,7 +8316,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aom" = ( /obj/structure/closet/firecloset/full/double, /turf/simulated/floor/tiled/techfloor, @@ -8825,7 +8647,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoQ" = ( /obj/structure/cable{ d1 = 1; @@ -8834,15 +8656,15 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoR" = ( /obj/machinery/light/flamp/noshade, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoS" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoT" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -8860,7 +8682,7 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aoU" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -9251,11 +9073,11 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apA" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apB" = ( /obj/structure/railing{ dir = 1 @@ -9264,13 +9086,13 @@ dir = 8 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apC" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apD" = ( /obj/structure/railing{ dir = 4 @@ -9279,7 +9101,7 @@ dir = 1 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9298,7 +9120,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "apF" = ( /turf/simulated/wall, /area/maintenance/lower/vacant_site) @@ -9566,22 +9388,22 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqe" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqf" = ( /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqg" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9596,7 +9418,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqi" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -9607,12 +9429,9 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/vacant_site) "aqj" = ( +/obj/structure/ladder/up, /obj/structure/catwalk, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/cargo, -/obj/random/drinkbottle, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) "aqk" = ( @@ -9947,7 +9766,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -9968,11 +9787,11 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqK" = ( /mob/living/simple_mob/animal/passive/fish/koi/poisonous, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqL" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -9987,14 +9806,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqM" = ( /obj/structure/grille, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aqN" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -10039,11 +9858,27 @@ /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) "aqS" = ( -/obj/structure/ladder/up, -/obj/structure/catwalk, -/obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/airlock{ + id_tag = "spacedorm1"; + name = "Room 1" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled, +/area/crew_quarters/sleep/Dorm_2) "aqT" = ( /turf/simulated/wall/r_wall, /area/storage/surface_eva/external) @@ -10173,26 +10008,13 @@ pixel_x = -24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arg" = ( /obj/structure/railing, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arh" = ( -/obj/structure/railing{ - dir = 1 - }, /obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) "ari" = ( @@ -10231,15 +10053,18 @@ /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) "arm" = ( -/obj/structure/railing{ +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; dir = 1 }, -/obj/structure/railing{ - dir = 4 - }, -/obj/random/trash_pile, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) +/obj/machinery/vending/loadout/accessory, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "arn" = ( /obj/structure/table/glass, /obj/item/weapon/storage/toolbox/emergency, @@ -10373,22 +10198,22 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ary" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arz" = ( /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arA" = ( /obj/machinery/light/small{ dir = 1 }, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arB" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10406,25 +10231,34 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arC" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" + d2 = 2; + icon_state = "0-2" }, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/vacant_site) "arD" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/turf/simulated/floor/plating, -/area/maintenance/lower/vacant_site) +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/machinery/vending/loadout/gadget, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "arE" = ( /obj/structure/table/rack, /obj/item/bodybag/cryobag, @@ -10577,7 +10411,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "arO" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -10712,7 +10546,7 @@ "asa" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asb" = ( /obj/structure/cable{ d1 = 1; @@ -10722,7 +10556,7 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asc" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/light/small{ @@ -10730,19 +10564,19 @@ pixel_x = 0 }, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asd" = ( /obj/structure/flora/ausbushes/ywflowers, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ase" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asf" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10761,7 +10595,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asg" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall, @@ -10860,7 +10694,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ass" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -10886,7 +10720,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ast" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/industrial/outline, @@ -11100,23 +10934,28 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) "asH" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "asI" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "asJ" = ( /obj/structure/catwalk, /obj/machinery/firealarm{ @@ -11149,7 +10988,7 @@ dir = 4 }, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asN" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -11170,19 +11009,19 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asO" = ( /obj/machinery/light/small, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asP" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asQ" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 @@ -11200,7 +11039,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "asR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -11364,19 +11203,19 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atl" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atn" = ( /obj/machinery/status_display{ pixel_x = 32; @@ -11401,7 +11240,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ato" = ( /obj/machinery/camera/network/civilian{ dir = 4 @@ -11660,7 +11499,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atN" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -11675,7 +11514,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atO" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 @@ -11701,7 +11540,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "atP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -11983,12 +11822,19 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) "aup" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/yellow{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "auq" = ( /obj/structure/railing{ dir = 8 @@ -12026,7 +11872,7 @@ pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aut" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -12037,7 +11883,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auu" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -12062,7 +11908,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auv" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -12276,11 +12122,10 @@ /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/xenoflora) "auM" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) +/obj/structure/table/rack, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) "auN" = ( /obj/machinery/light{ dir = 8 @@ -12300,21 +12145,21 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auO" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auP" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/water/pool, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -12339,7 +12184,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "auR" = ( /turf/simulated/wall, /area/security/checkpoint) @@ -12539,12 +12384,16 @@ "avl" = ( /obj/structure/catwalk, /obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/xenoflora) +/area/maintenance/lower/mining_eva) "avm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -12564,7 +12413,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avn" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -12586,7 +12435,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avo" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 @@ -12615,7 +12464,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13089,7 +12938,7 @@ /area/maintenance/lower/xenoflora) "avU" = ( /turf/simulated/wall/r_wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avV" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -13112,7 +12961,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13123,7 +12972,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avX" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13144,7 +12993,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "avY" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -13547,7 +13396,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awF" = ( /obj/structure/cable{ d1 = 1; @@ -13562,7 +13411,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awG" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -13575,7 +13424,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awH" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13587,7 +13436,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awI" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -13600,7 +13449,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awJ" = ( /obj/structure/disposalpipe/junction{ dir = 1; @@ -13618,7 +13467,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13637,7 +13486,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "awL" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall, @@ -13884,7 +13733,7 @@ dir = 2 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axh" = ( /obj/machinery/camera/network/northern_star, /obj/effect/floor_decal/borderfloor{ @@ -13895,7 +13744,7 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -13910,7 +13759,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axj" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/structure/cable{ @@ -13927,7 +13776,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axk" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable{ @@ -13941,7 +13790,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axl" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/power/apc{ @@ -13961,7 +13810,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -13972,7 +13821,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axn" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/camera/network/northern_star{ @@ -13986,7 +13835,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axo" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/light, @@ -13998,7 +13847,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -14013,7 +13862,7 @@ pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axq" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/newscaster{ @@ -14028,7 +13877,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -14043,7 +13892,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axs" = ( /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled{ @@ -14343,7 +14192,7 @@ "axT" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axU" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -14352,7 +14201,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axV" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14369,7 +14218,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14385,7 +14234,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14401,7 +14250,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14420,7 +14269,7 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "axZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14436,7 +14285,7 @@ pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aya" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14452,7 +14301,7 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayb" = ( /obj/machinery/light{ dir = 1 @@ -14468,7 +14317,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14481,7 +14330,7 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -14496,7 +14345,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aye" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -14511,7 +14360,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -14523,7 +14372,7 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayg" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14549,7 +14398,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayh" = ( /turf/simulated/wall, /area/crew_quarters/locker/laundry_arrival) @@ -14578,7 +14427,7 @@ pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayk" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -14593,7 +14442,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayl" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14614,7 +14463,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aym" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -14931,32 +14780,32 @@ /area/maintenance/lower/xenoflora) "ayG" = ( /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayH" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayI" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayM" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -14964,14 +14813,14 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayO" = ( /obj/structure/cable{ d1 = 1; @@ -14983,7 +14832,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -15010,7 +14859,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayQ" = ( /obj/machinery/status_display{ pixel_y = 30 @@ -15133,7 +14982,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -15145,7 +14994,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "ayZ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -15164,7 +15013,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aza" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15186,7 +15035,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15205,7 +15054,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15221,7 +15070,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15234,7 +15083,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aze" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15256,7 +15105,7 @@ pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azf" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -15265,7 +15114,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15287,7 +15136,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15304,7 +15153,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15323,7 +15172,7 @@ req_access = list() }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15342,7 +15191,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15358,7 +15207,7 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -15374,7 +15223,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_external/public, @@ -15666,12 +15515,12 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azM" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azN" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -15683,7 +15532,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azO" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15697,7 +15546,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azP" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15711,7 +15560,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azQ" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15729,7 +15578,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azR" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -15746,7 +15595,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azS" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15763,7 +15612,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azT" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -15784,7 +15633,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azU" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15810,7 +15659,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azV" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15835,7 +15684,7 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azW" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15856,7 +15705,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azX" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15882,7 +15731,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azY" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -15904,7 +15753,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "azZ" = ( /obj/machinery/alarm{ dir = 4; @@ -16000,7 +15849,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAh" = ( /obj/structure/disposalpipe/junction{ dir = 1 @@ -16011,7 +15860,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAi" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 @@ -16020,7 +15869,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAj" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16028,28 +15877,28 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAk" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAl" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAn" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -16059,7 +15908,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAo" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -16326,7 +16175,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAO" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -16336,13 +16185,13 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAP" = ( /obj/structure/sign/directions/evac{ name = "\improper Secondary Evacuation Route" }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAQ" = ( /obj/structure/cable{ d1 = 1; @@ -16359,20 +16208,20 @@ name = "Evacuation Route" }, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAR" = ( /obj/structure/sign/directions/evac{ dir = 4 }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAS" = ( /obj/structure/closet/crate, /obj/item/weapon/handcuffs/fuzzy, /obj/random/maintenance/security, /obj/random/contraband, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aAT" = ( /obj/structure/disposalpipe/segment{ dir = 4; @@ -16497,7 +16346,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBc" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16525,7 +16374,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBd" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16547,7 +16396,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBe" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16572,7 +16421,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -16594,7 +16443,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBg" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16619,7 +16468,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBh" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, @@ -16645,7 +16494,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -16663,7 +16512,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBj" = ( /obj/effect/floor_decal/steeldecal/steel_decals6, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -16683,7 +16532,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBk" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16707,7 +16556,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBl" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16729,7 +16578,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBm" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -16749,7 +16598,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBn" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/light, @@ -16772,7 +16621,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBo" = ( /obj/machinery/door/airlock/glass_external/public, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -17151,7 +17000,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 8 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -17167,17 +17016,17 @@ /turf/simulated/floor/tiled/monofloor{ dir = 4 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aBZ" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCa" = ( /obj/structure/grille, /obj/structure/railing{ @@ -17667,7 +17516,7 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCM" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 @@ -17677,7 +17526,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCN" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 @@ -17690,7 +17539,7 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aCO" = ( /turf/simulated/wall, /area/crew_quarters/visitor_dining) @@ -18002,7 +17851,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -18016,7 +17865,7 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDt" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -18045,7 +17894,7 @@ icon_state = "1-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDu" = ( /turf/simulated/floor/lino, /area/crew_quarters/visitor_dining) @@ -18273,7 +18122,7 @@ /turf/simulated/floor/tiled/monofloor{ dir = 1 }, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDU" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 @@ -18289,13 +18138,13 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -18310,7 +18159,7 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aDX" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, @@ -18703,7 +18552,7 @@ req_access = list() }, /turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aEG" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 6 @@ -18717,13 +18566,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aEH" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aEI" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -19153,7 +19002,7 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFu" = ( /obj/structure/cable/green{ d1 = 4; @@ -19170,7 +19019,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFv" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 5 @@ -19190,7 +19039,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFw" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1, @@ -19479,7 +19328,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -19494,7 +19343,7 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aFQ" = ( /obj/structure/cable/green{ d1 = 1; @@ -20046,7 +19895,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/computer/timeclock/premade/west, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aGw" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -20055,7 +19904,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aGx" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; @@ -20187,18 +20036,23 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 8 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/structure/sign/nosmoking_2{ - pixel_x = -32 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) "aGL" = ( @@ -20260,20 +20114,25 @@ /obj/effect/floor_decal/corner/brown/border{ dir = 4 }, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 }, -/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/mining_main/lobby) @@ -20591,7 +20450,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aHl" = ( /obj/machinery/camera/network/civilian{ dir = 4 @@ -20806,7 +20665,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aHG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20843,6 +20702,29 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside1) +"aHM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/structure/bed/chair/sofa/corner{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 10 + }, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) "aHN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -21073,27 +20955,27 @@ "aIl" = ( /obj/structure/flora/pottedplant/flower, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIm" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIn" = ( /obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIo" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIp" = ( /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -21107,7 +20989,7 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aIr" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -21195,6 +21077,33 @@ /obj/structure/bed/chair/wood, /turf/simulated/floor/lino, /area/crew_quarters/visitor_dining) +"aIA" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 10; + pixel_y = 32 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "gloriouscargopipeline"; + layer = 3.3; + name = "outbound conveyor"; + pixel_y = 14 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) "aIB" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -21533,7 +21442,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21543,7 +21452,7 @@ }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21560,7 +21469,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21572,7 +21481,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJg" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 @@ -21584,7 +21493,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -21599,7 +21508,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJi" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -21615,7 +21524,7 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJj" = ( /obj/structure/cable/green{ d1 = 1; @@ -21634,13 +21543,13 @@ icon_state = "pipe-j2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJl" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -21654,7 +21563,7 @@ pixel_x = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJm" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/condiment/small/sugar, @@ -21990,7 +21899,7 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJQ" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/lightgrey/border/shifted, @@ -21998,7 +21907,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -22008,7 +21917,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -22038,7 +21947,7 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJT" = ( /obj/structure/cable/green{ d1 = 2; @@ -22055,7 +21964,7 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -22074,7 +21983,7 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aJV" = ( /obj/structure/bed/chair/wood{ dir = 1 @@ -22393,7 +22302,7 @@ "aKA" = ( /obj/structure/stairs/south, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKB" = ( /obj/structure/railing{ dir = 8 @@ -22409,7 +22318,7 @@ }, /obj/machinery/disposal, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKC" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22428,7 +22337,7 @@ pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKD" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22444,7 +22353,7 @@ }, /obj/machinery/vending/coffee, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKE" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22457,7 +22366,7 @@ }, /obj/machinery/lapvend, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKF" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -22467,7 +22376,7 @@ }, /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKG" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -22483,7 +22392,7 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKH" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -22496,12 +22405,12 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKI" = ( /obj/effect/floor_decal/steeldecal/steel_decals6, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_one) +/area/tether/surfacebase/surface_one_hall) "aKJ" = ( /obj/machinery/light, /turf/simulated/floor/lino, @@ -25748,6 +25657,15 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) +"aQE" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) "aQF" = ( /obj/machinery/light{ dir = 8 @@ -27253,27 +27171,18 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aTB" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/machinery/door/airlock{ - id_tag = "dorm2"; - name = "Room 2" +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, +/obj/machinery/vending/loadout/loadout_misc, /turf/simulated/floor/tiled, -/area/crew_quarters/sleep/Dorm_2) +/area/crew_quarters/visitor_laundry) "aTC" = ( /obj/structure/cable/green{ d1 = 4; @@ -27652,85 +27561,6 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aUo" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/white, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUp" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/mixed, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/xenos, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/suit, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUs" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/closet/wardrobe/black, -/obj/random/maintenance/clean, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUt" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/structure/undies_wardrobe, -/turf/simulated/floor/tiled, -/area/crew_quarters/visitor_laundry) -"aUu" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -27738,12 +27568,110 @@ icon_state = "bordercolor"; dir = 5 }, -/obj/structure/closet/wardrobe/pjs, /obj/machinery/light{ dir = 4; icon_state = "tube1"; pixel_x = 0 }, +/obj/machinery/vending/loadout/costume, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor{ + dir = 1 + }, +/area/crew_quarters/visitor_laundry) +"aUr" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + autoclose = 1; + dir = 2; + id_tag = null; + name = "Laundry"; + req_access = list() + }, +/obj/effect/floor_decal/steeldecal/steel_decals_central1, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/monofloor, +/area/crew_quarters/visitor_laundry) +"aUs" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"aUu" = ( +/obj/machinery/washing_machine, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aUv" = ( @@ -28510,20 +28438,8 @@ /turf/simulated/floor/tiled, /area/crew_quarters/visitor_lodging) "aVP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/grey/border{ - icon_state = "bordercolor"; - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 1 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aVQ" = ( @@ -29002,19 +28918,30 @@ "aWY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/grey/border, -/obj/structure/table/standard, -/obj/item/weapon/storage/box/cups, /obj/machinery/firealarm{ dir = 1; pixel_x = 0; pixel_y = -24 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aWZ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/grey/border, -/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aXa" = ( @@ -29022,6 +28949,8 @@ /obj/effect/floor_decal/corner/grey/border, /obj/structure/table/standard, /obj/item/weapon/storage/laundry_basket, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/grey/bordercorner2, /turf/simulated/floor/tiled, /area/crew_quarters/visitor_laundry) "aXb" = ( @@ -30871,6 +30800,1095 @@ /obj/effect/step_trigger/teleporter/to_plains, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside1) +"baY" = ( +/obj/structure/table/standard, +/obj/item/weapon/stamp/cargo, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/clipboard, +/obj/item/weapon/folder/yellow, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"baZ" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bba" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/sign/nosmoking_2{ + pixel_x = -32 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/lobby) +"bbb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/lobby) +"bbc" = ( +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbd" = ( +/obj/random/cash, +/obj/random/contraband, +/obj/random/mre, +/obj/structure/closet/crate, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbe" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbf" = ( +/obj/machinery/computer/supplycomp/control{ + icon_state = "computer"; + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbg" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/lobby) +"bbh" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/lobby) +"bbi" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Mining Lobby" + }, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/monofloor{ + dir = 8 + }, +/area/tether/surfacebase/surface_one_hall) +"bbj" = ( +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals_central1{ + dir = 4 + }, +/turf/simulated/floor/tiled/monofloor{ + dir = 4 + }, +/area/tether/surfacebase/surface_one_hall) +"bbk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = 30 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbm" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbn" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbo" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbp" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbq" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbs" = ( +/obj/machinery/power/apc{ + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/structure/bed/chair/sofa/left{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbt" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbu" = ( +/obj/structure/disposalpipe/junction{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_one_hall) +"bbv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbw" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbx" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bby" = ( +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbA" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbC" = ( +/obj/structure/bed/chair/sofa/left{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbD" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbE" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbF" = ( +/obj/structure/filingcabinet/chestdrawer, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbG" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/hallway/lower/first_west) +"bbH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbI" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"bbJ" = ( +/obj/structure/catwalk, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"bbK" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/mining_eva) +"bbL" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbM" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Mining Maintenance Access" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/north_stairs_one) +"bbN" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbO" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbP" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbQ" = ( +/turf/simulated/mineral, +/area/tether/surfacebase/surface_one_hall) +"bbR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_stairs_one) +"bbS" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/lower/first_west) +"bbT" = ( +/turf/simulated/mineral, +/area/maintenance/lower/mining_eva) +"bbU" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/obj/random/maintenance/clean, +/obj/random/maintenance/engineering, +/obj/random/maintenance/medical, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bbV" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbW" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "surfcargooffice"; + layer = 3.3; + name = "Cargo Office Shutters" + }, +/turf/simulated/floor/plating, +/area/tether/surfacebase/mining_main/surfacecargo) +"bbX" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bbY" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bbZ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bca" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/yellow{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcc" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcd" = ( +/turf/simulated/mineral, +/area/maintenance/lower/xenoflora) +"bce" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcf" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcg" = ( +/obj/structure/table/rack, +/obj/random/maintenance/cargo, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bch" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bci" = ( +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/mining_eva) +"bcj" = ( +/obj/machinery/door/airlock/glass{ + name = "Dressing Room" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bck" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcl" = ( +/obj/random/junk, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcm" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcn" = ( +/obj/structure/closet/crate, +/obj/random/tool, +/obj/random/tool, +/obj/random/tool, +/obj/random/cigarettes, +/obj/random/coin, +/obj/random/drinkbottle, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bco" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcp" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcq" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcr" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcs" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bct" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcu" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/xenoflora) +"bcv" = ( +/obj/structure/disposalpipe/up{ + dir = 1 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcw" = ( +/obj/structure/disposalpipe/segment, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcx" = ( +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcy" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcz" = ( +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/trash, +/obj/effect/decal/cleanable/cobweb, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcA" = ( +/obj/structure/table, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcB" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/decal/cleanable/dirt, +/obj/random/trash, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcC" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/closet/crate, +/obj/random/unidentified_medicine, +/obj/random/firstaid, +/obj/random/drinkbottle, +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/xenoflora) +"bcD" = ( +/obj/structure/closet/wardrobe/black, +/obj/random/maintenance/clean, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcE" = ( +/obj/structure/closet/wardrobe/white, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcG" = ( +/obj/structure/undies_wardrobe, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcH" = ( +/obj/structure/closet/wardrobe/pjs, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcI" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 8 + }, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcK" = ( +/obj/structure/closet/wardrobe/xenos, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcL" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/grey/border, +/obj/machinery/light/small, +/obj/structure/table/bench/standard, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) +"bcN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/grey/border{ + icon_state = "bordercolor"; + dir = 6 + }, +/obj/structure/closet/firecloset, +/turf/simulated/floor/tiled, +/area/crew_quarters/visitor_laundry) "cGJ" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining_eva) @@ -30880,6 +31898,25 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/vacant_site) +"lry" = ( +/obj/structure/catwalk, +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/obj/random/maintenance/cargo, +/obj/random/drinkbottle, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) +"nlo" = ( +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/plating, +/area/maintenance/lower/vacant_site) "obY" = ( /obj/machinery/alarm{ pixel_y = 22 @@ -37026,7 +38063,7 @@ ajL ajL ajL ajL -ajL +akA ajL ajM akm @@ -38881,15 +39918,15 @@ aah aah aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah +abT +abT +abT +abT +abT +abT +abT +abT +abT ahl ahL anP @@ -39023,15 +40060,15 @@ aah aah aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah +abT +bbd +auM +baZ +bbw +bbU +cGJ +bch +air ahl ahK add @@ -39165,18 +40202,18 @@ aah aah aah aah -aah -aah -aah -aah -aah -aah -aah -aah -aah -ahl -ahL -anP +abT +amQ +bbe +bbe +bbe +bbe +bbe +bbe +bci +bbG +bbH +bbN adu ahl apj @@ -39307,8 +40344,8 @@ aah aah aah aah -aah -aah +abT +anp aeW aeW aeW @@ -39318,16 +40355,16 @@ aeW aeW aeW ahL -anP +bbO adu ahl -apj -apj -apj -apj -apj -apj -apj +apu +apu +apu +apu +apu +apu +apu apu asG atc @@ -39449,8 +40486,8 @@ aah aah aah aah -aah -aah +abT +anp aeW amk amF @@ -39460,23 +40497,23 @@ agI ani aeW ahS -anP -adu -ahl -apj -apj -apj -apj -apj -apj -apj +bbP +bbS +bbG +bck +bcw +bck +bcy +bco +bco +bcl apu -asH -aqb -aqb -aup -aqb -avl +bbY +bca +bca +bcb +bca +bcc avS awC axd @@ -39591,8 +40628,8 @@ aah aah aah aah -aah -aah +abT +anp aeW aml afT @@ -39605,20 +40642,20 @@ anC adh adO ahl -apj -apj -apj -apj -apj -apj -apj -apu -asI +bcn +bco +bcx +bct +bck +bck +bck +bbX +bbZ atd atJ auq apu -apu +bcq avT avT axe @@ -39733,8 +40770,8 @@ aah aah aah aah -aah -aah +abT +anp aeW aft amG @@ -39751,16 +40788,16 @@ aoH aoH aoH aoH -apj -apj -apj +apu +apu +apu apu aqb ate atK aur apu -aah +bcr avT awD axf @@ -39875,8 +40912,8 @@ aah aah aah aah -aah -aah +abT +anp aeW amm amH @@ -39902,7 +40939,7 @@ ate apu apu apu -aah +bcr avT agb agb @@ -40017,8 +41054,8 @@ aah aah aah aah -aah -aah +abT +anp aeW afv amG @@ -40042,9 +41079,9 @@ apu asJ ate apu -aah -aah -aah +bcd +apu +bcr avT agb agc @@ -40159,8 +41196,8 @@ aah aah aah aah -aah -aah +abT +anp aeW afw afV @@ -40184,9 +41221,9 @@ apu aqb arL apu -aah -aah -aah +bcd +apu +bcB avT agb agc @@ -40301,8 +41338,8 @@ aah aah aah aah -aah -aah +abT +anp aeW afr afW @@ -40326,9 +41363,9 @@ apu aqb arL apu -aah -aah -aah +bcd +apu +bcs avT agb agc @@ -40443,8 +41480,8 @@ aah aah aah aah -aah -aah +abT +anp aeW aeW aeW @@ -40468,9 +41505,9 @@ apu aqb arL apu -aah -aah -aah +bcd +apu +bcr avT agb agc @@ -40585,9 +41622,9 @@ aah aah aah aah -aah -aah -aah +abT +anp +adK aah aah aah @@ -40610,9 +41647,9 @@ apu aqb arL apu -aah -aah -aah +bcd +apu +bcr avU agb agb @@ -40728,7 +41765,7 @@ abT abT abT abT -abT +anc abT abT abT @@ -40737,8 +41774,8 @@ abT abT afA afA -ahY -aiQ +bbM +bbR aez aoL apv @@ -40752,9 +41789,9 @@ apu aqb atf apu -aah -aah -aah +bcd +apu +bcr agM agM axg @@ -40870,14 +41907,14 @@ ajI ajI ajI ajI -ajI -ajI -ajI -ajI -ajI -ajI -anc -anm +asH +asI +asI +asI +asI +asI +aup +avl ahp ahX anQ @@ -40894,10 +41931,10 @@ apu aqb atg apu -aah -aah -aah -agM +bcd +apu +bcr +bbQ agM axh axU @@ -41019,7 +42056,7 @@ aex aex abT abT -ann +bbI ahq ahX aiS @@ -41036,10 +42073,10 @@ asq asK apu apu -aah -aah -aah -aah +apu +apu +bcq +apu agM agM axV @@ -41161,7 +42198,7 @@ afX aex aah abT -ano +bbJ ahr ahX anR @@ -41177,12 +42214,12 @@ apu apu asL ath -aah -aah -aah -aah -aah -aah +axS +apu +bcz +bct +bcv +bco agM axW ayI @@ -41303,7 +42340,7 @@ amI aex aah abT -ann +bbI ahq ahX anS @@ -41319,12 +42356,12 @@ aah apu asL apu -aah -aah -aah -aah -aah -aah +axS +apu +bcA +bco +apu +apu agM axX ayG @@ -41445,7 +42482,7 @@ amJ aex aah abT -ann +bbI ahs ahZ aiV @@ -41461,12 +42498,12 @@ aah apu asL apu -aah -aah -aah -aah -aah -aah +axS +apu +bcC +bco +apu +bcd agM axY ayG @@ -41587,7 +42624,7 @@ amK alC abT abT -ann +bbI ahs ahX anT @@ -41606,7 +42643,7 @@ ati apu apu apu -apu +bcu agM agM agM @@ -41729,7 +42766,7 @@ amL amW amW and -anp +bbK anv aia aiX @@ -41746,9 +42783,9 @@ apu asL atj atL -atL -atL -atL +bcm +bcm +bcm agM ahc ahu @@ -41871,7 +42908,7 @@ amM abT abT abT -abT +bbL abT ahX aiY @@ -41889,8 +42926,8 @@ asL apu agM agM -atL -atL +bcm +bcm agM agM agM @@ -42011,10 +43048,10 @@ afd afC agd abT -aah -aah -aah -aah +bbB +bbe +bce +bbT ahX aiZ afc @@ -42031,9 +43068,9 @@ asL apu ahc agM -auM -atL -atL +bcp +bcm +bcm atL atj ayc @@ -42153,9 +43190,9 @@ aer aer aer aer -aah -aah -aah +bbE +abT +abT agM agM aja @@ -42290,14 +43327,14 @@ aeU acx adS aer -aeC -alY -alY +aeE age +afD +ail aer -aah -aah -aah +bbE +air +bcg agM anD anU @@ -42434,12 +43471,12 @@ adT aes aeD aff -afD -agf +alJ +alY aer -aah -aah -aah +bbE +bcf +bcg agM aic anV @@ -42574,14 +43611,14 @@ aeZ acx adc aer -aeE -aeF -aeF -aeF -aer -aah -aah -aah +afe +agf +agf +ams +ano +bce +bcf +cGJ agM aid anW @@ -42716,14 +43753,14 @@ afl adt adG aer -aeF -aeF -aeF +ahY +agf agg +amN aer -aah -aah -aah +bcf +bbc +air agM aie anW @@ -42861,9 +43898,9 @@ alu alE alZ amr -afe +amO aer -aah +bcf agM agM agM @@ -43001,11 +44038,11 @@ acx adX aer alF -aeF -ams -amN +agf +anm +amO aer -aah +cGJ agM ahc ahu @@ -43145,13 +44182,13 @@ aer aeI aeF amt -amO -aer -aah -agM -agM -agM -aih +ann +amc +anF +amc +amc +amc +bbk anW aoj aoS @@ -43287,12 +44324,12 @@ abL aeJ ama amu -aeJ -aeJ -aah -aah -aah -agM +anH +amc +amP +bbs +aHM +amc aii anW aoj @@ -43430,12 +44467,12 @@ alG afi amv agj -aeJ -aah -aah -aah -agM -anE +amw +aIA +bbv +bbC +amc +bbl anX aoj aoS @@ -43570,14 +44607,14 @@ aea abL alH afj -amw -amP -aeJ -aeJ -aeJ -aeJ -agM -aik +ahe +amb +ane +aQE +bbx +bbD +bbW +bbm anW aoj aoS @@ -43711,15 +44748,15 @@ aeb aea abL aeL -afk -agl -agN -amx -amz -aGK -ahd +afP +ago ahv -ail +amc +baY +bby +bbD +bbW +bbn anW aoj aoS @@ -43854,14 +44891,14 @@ adU abL alI afx -agm -amb -amy -ane -aGO -ahe +agx ahw -aim +anE +amz +bbz +bbV +amc +bbo anW aoj aoS @@ -43996,14 +45033,14 @@ abL abL aeN afm -agx -agn -aeJ -aeJ -aeJ -aeJ -agM -anF +agy +aih +amc +bbf +bbA +bbF +amc +bbp anW aoj aoS @@ -44135,17 +45172,17 @@ acI afB adA aec -abL -alJ +aeC +afk afm -agy -ago -aeJ -aah -aah -aah -agM -aio +afN +aik +amc +bbr +amc +bbr +amc +bbq anW aoj aoR @@ -44279,15 +45316,15 @@ adB aed aeu alK -amc +agl agD -amQ -aeJ -aah -aah -aah -agM -anG +aiQ +amx +aGK +bba +bbg +bbi +bbu anW aoi aoj @@ -44421,15 +45458,15 @@ adx aee aev aeQ -afo -afN -agq -aeJ -aah -aah -aah -agM -anH +agm +agN +aim +amy +aGO +bbb +bbh +bbj +anG anY aok aok @@ -44565,13 +45602,13 @@ abL aeR afo afN -agq +aio +aeJ +aeJ +aeJ aeJ -aah -aah -aah agM -air +bbt anZ aol aoT @@ -44705,7 +45742,7 @@ aiu abL abL aeS -afo +agn afO agq aeJ @@ -44990,7 +46027,7 @@ aeh abP alL amd -afP +ahd amR aeJ aah @@ -45572,8 +46609,8 @@ aah aah apF aqQ +ari arh -arD apF ash asx @@ -45619,12 +46656,12 @@ aRm aPK aSo aSo -aTB +aqS aSo aUm aUm -acw -acz +aUq +aUr aUm aWn aWn @@ -45764,10 +46801,10 @@ aSV aTC aSo aUn -afZ +aUp aVd aVz -aVP +aUt aWo aWM aWV @@ -45905,7 +46942,7 @@ aSq aSW aTD aSo -aUo +acw aUP aVe aVA @@ -45998,7 +47035,7 @@ aaU aaU aaU aql -ari +arh apF aah ash @@ -46047,7 +47084,7 @@ aSr aSX aTE aSo -aUp +acz aUP aVf aVB @@ -46056,10 +47093,10 @@ aUP aUP aWX aUm -aah -aah -aah -aah +bcD +bcI +bcK +aUm aah aah aah @@ -46189,7 +47226,7 @@ aSs aSY aTF aSo -aUq +afZ aUP aVf aVB @@ -46198,10 +47235,10 @@ aUP aUP aWY aUm -aah -aah -aah -aah +bcE +aUP +bcL +aUm aah aah aah @@ -46331,14 +47368,18 @@ aSt aSX aTG aSo -aUr +arm aUP aVf -aVB -aVf -aUP -aUP +aUs +aUu +aVP +aVP aWZ +bcj +bcF +aUP +bcM aUm aah aah @@ -46347,10 +47388,6 @@ aah aah aah aah -aah -aah -aah -aah aad aad aad @@ -46473,7 +47510,7 @@ aSo aSZ aSo aSo -aUs +arD aUP aVf aVB @@ -46482,10 +47519,10 @@ aUP aUP aXa aUm -aah -aah -aah -aah +bcG +aUP +bcL +aUm aah aah aah @@ -46615,7 +47652,7 @@ aSu aTa aTH aSo -aUt +aTB aUP aVg aVC @@ -46624,10 +47661,10 @@ aWp aWp aXb aUm -aah -aah -aah -aah +bcH +bcJ +bcN +aUm aah aah aah @@ -46708,7 +47745,7 @@ aah apF apF aql -arm +nlo apF aah aah @@ -46757,7 +47794,7 @@ aSv aTb aTI aSo -aUu +aUo aUQ aVh aUP @@ -46766,10 +47803,10 @@ aga aWN aXc aUm -aah -aah -aah -aah +aUm +aUm +aUm +aUm aah aah aah @@ -46848,7 +47885,7 @@ aah aah aah apF -aqj +lry aql aql apF @@ -46991,7 +48028,7 @@ aah aah apF aqk -aqS +aqj aql apF aah diff --git a/maps/tether/tether-02-surface2.dmm b/maps/tether/tether-02-surface2.dmm index 6e10e840c4..9b48d2b032 100644 --- a/maps/tether/tether-02-surface2.dmm +++ b/maps/tether/tether-02-surface2.dmm @@ -1,32 +1,32 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aaa" = ( /turf/unsimulated/wall/planetary/virgo3b, /area/tether/surfacebase/outside/outside2) -"ab" = ( +"aab" = ( /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) -"ac" = ( +"aac" = ( /turf/simulated/mineral, /area/tether/surfacebase/outside/outside2) -"ad" = ( +"aad" = ( /turf/simulated/wall, /area/maintenance/lower/mining) -"ae" = ( +"aae" = ( /turf/simulated/wall/r_wall, -/area/bridge/secondary/meeting_room) -"af" = ( +/area/maintenance/lower/public_garden_maintenence/upper) +"aaf" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/lowerhall) -"ag" = ( +"aag" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/surgery) -"ah" = ( +"aah" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/resleeving) -"ai" = ( +"aai" = ( /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"aj" = ( +"aaj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -47,10 +47,23 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"ak" = ( -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"al" = ( +"aak" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) +"aal" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/machinery/power/apc{ @@ -65,28 +78,61 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"am" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"an" = ( +"aam" = ( +/obj/structure/stairs/south, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) +"aan" = ( /turf/simulated/wall, /area/maintenance/substation/medsec) -"ao" = ( +"aao" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"ap" = ( +"aap" = ( /turf/simulated/wall, /area/maintenance/lower/north) -"aq" = ( +"aaq" = ( /obj/structure/stairs/east, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"ar" = ( +"aar" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/lowerhall) -"as" = ( +"aas" = ( +/obj/structure/closet/secure_closet/warden, +/obj/item/weapon/gun/projectile/shotgun/pump/combat{ + ammo_type = /obj/item/ammo_casing/a12g/beanbag; + desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; + name = "warden's shotgun" + }, +/obj/item/weapon/book/manual/security_space_law, +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/warden) +"aat" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/plating, +/area/maintenance/lower/public_garden_maintenence/upper) +"aau" = ( +/obj/structure/stairs/west, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) +"aav" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -106,32 +152,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"at" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/light{ - dir = 8 - }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"au" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"av" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aw" = ( +"aaw" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "MedSec Substation Bypass" }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"ax" = ( +"aax" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -148,14 +175,22 @@ }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"ay" = ( -/obj/structure/cable{ - icon_state = "4-8" +"aay" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 }, -/obj/machinery/camera/network/engineering, -/turf/simulated/floor, -/area/maintenance/substation/medsec) -"az" = ( +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/structure/table/standard, +/obj/item/device/defib_kit/loaded, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery) +"aaz" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -165,7 +200,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aA" = ( +"aaA" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 }, @@ -187,7 +222,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"aB" = ( +"aaB" = ( /obj/structure/cable{ icon_state = "2-8" }, @@ -197,11 +232,11 @@ }, /turf/simulated/floor, /area/maintenance/lower/north) -"aC" = ( +"aaC" = ( /obj/machinery/oxygen_pump/anesthetic, /turf/simulated/wall, /area/tether/surfacebase/medical/surgery) -"aD" = ( +"aaD" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -226,23 +261,17 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"aE" = ( +"aaE" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, -/obj/structure/table/standard, -/obj/item/device/defib_kit/loaded, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1" - }, -/obj/machinery/camera/network/medbay, +/obj/machinery/organ_printer/flesh, /turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery) -"aF" = ( +/area/tether/surfacebase/medical/resleeving) +"aaF" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -252,11 +281,11 @@ /obj/machinery/transhuman/resleever, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"aG" = ( +"aaG" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"aH" = ( +"aaH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -270,34 +299,28 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"aI" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 +"aaI" = ( +/obj/effect/floor_decal/techfloor{ + dir = 9 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"aJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/medical/resleeving) +"aaJ" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/plating, -/area/maintenance/lower/public_garden_maintenence/upper) -"aK" = ( +/obj/machinery/vending/medical, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aaK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -313,7 +336,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"aL" = ( +"aaL" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 2; @@ -327,7 +350,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aM" = ( +"aaM" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -337,7 +360,7 @@ /obj/structure/cable, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aN" = ( +"aaN" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -349,7 +372,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aO" = ( +"aaO" = ( /obj/structure/cable/green{ icon_state = "16-0" }, @@ -367,19 +390,19 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor, /area/maintenance/lower/north) -"aP" = ( +"aaP" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/lower/north) -"aQ" = ( +"aaQ" = ( /obj/machinery/atmospherics/unary/cryo_cell, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, /area/tether/surfacebase/medical/resleeving) -"aR" = ( +"aaR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -390,10 +413,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"aS" = ( +"aaS" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/outside/outside2) -"aT" = ( +"aaT" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, @@ -402,9 +425,12 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aU" = ( +"aaU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -417,7 +443,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aV" = ( +"aaV" = ( /obj/machinery/door/airlock/engineering{ name = "MedSec Substation" }, @@ -429,7 +455,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"aW" = ( +"aaW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -467,18 +493,23 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"aX" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +"aaX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/organ_printer/flesh, -/obj/machinery/camera/network/medbay, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/resleeving) -"aY" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) +"aaY" = ( /obj/effect/floor_decal/techfloor{ dir = 9 }, @@ -497,7 +528,7 @@ /obj/item/clothing/under/fluff/latexmaid, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"aZ" = ( +"aaZ" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -508,14 +539,14 @@ /obj/item/weapon/storage/fancy/candle_box, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"ba" = ( +"aba" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /obj/machinery/vending/sovietsoda, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bb" = ( +"abb" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -526,7 +557,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bc" = ( +"abc" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -535,7 +566,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bd" = ( +"abd" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -546,7 +577,7 @@ /obj/item/weapon/bedsheet/purple, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"be" = ( +"abe" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -556,7 +587,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bf" = ( +"abf" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -564,7 +595,7 @@ /obj/item/weapon/bedsheet/mime, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bg" = ( +"abg" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -576,7 +607,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bh" = ( +"abh" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -587,7 +618,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bi" = ( +"abi" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -597,7 +628,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bj" = ( +"abj" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, @@ -607,26 +638,26 @@ /obj/structure/undies_wardrobe, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bk" = ( +"abk" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bl" = ( +"abl" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bm" = ( +"abm" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bn" = ( +"abn" = ( /turf/simulated/wall, /area/maintenance/lower/public_garden_maintenence/upper) -"bo" = ( +"abo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -638,7 +669,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bp" = ( +"abp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -653,7 +684,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bq" = ( +"abq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -668,13 +699,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"br" = ( +"abr" = ( /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"bs" = ( +"abs" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -683,23 +714,23 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bt" = ( +"abt" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bu" = ( +"abu" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bv" = ( +"abv" = ( /obj/structure/symbol/sa, /turf/simulated/wall{ can_open = 1 }, /area/maintenance/lower/mining) -"bw" = ( +"abw" = ( /obj/random/cigarettes, /obj/random/toy, /obj/random/tech_supply, @@ -707,23 +738,23 @@ /obj/item/weapon/flame/lighter/zippo, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bx" = ( +"abx" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"by" = ( +"aby" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bz" = ( +"abz" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"bA" = ( +"abA" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -744,7 +775,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bB" = ( +"abB" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -762,12 +793,12 @@ /obj/structure/cable/green, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bC" = ( +"abC" = ( /obj/machinery/portable_atmospherics/powered/scrubber, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bD" = ( +"abD" = ( /obj/effect/floor_decal/techfloor{ dir = 9 }, @@ -775,10 +806,10 @@ /obj/random/cigarettes, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"bE" = ( +"abE" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/warden) -"bF" = ( +"abF" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -787,7 +818,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/warden) -"bG" = ( +"abG" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -803,30 +834,30 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"bH" = ( +"abH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/north) -"bI" = ( +"abI" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"bJ" = ( +"abJ" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"bK" = ( +"abK" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"bL" = ( +"abL" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -835,40 +866,40 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bM" = ( +"abM" = ( /obj/effect/floor_decal/corner_techfloor_grid, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bN" = ( +"abN" = ( /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bO" = ( +"abO" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole/right, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bP" = ( +"abP" = ( /obj/effect/floor_decal/techfloor, /obj/effect/decal/cleanable/dirt, /obj/structure/table/steel, /obj/random/drinkbottle, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bQ" = ( +"abQ" = ( /obj/effect/floor_decal/techfloor, /obj/structure/table/steel, /obj/item/weapon/storage/toolbox/mechanical, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bR" = ( +"abR" = ( /obj/effect/floor_decal/techfloor, /obj/structure/table/steel, /obj/item/weapon/tape_roll, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bS" = ( +"abS" = ( /obj/effect/floor_decal/techfloor, /obj/structure/table/steel, /obj/item/stack/cable_coil, @@ -876,14 +907,14 @@ /obj/machinery/recharger, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bT" = ( +"abT" = ( /obj/effect/floor_decal/techfloor, /obj/structure/table/steel, /obj/item/weapon/storage/firstaid/regular, /obj/random/medical/lite, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bU" = ( +"abU" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -892,25 +923,25 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"bV" = ( +"abV" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bW" = ( +"abW" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"bX" = ( +"abX" = ( /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/firecloset/full/double, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bY" = ( +"abY" = ( /obj/structure/table/rack/holorack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"bZ" = ( +"abZ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -928,25 +959,25 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"ca" = ( +"aca" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cb" = ( +"acb" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cc" = ( +"acc" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cd" = ( +"acd" = ( /obj/machinery/computer/prisoner{ icon_state = "computer"; dir = 4 @@ -959,7 +990,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"ce" = ( +"ace" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -977,7 +1008,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/north) -"cf" = ( +"acf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" @@ -988,7 +1019,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cg" = ( +"acg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" @@ -999,7 +1030,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ch" = ( +"ach" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" @@ -1012,7 +1043,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ci" = ( +"aci" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" @@ -1025,7 +1056,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cj" = ( +"acj" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "2-8" @@ -1035,7 +1066,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ck" = ( +"ack" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -1043,11 +1074,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cl" = ( +"acl" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"cm" = ( +"acm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -1059,7 +1090,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"cn" = ( +"acn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -1074,29 +1105,29 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"co" = ( +"aco" = ( /obj/structure/catwalk, /obj/structure/grille/broken, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"cp" = ( +"acp" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"cq" = ( +"acq" = ( /turf/simulated/wall, /area/tether/surfacebase/public_garden_two) -"cr" = ( +"acr" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cs" = ( +"acs" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -1105,13 +1136,13 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ct" = ( +"act" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cu" = ( +"acu" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -1122,7 +1153,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cv" = ( +"acv" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, @@ -1137,7 +1168,7 @@ /obj/random/action_figure, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cw" = ( +"acw" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 8 }, @@ -1146,26 +1177,26 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cx" = ( +"acx" = ( /obj/structure/catwalk, /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cy" = ( +"acy" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cz" = ( +"acz" = ( /obj/structure/catwalk, /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cA" = ( +"acA" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/mining) -"cB" = ( +"acB" = ( /obj/structure/closet/crate, /obj/random/medical/lite, /obj/random/maintenance/cargo, @@ -1173,23 +1204,23 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"cC" = ( +"acC" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"cD" = ( +"acD" = ( /turf/simulated/wall, /area/tether/surfacebase/outside/outside2) -"cE" = ( +"acE" = ( /obj/machinery/door/firedoor/glass, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"cF" = ( +"acF" = ( /turf/simulated/wall/r_wall, /area/rnd/rdoffice) -"cG" = ( +"acG" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 4; @@ -1202,7 +1233,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cH" = ( +"acH" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1213,49 +1244,43 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cI" = ( +"acI" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) -"cJ" = ( +"acJ" = ( /obj/structure/catwalk, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) -"cK" = ( +"acK" = ( /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside2) -"cL" = ( +"acL" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside2) -"cM" = ( +"acM" = ( /obj/machinery/door/firedoor/glass, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"cN" = ( -/obj/structure/closet/secure_closet/RD, -/obj/item/device/aicard, -/obj/item/clothing/glasses/omnihud/rnd, -/obj/effect/floor_decal/borderfloor{ +"acN" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 - }, -/obj/machinery/camera/network/research{ - dir = 4 +/obj/structure/bed/chair{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"cO" = ( +/area/tether/surfacebase/security/solitary) +"acO" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall, /area/tether/surfacebase/public_garden_two) -"cP" = ( +"acP" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -1266,32 +1291,27 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cQ" = ( +"acQ" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cR" = ( +"acR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/mining) -"cS" = ( +"acS" = ( /obj/structure/catwalk, /obj/machinery/status_display{ pixel_y = 30 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"cT" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/cyan{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/medical/resleeving) -"cU" = ( +"acT" = ( +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"acU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -1302,17 +1322,17 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"cV" = ( +/area/tether/surfacebase/surface_two_hall) +"acV" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside2) -"cW" = ( +"acW" = ( /turf/simulated/mineral, /area/maintenance/lower/north) -"cX" = ( +"acX" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -1320,7 +1340,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cY" = ( +"acY" = ( /obj/structure/railing{ dir = 4 }, @@ -1332,7 +1352,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"cZ" = ( +"acZ" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 4 @@ -1342,7 +1362,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"da" = ( +"ada" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -1355,7 +1375,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"db" = ( +"adb" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -1366,7 +1386,7 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dc" = ( +"adc" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "1-4" @@ -1379,7 +1399,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dd" = ( +"add" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable{ icon_state = "4-8" @@ -1393,7 +1413,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"de" = ( +"ade" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -1411,7 +1431,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/mining) -"df" = ( +"adf" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "4-8" @@ -1424,7 +1444,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dg" = ( +"adg" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "2-8" @@ -1440,7 +1460,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dh" = ( +"adh" = ( /obj/structure/catwalk, /obj/machinery/power/apc{ dir = 4; @@ -1453,14 +1473,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"di" = ( +"adi" = ( /obj/structure/catwalk, /obj/structure/railing{ dir = 4 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) -"dj" = ( +"adj" = ( /obj/structure/catwalk, /obj/structure/railing{ dir = 4 @@ -1470,39 +1490,39 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) -"dk" = ( +"adk" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dl" = ( +"adl" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dm" = ( +"adm" = ( /obj/effect/floor_decal/techfloor/hole{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dn" = ( +"adn" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"do" = ( +"ado" = ( /obj/effect/floor_decal/techfloor/hole{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dp" = ( +"adp" = ( /obj/structure/railing{ dir = 4 }, @@ -1519,7 +1539,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/lower/north) -"dq" = ( +"adq" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -1532,14 +1552,14 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dr" = ( +"adr" = ( /obj/structure/railing{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"ds" = ( +"ads" = ( /obj/structure/railing{ dir = 4 }, @@ -1550,7 +1570,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dt" = ( +"adt" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -1559,25 +1579,25 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"du" = ( +"adu" = ( /turf/simulated/wall, /area/maintenance/lower/bar) -"dv" = ( +"adv" = ( /obj/structure/stairs/south, /turf/simulated/floor/virgo3b, /area/tether/surfacebase/outside/outside2) -"dw" = ( +"adw" = ( /obj/item/weapon/pickaxe/hand, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/lower/north) -"dx" = ( +"adx" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/lower/north) -"dy" = ( +"ady" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/structure/closet/crate, @@ -1587,18 +1607,18 @@ /obj/random/maintenance/clean, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dz" = ( +"adz" = ( /obj/structure/railing, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dA" = ( +"adA" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dB" = ( +"adB" = ( /obj/structure/railing, /obj/structure/cable{ d1 = 2; @@ -1608,7 +1628,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dC" = ( +"adC" = ( /obj/structure/railing, /obj/structure/cable{ d1 = 4; @@ -1619,7 +1639,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dD" = ( +"adD" = ( /obj/structure/railing{ dir = 4 }, @@ -1639,7 +1659,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dE" = ( +"adE" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -1649,7 +1669,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dF" = ( +"adF" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 1; @@ -1667,14 +1687,14 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dG" = ( +"adG" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dH" = ( +"adH" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4; @@ -1682,7 +1702,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dI" = ( +"adI" = ( /obj/structure/catwalk, /obj/machinery/firealarm{ dir = 2; @@ -1695,14 +1715,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dJ" = ( +"adJ" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dK" = ( +"adK" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 1 @@ -1712,14 +1732,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"dL" = ( +"adL" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"dM" = ( +"adM" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4 @@ -1727,7 +1747,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"dN" = ( +"adN" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 2; @@ -1740,14 +1760,14 @@ /obj/random/drinkbottle, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"dO" = ( +"adO" = ( /obj/structure/catwalk, /obj/structure/railing{ dir = 1 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside2) -"dP" = ( +"adP" = ( /obj/machinery/computer/mecha, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -1757,46 +1777,46 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"dQ" = ( +"adQ" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/welding, /turf/simulated/floor, /area/maintenance/lower/north) -"dR" = ( +"adR" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/lower/north) -"dS" = ( +"adS" = ( /obj/structure/lattice, /turf/simulated/open, /area/maintenance/lower/north) -"dT" = ( +"adT" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dU" = ( +"adU" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dV" = ( +"adV" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dW" = ( +"adW" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dX" = ( +"adX" = ( /obj/structure/catwalk, /obj/machinery/alarm{ dir = 8; @@ -1814,10 +1834,10 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"dY" = ( +"adY" = ( /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) -"dZ" = ( +/area/tether/surfacebase/surface_two_hall) +"adZ" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-4" @@ -1830,7 +1850,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"ea" = ( +"aea" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "4-8" @@ -1843,7 +1863,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"eb" = ( +"aeb" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "4-8" @@ -1857,7 +1877,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"ec" = ( +"aec" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "4-8" @@ -1870,7 +1890,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ed" = ( +"aed" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "2-8" @@ -1883,16 +1903,16 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ee" = ( +"aee" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ef" = ( +"aef" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"eg" = ( +"aeg" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -1922,17 +1942,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"eh" = ( +"aeh" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/item/toy/figure/ninja, /turf/simulated/floor, /area/maintenance/lower/north) -"ei" = ( +"aei" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ej" = ( +"aej" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -1943,7 +1963,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ek" = ( +"aek" = ( /obj/structure/catwalk, /obj/machinery/light/small, /obj/structure/disposalpipe/segment{ @@ -1951,14 +1971,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"el" = ( +"ael" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"em" = ( +"aem" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 2; @@ -1966,19 +1986,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"en" = ( +"aen" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"eo" = ( +/area/tether/surfacebase/surface_two_hall) +"aeo" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"ep" = ( +"aep" = ( /obj/structure/railing{ dir = 1 }, @@ -1986,7 +2006,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"eq" = ( +"aeq" = ( /obj/structure/railing{ dir = 1 }, @@ -1997,18 +2017,18 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"er" = ( +"aer" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"es" = ( +"aes" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"et" = ( +"aet" = ( /obj/structure/railing{ dir = 1 }, @@ -2017,7 +2037,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"eu" = ( +"aeu" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -2031,7 +2051,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"ev" = ( +"aev" = ( /obj/structure/railing{ dir = 1 }, @@ -2041,12 +2061,12 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ew" = ( +"aew" = ( /obj/effect/floor_decal/rust, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ex" = ( +"aex" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -2056,12 +2076,12 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ey" = ( +"aey" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ez" = ( +"aez" = ( /obj/structure/railing{ dir = 8 }, @@ -2071,7 +2091,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"eA" = ( +"aeA" = ( /obj/structure/railing{ dir = 1 }, @@ -2082,13 +2102,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"eB" = ( +"aeB" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, /turf/simulated/floor, /area/maintenance/lower/north) -"eC" = ( +"aeC" = ( /obj/structure/railing{ dir = 1 }, @@ -2097,33 +2117,33 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eD" = ( +"aeD" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eE" = ( +"aeE" = ( /obj/structure/railing{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eF" = ( +"aeF" = ( /obj/structure/railing{ dir = 1 }, /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eG" = ( +"aeG" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eH" = ( +"aeH" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable{ @@ -2132,15 +2152,15 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/north) -"eI" = ( +"aeI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/machinery/door/airlock/multi_tile/metal/mait{ name = "Maintenance Access" }, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"eJ" = ( +/area/tether/surfacebase/surface_two_hall) +"aeJ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable{ d1 = 1; @@ -2151,13 +2171,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"eK" = ( +/area/tether/surfacebase/surface_two_hall) +"aeK" = ( /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"eL" = ( +/area/tether/surfacebase/surface_two_hall) +"aeL" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -2166,19 +2186,19 @@ }, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"eM" = ( +/area/tether/surfacebase/surface_two_hall) +"aeM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"eN" = ( +/area/tether/surfacebase/surface_two_hall) +"aeN" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/bar) -"eO" = ( +"aeO" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 9 }, @@ -2188,14 +2208,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"eP" = ( +"aeP" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"eQ" = ( +"aeQ" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor/orange{ dir = 1 @@ -2207,14 +2227,14 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"eR" = ( +"aeR" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor/orange{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"eS" = ( +"aeS" = ( /obj/structure/railing{ dir = 8 }, @@ -2223,44 +2243,44 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"eT" = ( +"aeT" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"eU" = ( +"aeU" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/pen/crayon/red, /turf/simulated/floor, /area/maintenance/lower/north) -"eV" = ( +"aeV" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eW" = ( +"aeW" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eX" = ( +"aeX" = ( /obj/effect/floor_decal/techfloor, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eY" = ( +"aeY" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"eZ" = ( +"aeZ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -2273,7 +2293,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"fa" = ( +"afa" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -2285,8 +2305,8 @@ pixel_x = 0 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fb" = ( +/area/tether/surfacebase/surface_two_hall) +"afb" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -2295,8 +2315,8 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fc" = ( +/area/tether/surfacebase/surface_two_hall) +"afc" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -2315,27 +2335,27 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fd" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/area/tether/surfacebase/surface_two_hall) +"afd" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + icon_state = "intact"; dir = 4 }, -/obj/structure/cable{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fe" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) +"afe" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2349,8 +2369,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ff" = ( +/area/tether/surfacebase/surface_two_hall) +"aff" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2367,8 +2387,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fg" = ( +/area/tether/surfacebase/surface_two_hall) +"afg" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2385,8 +2405,8 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fh" = ( +/area/tether/surfacebase/surface_two_hall) +"afh" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2403,8 +2423,8 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fi" = ( +/area/tether/surfacebase/surface_two_hall) +"afi" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -2418,8 +2438,8 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fj" = ( +/area/tether/surfacebase/surface_two_hall) +"afj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2437,8 +2457,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fk" = ( +/area/tether/surfacebase/surface_two_hall) +"afk" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2455,8 +2475,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fl" = ( +/area/tether/surfacebase/surface_two_hall) +"afl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2476,8 +2496,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fm" = ( +/area/tether/surfacebase/surface_two_hall) +"afm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2495,8 +2515,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fn" = ( +/area/tether/surfacebase/surface_two_hall) +"afn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2504,8 +2524,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fo" = ( +/area/tether/surfacebase/surface_two_hall) +"afo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2516,8 +2536,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fp" = ( +/area/tether/surfacebase/surface_two_hall) +"afp" = ( /obj/machinery/light/small{ dir = 1 }, @@ -2528,21 +2548,22 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/area/tether/surfacebase/surface_two_hall) +"afq" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/closet{ + name = "Evidence Closet" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 +/obj/machinery/alarm{ + alarm_id = null; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fr" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/evidence) +"afr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -2552,8 +2573,8 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fs" = ( +/area/tether/surfacebase/surface_two_hall) +"afs" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, @@ -2561,8 +2582,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ft" = ( +/area/tether/surfacebase/surface_two_hall) +"aft" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2573,8 +2594,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fu" = ( +/area/tether/surfacebase/surface_two_hall) +"afu" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -2586,8 +2607,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fv" = ( +/area/tether/surfacebase/surface_two_hall) +"afv" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, @@ -2597,11 +2618,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"fw" = ( +"afw" = ( /obj/structure/catwalk, /turf/simulated/open, /area/maintenance/lower/bar) -"fx" = ( +"afx" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -2610,7 +2631,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/open, /area/maintenance/lower/bar) -"fy" = ( +"afy" = ( /obj/structure/railing{ dir = 8 }, @@ -2619,14 +2640,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"fz" = ( +"afz" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"fA" = ( +"afA" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -2642,7 +2663,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"fB" = ( +"afB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -2650,14 +2671,14 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fC" = ( +/area/tether/surfacebase/surface_two_hall) +"afC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fD" = ( +/area/tether/surfacebase/surface_two_hall) +"afD" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -2671,40 +2692,40 @@ dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fE" = ( +/area/tether/surfacebase/surface_two_hall) +"afE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fF" = ( +/area/tether/surfacebase/surface_two_hall) +"afF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fG" = ( +/area/tether/surfacebase/surface_two_hall) +"afG" = ( /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fH" = ( +/area/tether/surfacebase/surface_two_hall) +"afH" = ( /obj/item/device/radio/beacon, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fI" = ( +/area/tether/surfacebase/surface_two_hall) +"afI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fJ" = ( +/area/tether/surfacebase/surface_two_hall) +"afJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fK" = ( +/area/tether/surfacebase/surface_two_hall) +"afK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -2712,20 +2733,20 @@ dir = 10 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fL" = ( +/area/tether/surfacebase/surface_two_hall) +"afL" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fM" = ( +/area/tether/surfacebase/surface_two_hall) +"afM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fN" = ( +/area/tether/surfacebase/surface_two_hall) +"afN" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -2735,13 +2756,13 @@ /obj/structure/disposalpipe/down, /turf/simulated/open, /area/maintenance/lower/bar) -"fO" = ( +"afO" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"fP" = ( +"afP" = ( /obj/machinery/light/small{ dir = 8 }, @@ -2757,7 +2778,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/north) -"fQ" = ( +"afQ" = ( /obj/machinery/computer/robotics, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -2770,7 +2791,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"fR" = ( +"afR" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -2783,7 +2804,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"fS" = ( +"afS" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -2797,7 +2818,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"fT" = ( +"afT" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -2812,7 +2833,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"fU" = ( +"afU" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -2825,20 +2846,20 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/north) -"fV" = ( +"afV" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fW" = ( +/area/tether/surfacebase/surface_two_hall) +"afW" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fX" = ( +/area/tether/surfacebase/surface_two_hall) +"afX" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/green/bordercorner, /obj/structure/cable{ @@ -2851,8 +2872,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fY" = ( +/area/tether/surfacebase/surface_two_hall) +"afY" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/green/border, /obj/structure/disposalpipe/segment{ @@ -2860,8 +2881,8 @@ }, /obj/structure/window/basic, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"fZ" = ( +/area/tether/surfacebase/surface_two_hall) +"afZ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -2878,8 +2899,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ga" = ( +/area/tether/surfacebase/surface_two_hall) +"aga" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -2891,8 +2912,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gb" = ( +/area/tether/surfacebase/surface_two_hall) +"agb" = ( /obj/effect/floor_decal/techfloor/orange{ dir = 8 }, @@ -2901,7 +2922,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"gc" = ( +"agc" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -2911,7 +2932,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/open, /area/maintenance/lower/bar) -"gd" = ( +"agd" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -2921,10 +2942,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"ge" = ( +"age" = ( /turf/simulated/wall, /area/tether/surfacebase/north_staires_two) -"gf" = ( +"agf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -2934,12 +2955,12 @@ pixel_y = 0 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gg" = ( +/area/tether/surfacebase/surface_two_hall) +"agg" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gh" = ( +/area/tether/surfacebase/surface_two_hall) +"agh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -2956,8 +2977,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gi" = ( +/area/tether/surfacebase/surface_two_hall) +"agi" = ( /obj/structure/railing{ dir = 1 }, @@ -2965,41 +2986,31 @@ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"gj" = ( +/area/tether/surfacebase/surface_two_hall) +"agj" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"gk" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/railing{ +/area/tether/surfacebase/surface_two_hall) +"agk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"gl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/green/border{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 8 - }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gm" = ( +/area/tether/surfacebase/surface_two_hall) +"agl" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/commandmaint) +"agm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gn" = ( +/area/tether/surfacebase/surface_two_hall) +"agn" = ( /obj/machinery/light/small{ dir = 8 }, @@ -3011,12 +3022,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"go" = ( +"ago" = ( /obj/effect/floor_decal/techfloor/orange, /obj/structure/catwalk, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gp" = ( +"agp" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor/orange, /obj/structure/cable{ @@ -3027,12 +3038,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gq" = ( +"agq" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor/orange, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gr" = ( +"agr" = ( /obj/structure/railing{ dir = 8 }, @@ -3041,7 +3052,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"gs" = ( +"ags" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -3052,29 +3063,29 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"gt" = ( +"agt" = ( /turf/simulated/open, /area/tether/surfacebase/north_staires_two) -"gu" = ( +"agu" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/tether/surfacebase/north_staires_two) -"gv" = ( +"agv" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"gw" = ( +/area/tether/surfacebase/surface_two_hall) +"agw" = ( /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"gx" = ( +/area/tether/surfacebase/surface_two_hall) +"agx" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"gy" = ( +/area/tether/surfacebase/surface_two_hall) +"agy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/sortjunction/flipped{ @@ -3082,8 +3093,8 @@ sortType = "Trash" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gz" = ( +/area/tether/surfacebase/surface_two_hall) +"agz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3095,28 +3106,28 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gA" = ( +/area/tether/surfacebase/surface_two_hall) +"agA" = ( /obj/structure/grille, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gB" = ( +/area/tether/surfacebase/surface_two_hall) +"agB" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"gC" = ( +"agC" = ( /obj/structure/catwalk, /obj/structure/ladder/up, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gD" = ( +"agD" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -3126,13 +3137,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gE" = ( +"agE" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gF" = ( +"agF" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -3146,7 +3157,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"gG" = ( +"agG" = ( /obj/machinery/light/small{ dir = 8; pixel_x = 0 @@ -3155,8 +3166,8 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gH" = ( +/area/tether/surfacebase/surface_two_hall) +"agH" = ( /obj/machinery/light/small{ dir = 4 }, @@ -3168,8 +3179,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gI" = ( +/area/tether/surfacebase/surface_two_hall) +"agI" = ( /obj/structure/railing{ dir = 8 }, @@ -3177,7 +3188,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gJ" = ( +"agJ" = ( /obj/structure/railing{ dir = 4 }, @@ -3185,25 +3196,25 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gK" = ( +"agK" = ( /obj/item/clothing/gloves/boxing/blue, /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/lower/north) -"gL" = ( +"agL" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/lower/north) -"gM" = ( +"agM" = ( /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor, /area/maintenance/lower/north) -"gN" = ( +"agN" = ( /obj/random/obstruction, /turf/simulated/floor, /area/maintenance/lower/north) -"gO" = ( +"agO" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ icon_state = "1-2" @@ -3211,7 +3222,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"gP" = ( +"agP" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -3219,32 +3230,32 @@ }, /turf/simulated/open, /area/tether/surfacebase/north_staires_two) -"gQ" = ( +"agQ" = ( /obj/structure/stairs/north, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"gR" = ( +"agR" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"gS" = ( +/area/tether/surfacebase/surface_two_hall) +"agS" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"gT" = ( +/area/tether/surfacebase/surface_two_hall) +"agT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"gU" = ( +"agU" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -3253,14 +3264,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"gV" = ( +"agV" = ( /obj/effect/floor_decal/rust, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"gW" = ( +"agW" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ @@ -3269,40 +3280,39 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/bar) -"gX" = ( +"agX" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"gY" = ( -/obj/structure/catwalk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"gZ" = ( +"agY" = ( +/obj/structure/sign/department/chapel, +/turf/simulated/wall, +/area/chapel/main) +"agZ" = ( /turf/simulated/floor, /area/maintenance/lower/north) -"ha" = ( +"aha" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor, /area/maintenance/lower/north) -"hb" = ( +"ahb" = ( /obj/random/obstruction, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/lower/north) -"hc" = ( +"ahc" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, /area/tether/surfacebase/north_staires_two) -"hd" = ( -/obj/machinery/camera/network/tether{ - dir = 4 +"ahd" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/turf/simulated/open, -/area/tether/surfacebase/north_staires_two) -"he" = ( +/turf/simulated/floor, +/area/maintenance/substation/medsec) +"ahe" = ( /obj/structure/sign/directions/medical{ dir = 1; icon_state = "direction_med"; @@ -3325,38 +3335,34 @@ }, /turf/simulated/wall, /area/tether/surfacebase/north_staires_two) -"hf" = ( +"ahf" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"hg" = ( +"ahg" = ( /obj/structure/sign/warning/caution, /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) -"hh" = ( -/obj/effect/floor_decal/borderfloor{ +/area/tether/surfacebase/surface_two_hall) +"ahh" = ( +/obj/machinery/suit_cycler/medical, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/paramed) +"ahi" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/structure/bed/chair/wheelchair{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hi" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hj" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"ahj" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -3365,7 +3371,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hk" = ( +"ahk" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4; @@ -3374,7 +3380,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hl" = ( +"ahl" = ( /obj/structure/catwalk, /obj/structure/closet, /obj/structure/disposalpipe/segment{ @@ -3388,31 +3394,31 @@ /obj/random/tool, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hm" = ( +"ahm" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor, /area/maintenance/lower/north) -"hn" = ( +"ahn" = ( /obj/item/clothing/gloves/boxing/yellow, /turf/simulated/floor, /area/maintenance/lower/north) -"ho" = ( +"aho" = ( /turf/simulated/mineral, /area/tether/surfacebase/fish_farm) -"hp" = ( +"ahp" = ( /obj/machinery/floodlight, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"hq" = ( +"ahq" = ( /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"hr" = ( +"ahr" = ( /turf/simulated/floor/water/indoors, /area/tether/surfacebase/fish_farm) -"hs" = ( +"ahs" = ( /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"ht" = ( +"aht" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -3423,21 +3429,21 @@ /turf/simulated/floor/tiled/monofloor{ dir = 1 }, -/area/tether/surfacebase/atrium_two) -"hu" = ( +/area/tether/surfacebase/surface_two_hall) +"ahu" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hv" = ( -/obj/machinery/recharge_station, +/area/tether/surfacebase/surface_two_hall) +"ahv" = ( /obj/effect/floor_decal/techfloor{ dir = 9 }, +/obj/structure/railing, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hw" = ( +"ahw" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -3445,9 +3451,10 @@ /obj/machinery/alarm{ pixel_y = 22 }, +/obj/structure/railing, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hx" = ( +"ahx" = ( /obj/machinery/light/small{ dir = 1 }, @@ -3456,26 +3463,30 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hy" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 +"ahy" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/light_switch{ - pixel_y = 25 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"hz" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"ahz" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, -/obj/machinery/space_heater, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hA" = ( +"ahA" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -3483,25 +3494,28 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/multi_tile/metal/mait{ + name = "Maintenance Access" + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hB" = ( +"ahB" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hC" = ( +"ahC" = ( /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"hD" = ( +"ahD" = ( /turf/simulated/wall, /area/tether/surfacebase/fish_farm) -"hE" = ( +"ahE" = ( /obj/structure/table/rack, /obj/item/weapon/material/fishing_rod/modern/cheap, /obj/item/weapon/material/fishing_rod/modern/cheap, @@ -3514,7 +3528,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"hF" = ( +"ahF" = ( /obj/structure/table/rack, /obj/item/stack/cable_coil/pink, /obj/item/stack/cable_coil/pink, @@ -3528,7 +3542,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"hG" = ( +"ahG" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -3539,8 +3553,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"hH" = ( +/area/tether/surfacebase/surface_two_hall) +"ahH" = ( /obj/machinery/light/small{ dir = 1 }, @@ -3558,7 +3572,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"hI" = ( +"ahI" = ( /obj/machinery/door/airlock/maintenance/common, /obj/structure/cable{ icon_state = "1-2" @@ -3566,8 +3580,8 @@ /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/atrium_two) -"hJ" = ( +/area/tether/surfacebase/surface_two_hall) +"ahJ" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -3590,8 +3604,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals_central1, /turf/simulated/floor/tiled/monofloor, -/area/tether/surfacebase/atrium_two) -"hK" = ( +/area/tether/surfacebase/surface_two_hall) +"ahK" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3608,8 +3622,8 @@ dir = 6 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hL" = ( +/area/tether/surfacebase/surface_two_hall) +"ahL" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -3624,8 +3638,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hM" = ( +/area/tether/surfacebase/surface_two_hall) +"ahM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3641,8 +3655,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hN" = ( +/area/tether/surfacebase/surface_two_hall) +"ahN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3651,91 +3665,83 @@ pixel_x = 25 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"hO" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"hP" = ( -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"hQ" = ( -/obj/effect/floor_decal/corner_techfloor_grid/diagonal, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/up/supply, -/obj/structure/disposalpipe/up, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/structure/cable/green{ - d1 = 16; - d2 = 0; - icon_state = "16-0" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"hR" = ( -/obj/effect/floor_decal/techfloor{ +/area/tether/surfacebase/surface_two_hall) +"ahO" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, -/obj/machinery/space_heater, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"ahP" = ( /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hS" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/structure/cable{ - icon_state = "1-2" +"ahQ" = ( +/obj/effect/floor_decal/techfloor/corner{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, +/turf/simulated/floor/tiled/dark, /area/maintenance/lower/bar) -"hT" = ( -/obj/structure/railing{ - dir = 8 - }, +"ahR" = ( /obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/structure/railing{ + icon_state = "railing0"; dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hU" = ( -/obj/effect/floor_decal/techfloor{ - dir = 5 +"ahS" = ( +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"ahT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"ahU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"ahV" = ( +/obj/machinery/door/airlock/maintenance/common{ + name = "Morgue Access" + }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hV" = ( -/obj/effect/floor_decal/corner_techfloor_grid, +"ahW" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/turf/simulated/floor/grass, +/area/chapel/office) +"ahX" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"hW" = ( -/obj/structure/ladder{ - layer = 3.3; - pixel_y = 16 - }, -/obj/effect/floor_decal/industrial/outline/blue, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"hX" = ( -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"hY" = ( +"ahY" = ( /obj/structure/sign/warning/caution{ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS" }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) -"hZ" = ( +/area/tether/surfacebase/surface_two_hall) +"ahZ" = ( /obj/machinery/light/small{ dir = 8; pixel_x = 0 @@ -3747,8 +3753,8 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ia" = ( +/area/tether/surfacebase/surface_two_hall) +"aia" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3759,8 +3765,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ib" = ( +/area/tether/surfacebase/surface_two_hall) +"aib" = ( /obj/machinery/light/small{ dir = 4 }, @@ -3768,63 +3774,57 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ic" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"id" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ie" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/area/tether/surfacebase/surface_two_hall) +"aic" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, /area/maintenance/lower/bar) -"if" = ( -/obj/structure/catwalk, -/obj/structure/disposalpipe/segment, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, +"aid" = ( +/obj/effect/floor_decal/techfloor/corner, +/turf/simulated/floor/tiled/dark, /area/maintenance/lower/bar) -"ig" = ( -/obj/structure/railing{ +"aie" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"aif" = ( +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ih" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 +/obj/structure/cable{ + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"aig" = ( +/obj/structure/ladder{ + pixel_y = 16 + }, +/obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ii" = ( +"aih" = ( +/turf/simulated/floor/lino, +/area/chapel/office) +"aii" = ( /turf/simulated/wall, /area/maintenance/lower/rnd) -"ij" = ( +"aij" = ( /mob/living/simple_mob/animal/passive/fish/bass, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"ik" = ( +"aik" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -3837,33 +3837,34 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"il" = ( +"ail" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"im" = ( +"aim" = ( /obj/random/trash_pile, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"in" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 +"ain" = ( +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" }, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/obj/random/maintenance/clean, +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/turf/simulated/open, +/area/maintenance/lower/bar) +"aio" = ( +/obj/machinery/recharge_station, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"io" = ( -/obj/effect/floor_decal/techfloor, -/obj/effect/floor_decal/techfloor/hole, -/obj/effect/floor_decal/techfloor/hole/right, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ip" = ( +"aip" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 8 }, @@ -3878,59 +3879,92 @@ dir = 4; icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iq" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 9 +/obj/effect/floor_decal/techfloor{ + icon_state = "techfloororange_edges"; + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 9 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"ir" = ( +"aiq" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"is" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ +"air" = ( +/obj/structure/flora/ausbushes/ppflowers, +/obj/structure/flora/ausbushes/sparsegrass, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/grass, +/area/chapel/office) +"ais" = ( +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/effect/floor_decal/techfloor, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 + }, +/obj/structure/disposalpipe/up{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + icon_state = "up-scrubbers"; + dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"it" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 +"ait" = ( +/obj/structure/flora/ausbushes/fullgrass, +/turf/simulated/floor/grass, +/area/chapel/office) +"aiu" = ( +/obj/machinery/door/airlock/multi_tile/glass{ + dir = 1; + name = "Chapel Access" }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"aiv" = ( +/obj/machinery/button/windowtint{ + id = "noodle"; + pixel_x = 20; + pixel_y = 25 }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iu" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iv" = ( -/obj/structure/closet, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iw" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk, +/turf/simulated/floor/lino, +/area/chapel/office) +"aiw" = ( /obj/machinery/computer/aifixer, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -3940,7 +3974,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"ix" = ( +"aix" = ( /obj/structure/cable{ d1 = 2; d2 = 4; @@ -3953,7 +3987,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iy" = ( +"aiy" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -3965,8 +3999,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"iz" = ( +/area/tether/surfacebase/surface_two_hall) +"aiz" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -3981,22 +4015,22 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"iA" = ( +/area/tether/surfacebase/surface_two_hall) +"aiA" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"iB" = ( +"aiB" = ( /obj/structure/cable{ icon_state = "4-8" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iC" = ( +"aiC" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -4009,7 +4043,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"iD" = ( +"aiD" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -4022,7 +4056,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"iE" = ( +"aiE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -4030,95 +4064,92 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"iF" = ( +/area/tether/surfacebase/surface_two_hall) +"aiF" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, -/area/tether/surfacebase/atrium_two) -"iG" = ( -/obj/machinery/door/airlock/maintenance/engi{ - name = "Bar Maintenance Access" +/area/tether/surfacebase/surface_two_hall) +"aiG" = ( +/obj/machinery/door/airlock{ + name = "Noodle Office"; + req_access = list(27) }, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"iH" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/turf/simulated/floor/lino, +/area/chapel/office) +"aiH" = ( /obj/structure/cable{ icon_state = "1-2" }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 }, -/turf/simulated/floor/tiled/techfloor, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, /area/maintenance/lower/bar) -"iI" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iJ" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iK" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"iL" = ( -/obj/machinery/door/airlock/maintenance/common, +"aiI" = ( +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/bar) -"iM" = ( -/obj/effect/floor_decal/corner_techfloor_grid, -/obj/effect/decal/cleanable/dirt, +"aiJ" = ( +/obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"iN" = ( -/obj/random/trash_pile, +"aiK" = ( +/obj/structure/flora/ausbushes/sparsegrass, +/mob/living/simple_mob/animal/passive/snake/noodle, +/turf/simulated/floor/grass, +/area/chapel/office) +"aiL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"aiM" = ( +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"iO" = ( +"aiN" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "chapel_obs"; + layer = 3.3; + name = "Chapel Observation Shutters"; + pixel_x = -6; + pixel_y = 29; + req_access = list(27) + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aiO" = ( /obj/structure/cable{ icon_state = "2-4" }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iP" = ( +"aiP" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iQ" = ( +"aiQ" = ( /obj/structure/cable{ d1 = 1; d2 = 8; @@ -4134,7 +4165,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iR" = ( +"aiR" = ( /obj/structure/lattice, /obj/structure/disposalpipe/down{ dir = 4 @@ -4142,7 +4173,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/lower/rnd) -"iS" = ( +"aiS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -4156,20 +4187,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iT" = ( +"aiT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iU" = ( +"aiU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iV" = ( +"aiV" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 2; @@ -4177,18 +4208,49 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"iW" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" +"aiW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Command Meeting Room"; + sortType = "Command Meeting Room" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"iX" = ( +/area/tether/surfacebase/surface_two_hall) +"aiX" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"aiY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"aiZ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "noodle" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"aja" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4199,9 +4261,36 @@ /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"iY" = ( +/area/tether/surfacebase/surface_two_hall) +"ajb" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) +"ajc" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/bar) +"ajd" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -4211,66 +4300,14 @@ dir = 4 }, /obj/structure/catwalk, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"iZ" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ja" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jb" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jc" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"jd" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"je" = ( +/area/tether/surfacebase/surface_two_hall) +"aje" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -4280,21 +4317,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jf" = ( +"ajf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jg" = ( +"ajg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jh" = ( +"ajh" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -4304,7 +4341,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"ji" = ( +"aji" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -4315,14 +4352,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jj" = ( +"ajj" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jk" = ( +"ajk" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -4330,15 +4367,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jl" = ( +"ajl" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) -"jm" = ( +/area/tether/surfacebase/surface_two_hall) +"ajm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4346,8 +4383,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jn" = ( +/area/tether/surfacebase/surface_two_hall) +"ajn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -4355,58 +4392,80 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jo" = ( +/area/tether/surfacebase/surface_two_hall) +"ajo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jp" = ( -/obj/effect/floor_decal/borderfloor{ +/area/tether/surfacebase/surface_two_hall) +"ajp" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jq" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"jr" = ( -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"js" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/effect/floor_decal/rust/steel_decals_rusted1, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"jt" = ( -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"ju" = ( -/obj/effect/floor_decal/techfloor{ +"ajq" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 5 }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor/grid, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 + }, +/turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"jv" = ( +"ajr" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/chapel/main) +"ajs" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/multi_tile/glass{ + name = "Chapel" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ajt" = ( +/obj/machinery/space_heater, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) +"aju" = ( +/turf/simulated/floor/tiled/dark, +/area/maintenance/lower/bar) +"ajv" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -4423,7 +4482,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"jw" = ( +"ajw" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -4431,17 +4490,17 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jx" = ( +"ajx" = ( /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jy" = ( +"ajy" = ( /turf/simulated/mineral, /area/maintenance/lower/rnd) -"jz" = ( +"ajz" = ( /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jA" = ( +"ajA" = ( /obj/structure/closet/crate, /obj/random/maintenance/clean, /obj/random/maintenance/clean, @@ -4449,37 +4508,36 @@ /obj/random/maintenance/research, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jB" = ( +"ajB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jC" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor{ +/area/tether/surfacebase/surface_two_hall) +"ajC" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jD" = ( -/obj/structure/railing, -/obj/effect/floor_decal/techfloor/hole/right{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/light/small{ dir = 4 }, -/obj/effect/floor_decal/techfloor/hole{ - dir = 8 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"jE" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"ajD" = ( +/obj/machinery/light, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ajE" = ( /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"jF" = ( +"ajF" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -4489,70 +4547,91 @@ /obj/effect/floor_decal/corner/lime/border{ dir = 5 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"jG" = ( +"ajG" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/decal/remains/human, /obj/random/action_figure, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 +"ajH" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/chapel/office) +"ajI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jI" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jJ" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 9 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jK" = ( -/obj/structure/catwalk, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jL" = ( -/obj/machinery/door/airlock/maintenance/common, +/area/tether/surfacebase/surface_two_hall) +"ajJ" = ( /obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ajK" = ( +/obj/structure/bed/chair, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/interrogation) +"ajL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, /obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"jM" = ( +/area/tether/surfacebase/surface_two_hall) +"ajM" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside2) -"jN" = ( +"ajN" = ( /obj/structure/cable{ icon_state = "1-2" }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jO" = ( -/obj/effect/decal/cleanable/dirt, -/obj/structure/symbol/da{ - pixel_x = 32 +"ajO" = ( +/obj/structure/cable{ + icon_state = "16-0" }, +/obj/structure/cable{ + icon_state = "0-8" + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/up, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"jP" = ( +"ajP" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -4567,7 +4646,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"jQ" = ( +"ajQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4575,113 +4654,103 @@ pixel_x = -32 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jR" = ( +/area/tether/surfacebase/surface_two_hall) +"ajR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jS" = ( +/area/tether/surfacebase/surface_two_hall) +"ajS" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/structure/closet/hydrant{ - pixel_x = 32 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"jT" = ( -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jU" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jV" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 6 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jX" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jY" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ +/area/tether/surfacebase/surface_two_hall) +"ajT" = ( +/turf/simulated/wall, +/area/chapel/chapel_morgue) +"ajU" = ( +/obj/effect/floor_decal/borderfloor{ dir = 9 }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ +/obj/effect/floor_decal/corner/lime/border{ dir = 9 }, -/obj/structure/cable{ - icon_state = "1-8" +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_two) +"ajV" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"ajW" = ( +/obj/machinery/door/airlock{ + name = "Chapel Morgue"; + req_access = list(27) }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"jZ" = ( -/obj/structure/catwalk, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/structure/disposalpipe/segment{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"ajX" = ( +/obj/structure/table/woodentable, +/obj/item/device/flashlight/lamp{ + pixel_x = 2; + pixel_y = 7 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/lino, +/area/chapel/office) +"ajY" = ( +/turf/simulated/floor/carpet, +/area/chapel/main) +"ajZ" = ( +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/light{ dir = 8; - icon_state = "pipe-c" + icon_state = "tube1" }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ka" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aka" = ( /turf/simulated/wall, /area/maintenance/asmaint2) -"kb" = ( +"akb" = ( /turf/simulated/mineral, /area/maintenance/asmaint2) -"kc" = ( +"akc" = ( /obj/machinery/light{ dir = 1 }, @@ -4693,7 +4762,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kd" = ( +"akd" = ( /obj/structure/table/bench/steel, /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -4703,7 +4772,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"ke" = ( +"ake" = ( /obj/structure/table/bench/steel, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -4714,7 +4783,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kf" = ( +"akf" = ( /obj/machinery/light{ dir = 1 }, @@ -4726,13 +4795,15 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kg" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 +"akg" = ( +/obj/machinery/vending/hydronutrients, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"kh" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"akh" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -4747,7 +4818,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"ki" = ( +"aki" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -4757,10 +4828,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kj" = ( +"akj" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kk" = ( +"akk" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -4770,7 +4841,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kl" = ( +"akl" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -4789,7 +4860,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"km" = ( +"akm" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -4801,20 +4872,41 @@ /obj/machinery/atmospherics/pipe/zpipe/down/supply, /turf/simulated/open, /area/maintenance/lower/public_garden_maintenence/upper) -"kn" = ( +"akn" = ( /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"ko" = ( +"ako" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 4 }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 9 +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 }, -/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_two) -"kp" = ( +/area/tether/surfacebase/security/lowerhallway) +"akp" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -4823,7 +4915,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kq" = ( +"akq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -4831,7 +4923,7 @@ /obj/effect/floor_decal/corner/lime/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kr" = ( +"akr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4840,7 +4932,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"ks" = ( +"aks" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4848,7 +4940,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kt" = ( +"akt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -4860,7 +4952,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"ku" = ( +"aku" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -4875,7 +4967,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kv" = ( +"akv" = ( /obj/structure/closet/crate/bin{ anchored = 1; pixel_y = 16 @@ -4888,7 +4980,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kw" = ( +"akw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -4908,11 +5000,11 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/lower/public_garden_maintenence/upper) -"kx" = ( +"akx" = ( /obj/structure/sign/poster, /turf/simulated/wall, /area/tether/surfacebase/public_garden_two) -"ky" = ( +"aky" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -4924,7 +5016,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kz" = ( +"akz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -4933,16 +5025,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kA" = ( +"akA" = ( /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kB" = ( +"akB" = ( /turf/simulated/open, /area/tether/surfacebase/public_garden_two) -"kC" = ( +"akC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -4957,7 +5049,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kD" = ( +"akD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4972,7 +5064,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kE" = ( +"akE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -4993,7 +5085,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kF" = ( +"akF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5013,7 +5105,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kG" = ( +"akG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5029,7 +5121,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_two) -"kH" = ( +"akH" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -5045,7 +5137,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kI" = ( +"akI" = ( /obj/structure/table/bench/steel, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -5055,7 +5147,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kJ" = ( +"akJ" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -5067,14 +5159,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kK" = ( +"akK" = ( /obj/structure/stairs/south, /obj/structure/window/reinforced{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kL" = ( +"akL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -5087,12 +5179,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kM" = ( +"akM" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lime/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kN" = ( +"akN" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -5101,11 +5193,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kO" = ( +"akO" = ( /obj/structure/symbol/gu, /turf/simulated/wall, /area/tether/surfacebase/public_garden_two) -"kP" = ( +"akP" = ( /obj/structure/closet/hydrant{ pixel_x = -32 }, @@ -5117,7 +5209,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kQ" = ( +"akQ" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -5126,7 +5218,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kR" = ( +"akR" = ( /obj/structure/window/reinforced{ dir = 1 }, @@ -5140,7 +5232,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kS" = ( +"akS" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -5154,7 +5246,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kT" = ( +"akT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -5164,7 +5256,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kU" = ( +"akU" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -5174,7 +5266,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kV" = ( +"akV" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -5191,11 +5283,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kW" = ( +"akW" = ( /obj/structure/table/marble, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kX" = ( +"akX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -5204,7 +5296,7 @@ /obj/effect/floor_decal/corner/lime/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kY" = ( +"akY" = ( /obj/machinery/smartfridge, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -5214,7 +5306,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"kZ" = ( +"akZ" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -5224,7 +5316,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"la" = ( +"ala" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -5234,7 +5326,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"lb" = ( +"alb" = ( /obj/item/weapon/storage/box/glasses/pint, /obj/item/weapon/storage/box/glass_extras/straws, /obj/structure/table/standard{ @@ -5250,9 +5342,12 @@ dir = 2; pixel_y = -24 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"lc" = ( +"alc" = ( /obj/machinery/reagentgrinder, /obj/structure/table/standard{ name = "plastic table frame" @@ -5265,7 +5360,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_two) -"ld" = ( +"ald" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -5286,17 +5381,17 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"le" = ( +"ale" = ( /obj/structure/closet/hydrant, /turf/simulated/wall, /area/tether/surfacebase/fish_farm) -"lf" = ( +"alf" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"lg" = ( +"alg" = ( /obj/machinery/light{ dir = 1 }, @@ -5310,35 +5405,35 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lh" = ( +"alh" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"li" = ( +"ali" = ( /obj/machinery/vending/fishing, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lj" = ( +"alj" = ( /obj/structure/railing, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"lk" = ( +"alk" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"ll" = ( +"all" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lm" = ( +"alm" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 }, /turf/simulated/wall, /area/tether/surfacebase/fish_farm) -"ln" = ( +"aln" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1" @@ -5346,47 +5441,59 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lo" = ( +"alo" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"lp" = ( +"alp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lq" = ( +"alq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lr" = ( +"alr" = ( /obj/structure/table/rack, /obj/item/weapon/material/fishing_net, /obj/item/weapon/material/fishing_net, /obj/item/weapon/material/fishing_net, /obj/item/weapon/material/fishing_net, /obj/item/weapon/material/fishing_net, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"ls" = ( +"als" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/fish_farm) -"lt" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 +"alt" = ( +/obj/structure/table/bench/standard, +/obj/effect/landmark/start{ + name = "Medical Doctor" }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/water/deep/indoors, -/area/tether/surfacebase/fish_farm) -"lu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/breakroom) +"alu" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -5396,17 +5503,25 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +"alv" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/camera/network/civilian{ - icon_state = "camera"; - dir = 10 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/fish_farm) -"lw" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"alw" = ( /obj/effect/floor_decal/rust, /obj/structure/cable{ icon_state = "1-2" @@ -5423,8 +5538,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lx" = ( +/area/tether/surfacebase/surface_two_hall) +"alx" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -5446,7 +5561,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"ly" = ( +"aly" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -5469,17 +5584,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"lz" = ( +"alz" = ( /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/fish_farm) -"lA" = ( +"alA" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"lB" = ( +"alB" = ( /obj/structure/railing, /obj/structure/railing{ icon_state = "railing0"; @@ -5487,21 +5602,21 @@ }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"lC" = ( +"alC" = ( /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lD" = ( +"alD" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/water/indoors, /area/tether/surfacebase/fish_farm) -"lE" = ( +"alE" = ( /obj/machinery/light/flamp/noshade, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"lF" = ( +"alF" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -5513,27 +5628,19 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lG" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +"alG" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/camera/network/tether{ +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lH" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"alH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -5547,8 +5654,8 @@ /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lI" = ( +/area/tether/surfacebase/surface_two_hall) +"alI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5565,8 +5672,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lJ" = ( +/area/tether/surfacebase/surface_two_hall) +"alJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5584,8 +5691,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lK" = ( +/area/tether/surfacebase/surface_two_hall) +"alK" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -5599,8 +5706,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lL" = ( +/area/tether/surfacebase/surface_two_hall) +"alL" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" @@ -5613,7 +5720,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"lM" = ( +"alM" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -5625,7 +5732,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"lN" = ( +"alN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5645,7 +5752,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"lO" = ( +"alO" = ( /obj/machinery/firealarm{ dir = 1; pixel_x = 0; @@ -5673,7 +5780,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"lP" = ( +"alP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5694,7 +5801,7 @@ /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"lQ" = ( +"alQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5715,8 +5822,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lR" = ( +/area/tether/surfacebase/surface_two_hall) +"alR" = ( /obj/machinery/alarm{ dir = 4; pixel_x = -23; @@ -5724,25 +5831,25 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/fish_farm) -"lS" = ( +"alS" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/fish_farm) -"lT" = ( +"alT" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lU" = ( +"alU" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; dir = 8 }, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"lV" = ( +"alV" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -5754,7 +5861,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lW" = ( +"alW" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -5764,7 +5871,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"lX" = ( +"alX" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -5776,8 +5883,8 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lY" = ( +/area/tether/surfacebase/surface_two_hall) +"alY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5792,8 +5899,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"lZ" = ( +/area/tether/surfacebase/surface_two_hall) +"alZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5813,8 +5920,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"ma" = ( +/area/tether/surfacebase/surface_two_hall) +"ama" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -5833,8 +5940,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"mb" = ( +/area/tether/surfacebase/surface_two_hall) +"amb" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -5844,36 +5951,36 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) -"mc" = ( +/area/tether/surfacebase/surface_two_hall) +"amc" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techmaint, /area/maintenance/lower/bar) -"md" = ( +"amd" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/tether/surfacebase/north_staires_two) -"me" = ( -/obj/structure/cable/green{ - d1 = 32; - d2 = 4; - icon_state = "32-4" +"ame" = ( +/obj/machinery/light{ + dir = 8; + icon_state = "tube1" }, -/obj/structure/lattice, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/maintenance/lower/bar) -"mf" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"amf" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/fish_farm) -"mg" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"amg" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -5888,7 +5995,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"mh" = ( +"amh" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/multi_tile/glass{ dir = 1; @@ -5902,7 +6009,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"mi" = ( +"ami" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -5929,7 +6036,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"mj" = ( +"amj" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -5939,8 +6046,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"mk" = ( +/area/tether/surfacebase/surface_two_hall) +"amk" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -5950,8 +6057,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"ml" = ( +/area/tether/surfacebase/surface_two_hall) +"aml" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -5963,8 +6070,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_two) -"mm" = ( +/area/tether/surfacebase/surface_two_hall) +"amm" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -5973,13 +6080,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mn" = ( +"amn" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mo" = ( +"amo" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -5989,14 +6096,14 @@ }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"mp" = ( +"amp" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"mq" = ( +"amq" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -6007,19 +6114,19 @@ }, /turf/simulated/floor/water/deep/indoors, /area/tether/surfacebase/fish_farm) -"mr" = ( +"amr" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"ms" = ( +"ams" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"mt" = ( +"amt" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -6032,7 +6139,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"mu" = ( +"amu" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -6057,7 +6164,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mv" = ( +"amv" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, @@ -6068,7 +6175,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_staires_two) -"mw" = ( +"amw" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -6084,7 +6191,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mx" = ( +"amx" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -6097,24 +6204,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"my" = ( -/obj/structure/cable{ - icon_state = "16-0" - }, -/obj/structure/cable{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/industrial/outline/yellow, +"amy" = ( /obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mz" = ( +"amz" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -6130,18 +6225,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mA" = ( -/obj/structure/railing{ - icon_state = "railing0"; - dir = 4 +"amA" = ( +/obj/structure/cable/green{ + icon_state = "4-8" }, -/obj/machinery/camera/network/civilian{ - icon_state = "camera"; - dir = 10 +/obj/machinery/light_switch{ + dir = 1; + on = 0; + pixel_x = -10; + pixel_y = -24 }, -/turf/simulated/floor/water/deep/indoors, -/area/tether/surfacebase/fish_farm) -"mB" = ( +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"amB" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -6155,29 +6251,29 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"mC" = ( +"amC" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1" }, /turf/simulated/floor/tiled, /area/tether/surfacebase/fish_farm) -"mD" = ( +"amD" = ( /obj/machinery/light/small, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"mE" = ( +"amE" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"mF" = ( +"amF" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/beach/sand/desert, /area/tether/surfacebase/fish_farm) -"mG" = ( +"amG" = ( /obj/machinery/door/airlock/maintenance/common, /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; @@ -6186,10 +6282,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/surfacebase/fish_farm) -"mH" = ( +"amH" = ( /turf/simulated/floor, /area/maintenance/lower/rnd) -"mI" = ( +"amI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/maintenance/research, @@ -6197,7 +6293,7 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mJ" = ( +"amJ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/closet, /obj/random/maintenance/research, @@ -6205,88 +6301,85 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mK" = ( +"amK" = ( /obj/item/weapon/storage/fancy/cigar/havana, /obj/effect/decal/cleanable/dirt, /obj/random/drinkbottle, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) -"mL" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/machinery/camera/network/tether{ +/area/tether/surfacebase/surface_two_hall) +"amL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"mM" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"mN" = ( -/obj/structure/railing{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 }, -/obj/structure/railing{ - dir = 1 - }, -/obj/effect/decal/cleanable/dirt, -/obj/structure/cable{ +/obj/structure/cable/green{ icon_state = "1-2" }, -/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/lino, +/area/chapel/office) +"amM" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"amN" = ( +/obj/structure/flora/ausbushes/brflowers, +/turf/simulated/floor/grass, +/area/chapel/office) +"amO" = ( +/obj/machinery/door/airlock{ + name = "Chapel Morgue"; + req_one_access = list(6,27) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"amP" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/obj/effect/floor_decal/techfloor{ + icon_state = "techfloororange_edges"; + dir = 8 + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"mO" = ( -/obj/structure/railing{ - dir = 1 - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"mP" = ( -/obj/structure/railing{ - dir = 1 - }, +"amQ" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, /obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/effect/floor_decal/rust, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/bar) -"mQ" = ( -/obj/item/toy/plushie/kitten{ - desc = "An odd appearing, cryptic plush of a cat."; - name = "Pablo" +"amR" = ( +/obj/structure/flora/ausbushes/fullgrass, +/obj/machinery/light/small{ + dir = 8 }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/lower/bar) -"mR" = ( -/obj/item/clothing/under/batter, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/lower/bar) -"mS" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/machinery/camera/network/civilian{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"mT" = ( +/mob/living/simple_mob/animal/passive/mouse/white, +/turf/simulated/floor/grass, +/area/chapel/office) +"amS" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater, +/obj/item/weapon/nullrod, +/obj/machinery/light/small, +/turf/simulated/floor/lino, +/area/chapel/office) +"amT" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -6297,7 +6390,7 @@ /obj/random/tool, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"mU" = ( +"amU" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -6310,14 +6403,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"mV" = ( +"amV" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 }, /turf/simulated/floor, /area/maintenance/lower/rnd) -"mW" = ( +"amW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/industrial/danger{ icon_state = "danger"; @@ -6328,11 +6421,11 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mX" = ( +"amX" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mY" = ( +"amY" = ( /obj/structure/cable{ icon_state = "2-4" }, @@ -6343,7 +6436,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"mZ" = ( +"amZ" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -6353,7 +6446,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"na" = ( +"ana" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -6362,7 +6455,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"nb" = ( +"anb" = ( /obj/structure/cable{ icon_state = "1-8" }, @@ -6373,86 +6466,102 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"nc" = ( +"anc" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/camera/network/tether{ dir = 4 }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"nd" = ( +/area/tether/surfacebase/surface_two_hall) +"and" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ne" = ( -/obj/structure/railing{ - dir = 4 +/area/tether/surfacebase/surface_two_hall) +"ane" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/snakesnackbox, +/turf/simulated/floor/grass, +/area/chapel/office) +"anf" = ( +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "chapel_obs"; + layer = 3.3; + name = "Chapel Observation Shutters"; + pixel_x = 29; + pixel_y = 0; + req_access = list(27) }, -/obj/machinery/light/small{ - dir = 8 +/turf/simulated/floor/lino, +/area/chapel/office) +"ang" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nf" = ( -/obj/structure/railing{ - dir = 8 +/turf/simulated/floor/carpet, +/area/chapel/main) +"anh" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"ani" = ( /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ng" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nh" = ( -/obj/item/clothing/shoes/boots/jackboots{ - desc = "Very old and worn baseball cleats."; - name = "baseball cleats" - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/lower/bar) -"ni" = ( -/obj/item/clothing/head/soft/black{ - desc = "Its a dusty old cap, It hides most your eyes." - }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/lower/bar) -"nj" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 4; + d1 = 1; + d2 = 2; + icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nk" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/sortjunction{ + dir = 1; + icon_state = "pipe-j1s"; + name = "Chapel"; + sortType = "Chapel" + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"anj" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/carpet, +/area/chapel/main) +"ank" = ( /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nl" = ( +"anl" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nm" = ( +"anm" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nn" = ( +"ann" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -6474,32 +6583,35 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"no" = ( -/obj/machinery/camera/network/research, -/turf/simulated/floor/reinforced, -/area/maintenance/lower/rnd) -"np" = ( +"ano" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 4 + }, +/turf/simulated/floor/water/deep/indoors, +/area/tether/surfacebase/fish_farm) +"anp" = ( /obj/machinery/light{ dir = 1 }, /obj/item/toy/plushie/farwa, /turf/simulated/floor/reinforced, /area/maintenance/lower/rnd) -"nq" = ( +"anq" = ( /obj/effect/floor_decal/industrial/danger/corner{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"nr" = ( +"anr" = ( /obj/structure/grille, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ns" = ( +/area/tether/surfacebase/surface_two_hall) +"ans" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -6507,61 +6619,71 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"nt" = ( +/area/tether/surfacebase/surface_two_hall) +"ant" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"nu" = ( -/obj/structure/railing{ +/area/tether/surfacebase/surface_two_hall) +"anu" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/techfloor{ - dir = 8 +/obj/machinery/light/small{ + dir = 4 }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 8 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nv" = ( -/obj/structure/railing{ - dir = 8 +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"anv" = ( +/obj/machinery/power/breakerbox/activated{ + RCon_tag = "Command Substation Bypass" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"anw" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/structure/railing, /obj/structure/cable{ - icon_state = "1-2" + icon_state = "4-8" }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nw" = ( -/obj/structure/railing, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"anx" = ( +/obj/machinery/door/airlock/maintenance/common, /obj/structure/disposalpipe/segment, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nx" = ( -/obj/structure/railing, -/obj/effect/floor_decal/techfloor{ - dir = 4 - }, -/obj/random/junk, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ny" = ( +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"any" = ( /turf/simulated/mineral, /area/maintenance/lower/bar) -"nz" = ( -/obj/item/weapon/material/twohanded/baseballbat{ - desc = "This bat looks very off."; - health = 500 +"anz" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/cable/green{ + d1 = 16; + d2 = 0; + icon_state = "16-0" + }, +/obj/machinery/atmospherics/pipe/zpipe/up/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, -/obj/effect/floor_decal/rust, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, -/area/maintenance/lower/bar) -"nA" = ( +/area/maintenance/commandmaint) +"anA" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -6571,11 +6693,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nB" = ( +"anB" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nC" = ( +"anC" = ( /obj/structure/railing{ dir = 8 }, @@ -6588,15 +6710,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nD" = ( +"anD" = ( /mob/living/simple_mob/slime/xenobio/rainbow/kendrick, /turf/simulated/floor/reinforced, /area/maintenance/lower/rnd) -"nE" = ( +"anE" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/reinforced, /area/maintenance/lower/rnd) -"nF" = ( +"anF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced, @@ -6612,7 +6734,7 @@ }, /turf/simulated/floor/plating, /area/rnd/rdoffice) -"nG" = ( +"anG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -6626,7 +6748,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"nH" = ( +"anH" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -6634,27 +6756,22 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"nI" = ( +"anI" = ( /turf/simulated/wall/r_wall, /area/maintenance/lower/rnd) -"nJ" = ( -/obj/structure/railing{ - dir = 4 +"anJ" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 }, -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/random/trash_pile, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nK" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"nL" = ( +/area/maintenance/lower/south) +"anK" = ( +/turf/simulated/wall/r_wall, +/area/teleporter) +"anL" = ( /obj/structure/railing{ dir = 4 }, @@ -6667,7 +6784,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nM" = ( +"anM" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -6680,13 +6797,13 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"nN" = ( +"anN" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/reinforced, /area/maintenance/lower/rnd) -"nO" = ( +"anO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -6696,7 +6813,7 @@ }, /turf/simulated/floor/reinforced, /area/maintenance/lower/rnd) -"nP" = ( +"anP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -6718,7 +6835,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/rdoffice) -"nQ" = ( +"anQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -6736,7 +6853,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"nR" = ( +"anR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -6746,7 +6863,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"nS" = ( +"anS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -6755,7 +6872,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"nT" = ( +"anT" = ( /obj/machinery/requests_console{ announcementConsole = 1; department = "Research Director's Desk"; @@ -6776,10 +6893,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"nU" = ( +"anU" = ( /turf/simulated/wall, /area/maintenance/substation/research) -"nV" = ( +"anV" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -6787,7 +6904,7 @@ }, /turf/simulated/wall, /area/maintenance/substation/research) -"nW" = ( +"anW" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable{ icon_state = "1-2" @@ -6795,13 +6912,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"nX" = ( +"anX" = ( /obj/structure/sign/warning/caution{ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS" }, /turf/simulated/wall/r_wall, /area/maintenance/lower/rnd) -"nY" = ( +"anY" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -6816,77 +6933,48 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/lower/rnd) -"nZ" = ( +"anZ" = ( /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"oa" = ( -/obj/effect/floor_decal/techfloor/corner{ - dir = 4 +"aoa" = ( +/obj/structure/dispenser{ + phorontanks = 0 }, -/obj/effect/floor_decal/rust, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aob" = ( +/turf/simulated/wall/r_wall, +/area/bridge_hallway) +"aoc" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aod" = ( /obj/effect/floor_decal/corner_techfloor_grid{ - dir = 4 + dir = 6 }, /turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ob" = ( -/obj/effect/floor_decal/techfloor{ +/area/maintenance/lower/south) +"aoe" = ( +/obj/machinery/suit_storage_unit/standard_unit, +/obj/machinery/light/small{ + icon_state = "bulb1"; dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"oc" = ( -/obj/structure/railing{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aof" = ( +/obj/structure/table/standard, +/obj/item/weapon/hand_tele, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/effect/floor_decal/techfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"od" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 5 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"oe" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "1-4" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"of" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 10 - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"og" = ( +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aog" = ( /obj/structure/railing{ dir = 4 }, @@ -6899,7 +6987,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"oh" = ( +"aoh" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -6907,7 +6995,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"oi" = ( +"aoi" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -6917,7 +7005,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"oj" = ( +"aoj" = ( /obj/structure/railing{ dir = 8 }, @@ -6936,10 +7024,10 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"ok" = ( +"aok" = ( /turf/simulated/wall/r_wall, /area/server) -"ol" = ( +"aol" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -6954,13 +7042,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"om" = ( +"aom" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"on" = ( +"aon" = ( /obj/structure/table/glass, /obj/machinery/photocopier/faxmachine{ department = "Research Director's Office" @@ -6971,7 +7059,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oo" = ( +"aoo" = ( /obj/structure/bed/chair/office/light, /obj/machinery/button/windowtint{ id = "rd_office"; @@ -6996,7 +7084,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"op" = ( +"aop" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -7006,13 +7094,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oq" = ( +"aoq" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Research Substation Bypass" }, /turf/simulated/floor, /area/maintenance/substation/research) -"or" = ( +"aor" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -7029,7 +7117,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"os" = ( +"aos" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7038,7 +7126,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"ot" = ( +"aot" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7054,7 +7142,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"ou" = ( +"aou" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 6 }, @@ -7078,7 +7166,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"ov" = ( +"aov" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 @@ -7095,7 +7183,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"ow" = ( +"aow" = ( /obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ dir = 4 }, @@ -7114,10 +7202,10 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"ox" = ( +"aox" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) -"oy" = ( +"aoy" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -7128,8 +7216,8 @@ dir = 2 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"oz" = ( +/area/tether/surfacebase/surface_two_hall) +"aoz" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -7137,50 +7225,43 @@ pixel_y = 30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"oA" = ( +/area/tether/surfacebase/surface_two_hall) +"aoA" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_two) -"oB" = ( +/area/tether/surfacebase/surface_two_hall) +"aoB" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"oC" = ( +/area/tether/surfacebase/surface_two_hall) +"aoC" = ( /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"oD" = ( +/area/tether/surfacebase/surface_two_hall) +"aoD" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_two) -"oE" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"oF" = ( +/area/tether/surfacebase/surface_two_hall) +"aoE" = ( +/turf/simulated/wall, +/area/chapel/office) +"aoF" = ( /turf/simulated/floor/outdoors/rocks/virgo3b, /area/tether/surfacebase/outside/outside2) -"oG" = ( +"aoG" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"oH" = ( +"aoH" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 2; icon_state = "map_vent_out"; @@ -7193,7 +7274,7 @@ temperature = 80 }, /area/server) -"oI" = ( +"aoI" = ( /obj/machinery/r_n_d/server/robotics, /obj/structure/window/reinforced{ dir = 4 @@ -7205,18 +7286,13 @@ temperature = 80 }, /area/server) -"oJ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden{ - dir = 6; - icon_state = "intact" +"aoJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/effect/floor_decal/techfloor{ - dir = 1 - }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/techfloor, -/area/server) -"oK" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/fish_farm) +"aoK" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, @@ -7230,7 +7306,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/server) -"oL" = ( +"aoL" = ( /obj/machinery/papershredder, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -7245,13 +7321,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oM" = ( +"aoM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oN" = ( +"aoN" = ( /obj/structure/table/glass, /obj/machinery/computer/skills{ dir = 1 @@ -7262,13 +7338,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oO" = ( +"aoO" = ( /obj/structure/table/glass, /obj/item/weapon/folder/white_rd, /obj/item/weapon/stamp/rd, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oP" = ( +"aoP" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin{ pixel_x = 1; @@ -7282,9 +7358,13 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"oQ" = ( +"aoQ" = ( /obj/machinery/power/smes/buildable{ charge = 0; output_attempt = 0; @@ -7298,7 +7378,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"oR" = ( +"aoR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 8 }, @@ -7308,7 +7388,7 @@ /obj/structure/cable, /turf/simulated/floor, /area/maintenance/substation/research) -"oS" = ( +"aoS" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -7320,7 +7400,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"oT" = ( +"aoT" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -7329,7 +7409,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"oU" = ( +"aoU" = ( /obj/machinery/atmospherics/pipe/zpipe/up/supply{ dir = 1 }, @@ -7345,32 +7425,30 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"oV" = ( +"aoV" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"oW" = ( +/area/tether/surfacebase/surface_two_hall) +"aoW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"oX" = ( +/area/tether/surfacebase/surface_two_hall) +"aoX" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/machinery/light/small{ - dir = 1 - }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"oY" = ( +/area/tether/surfacebase/surface_two_hall) +"aoY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"oZ" = ( +/area/tether/surfacebase/surface_two_hall) +"aoZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -7378,8 +7456,8 @@ pixel_y = 30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pa" = ( +/area/tether/surfacebase/surface_two_hall) +"apa" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -7388,8 +7466,8 @@ pixel_y = 22 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pb" = ( +/area/tether/surfacebase/surface_two_hall) +"apb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -7397,22 +7475,22 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pc" = ( +/area/tether/surfacebase/surface_two_hall) +"apc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pd" = ( +/area/tether/surfacebase/surface_two_hall) +"apd" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pe" = ( +/area/tether/surfacebase/surface_two_hall) +"ape" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -7420,8 +7498,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pf" = ( +/area/tether/surfacebase/surface_two_hall) +"apf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -7432,73 +7510,125 @@ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pg" = ( -/obj/effect/floor_decal/borderfloor/corner{ +/area/tether/surfacebase/surface_two_hall) +"apg" = ( +/obj/structure/cable/green{ + icon_state = "4-8"; dir = 1 }, -/obj/effect/floor_decal/corner/green/bordercorner{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ph" = ( -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aph" = ( +/obj/item/weapon/stool/padded, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"api" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "chapel" + }, +/turf/simulated/floor, +/area/chapel/office) +"apj" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/obj/machinery/light/small{ + dir = 4; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"apk" = ( +/obj/machinery/computer/teleporter{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apm" = ( +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 + }, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/clothing/mask/gas, +/obj/item/device/gps/command, +/obj/item/device/gps/command, +/obj/item/device/gps/command, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apn" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pi" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"pj" = ( -/obj/structure/catwalk, -/obj/structure/extinguisher_cabinet{ - pixel_y = 30 +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pk" = ( -/obj/structure/catwalk, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pl" = ( -/obj/structure/catwalk, -/obj/machinery/light/small{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pm" = ( -/obj/structure/catwalk, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pn" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"po" = ( -/obj/structure/symbol/gu, -/turf/simulated/wall{ - can_open = 1 - }, -/area/maintenance/lower/bar) -"pp" = ( +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"app" = ( /turf/simulated/floor/outdoors/dirt/virgo3b, /area/tether/surfacebase/outside/outside2) -"pq" = ( +"apq" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside2) -"pr" = ( +"apr" = ( /obj/structure/railing{ dir = 8 }, @@ -7510,7 +7640,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"ps" = ( +"aps" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; icon_state = "map" @@ -7522,7 +7652,7 @@ temperature = 80 }, /area/server) -"pt" = ( +"apt" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -7536,11 +7666,11 @@ temperature = 80 }, /area/server) -"pu" = ( +"apu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden, /turf/simulated/floor/tiled/techfloor, /area/server) -"pv" = ( +"apv" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, @@ -7551,7 +7681,7 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/server) -"pw" = ( +"apw" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -7571,19 +7701,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"px" = ( +"apx" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"py" = ( +"apy" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"pz" = ( +"apz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -7598,7 +7728,7 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"pA" = ( +"apA" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Research Subgrid"; name_tag = "Research Subgrid" @@ -7612,21 +7742,18 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"pB" = ( -/obj/effect/floor_decal/industrial/warning/corner{ +"apB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/green/border, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/camera/network/engineering{ - dir = 1 - }, -/turf/simulated/floor, -/area/maintenance/substation/research) -"pC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"apC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -7639,7 +7766,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"pD" = ( +"apD" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -7658,7 +7785,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/research) -"pE" = ( +"apE" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ d1 = 2; @@ -7673,7 +7800,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"pF" = ( +"apF" = ( /obj/machinery/door/airlock/maintenance/engi, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 @@ -7683,18 +7810,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"pG" = ( +"apG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"pH" = ( +"apH" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pI" = ( +/area/tether/surfacebase/surface_two_hall) +"apI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -7702,8 +7829,8 @@ dir = 5 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pJ" = ( +/area/tether/surfacebase/surface_two_hall) +"apJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7711,8 +7838,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pK" = ( +/area/tether/surfacebase/surface_two_hall) +"apK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7722,13 +7849,13 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pL" = ( +/area/tether/surfacebase/surface_two_hall) +"apL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pM" = ( +/area/tether/surfacebase/surface_two_hall) +"apM" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -7740,8 +7867,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pN" = ( +/area/tether/surfacebase/surface_two_hall) +"apN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -7752,8 +7879,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pO" = ( +/area/tether/surfacebase/surface_two_hall) +"apO" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -7770,8 +7897,8 @@ sortType = "Janitor Closet" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pP" = ( +/area/tether/surfacebase/surface_two_hall) +"apP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -7785,160 +7912,98 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pQ" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"pS" = ( -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 1; - name = "Maintenance Access" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/area/tether/surfacebase/surface_two_hall) +"apQ" = ( /obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/tether/surfacebase/atrium_two) -"pT" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pU" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/camera/network/tether{ +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pV" = ( -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor, +/area/bridge_hallway) +"apR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"apS" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/light/small{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"apT" = ( +/obj/structure/stairs/north, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"apU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apV" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apW" = ( +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"apX" = ( +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, /obj/structure/cable{ icon_state = "4-8" }, -/obj/machinery/door/airlock/multi_tile/metal/mait{ - dir = 1; - name = "Maintenance Access" - }, -/obj/structure/catwalk, -/turf/simulated/floor/tiled/techfloor/grid, -/area/maintenance/lower/bar) -"pW" = ( -/obj/structure/catwalk, -/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/visible/supply{ - dir = 4 - }, /obj/structure/cable{ - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/structure/cable{ - icon_state = "2-8" - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pX" = ( -/obj/structure/frame{ - anchored = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"pY" = ( -/turf/simulated/floor, -/area/maintenance/lower/bar) -"pZ" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 4 + icon_state = "2-4" }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/plating, -/area/maintenance/lower/bar) -"qa" = ( +/area/maintenance/substation/command) +"apY" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/teleporter) +"apZ" = ( +/obj/machinery/teleport/station{ + dir = 2 + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aqa" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"qb" = ( +"aqb" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -7946,7 +8011,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"qc" = ( +"aqc" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; external_pressure_bound = 0; @@ -7967,7 +8032,7 @@ temperature = 80 }, /area/server) -"qd" = ( +"aqd" = ( /obj/machinery/r_n_d/server/core, /obj/structure/window/reinforced{ dir = 4 @@ -7980,19 +8045,19 @@ temperature = 80 }, /area/server) -"qe" = ( +"aqe" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/server) -"qf" = ( +"aqf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/server) -"qg" = ( +"aqg" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/command{ name = "Server Room"; @@ -8000,7 +8065,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qh" = ( +"aqh" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -8010,7 +8075,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qi" = ( +"aqi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8018,7 +8083,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qj" = ( +"aqj" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -8039,10 +8104,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qk" = ( +"aqk" = ( /turf/simulated/wall, /area/rnd/lockers) -"ql" = ( +"aql" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, @@ -8055,33 +8120,46 @@ /obj/machinery/door/airlock/maintenance/rnd, /turf/simulated/floor/plating, /area/rnd/lockers) -"qm" = ( +"aqm" = ( /turf/simulated/wall/r_wall, /area/rnd/lockers) -"qn" = ( +"aqn" = ( /obj/structure/sign/deck/second, /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"qo" = ( +"aqo" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qp" = ( +/area/tether/surfacebase/surface_two_hall) +"aqp" = ( /obj/effect/floor_decal/borderfloor/corner, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qq" = ( -/obj/effect/floor_decal/borderfloor, -/obj/machinery/camera/network/tether{ - dir = 1 +/area/tether/surfacebase/surface_two_hall) +"aqq" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qr" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_two_hall) +"aqr" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/firealarm{ dir = 1; @@ -8090,21 +8168,21 @@ }, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qs" = ( +/area/tether/surfacebase/surface_two_hall) +"aqs" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qt" = ( +/area/tether/surfacebase/surface_two_hall) +"aqt" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qu" = ( +/area/tether/surfacebase/surface_two_hall) +"aqu" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -8117,8 +8195,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qv" = ( +/area/tether/surfacebase/surface_two_hall) +"aqv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -8134,8 +8212,8 @@ }, /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qw" = ( +/area/tether/surfacebase/surface_two_hall) +"aqw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -8146,24 +8224,31 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qx" = ( +/area/tether/surfacebase/surface_two_hall) +"aqx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/yellow/bordercorner2, /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qy" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/camera/network/tether{ - dir = 1 +/area/tether/surfacebase/surface_two_hall) +"aqy" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qz" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aqz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -8174,36 +8259,36 @@ }, /obj/effect/floor_decal/corner/yellow/border, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qA" = ( +/area/tether/surfacebase/surface_two_hall) +"aqA" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qB" = ( +/area/tether/surfacebase/surface_two_hall) +"aqB" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/newscaster{ pixel_x = 0; pixel_y = -30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qC" = ( +/area/tether/surfacebase/surface_two_hall) +"aqC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qD" = ( +/area/tether/surfacebase/surface_two_hall) +"aqD" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qE" = ( +/area/tether/surfacebase/surface_two_hall) +"aqE" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qF" = ( +/area/tether/surfacebase/surface_two_hall) +"aqF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable{ @@ -8223,47 +8308,40 @@ dir = 8 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qG" = ( +/area/tether/surfacebase/surface_two_hall) +"aqG" = ( /obj/effect/floor_decal/borderfloor{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 +/obj/machinery/camera/network/tether{ + dir = 9 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"qH" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-2" +/area/tether/surfacebase/surface_two_hall) +"aqH" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aqI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aqJ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, -/obj/machinery/atmospherics/pipe/simple/visible/supply, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"qI" = ( -/obj/structure/dogbed, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 +/obj/effect/floor_decal/corner/green/border{ + dir = 8 }, -/mob/living/simple_mob/animal/passive/lizard, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"qJ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"qK" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"qL" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aqK" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aqL" = ( /obj/structure/railing{ dir = 8 }, @@ -8277,7 +8355,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"qM" = ( +"aqM" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -8291,14 +8369,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/server) -"qN" = ( +"aqN" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techfloor, /area/server) -"qO" = ( +"aqO" = ( /turf/simulated/floor/tiled/techfloor, /area/server) -"qP" = ( +"aqP" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -8308,7 +8386,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/server) -"qQ" = ( +"aqQ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -8336,7 +8414,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qR" = ( +"aqR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8361,7 +8439,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qS" = ( +"aqS" = ( /obj/structure/table/standard, /obj/item/weapon/cartridge/signal/science, /obj/item/weapon/cartridge/signal/science, @@ -8393,41 +8471,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"qT" = ( -/obj/structure/table/standard, -/obj/item/device/taperecorder{ - pixel_x = -3 - }, -/obj/item/device/paicard{ - pixel_x = 4 - }, -/obj/item/weapon/circuitboard/teleporter, -/obj/item/weapon/circuitboard/aicore{ - pixel_x = -2; - pixel_y = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/rdoffice) -"qU" = ( +"aqT" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aqU" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/industrial/outline, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) -"qV" = ( +"aqV" = ( /obj/effect/floor_decal/industrial/outline, /obj/structure/closet/wardrobe/science_white, /obj/machinery/light{ @@ -8435,13 +8489,14 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) -"qW" = ( +"aqW" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/industrial/outline, /obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) -"qX" = ( +"aqX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -8452,20 +8507,27 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) -"qY" = ( -/obj/structure/closet/secure_closet/scientist, -/obj/effect/floor_decal/industrial/outline, -/obj/machinery/camera/network/research{ - dir = 8 +"aqY" = ( +/obj/structure/closet/wardrobe/chaplain_black, +/obj/item/weapon/storage/fancy/crayons, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/item/weapon/flame/candle/candelabra, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/lockers) -"qZ" = ( +/turf/simulated/floor/lino, +/area/chapel/office) +"aqZ" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"ra" = ( +/area/tether/surfacebase/surface_two_hall) +"ara" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -8474,30 +8536,30 @@ pixel_y = -30 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"rb" = ( +/area/tether/surfacebase/surface_two_hall) +"arb" = ( /obj/structure/sign/warning/caution{ name = "\improper CAUTION - DANGEROUS EQUIPMENT AND DROPS" }, /turf/simulated/wall, /area/engineering/lower/lobby) -"rc" = ( +"arc" = ( /turf/simulated/wall, /area/engineering/lower/lobby) -"rd" = ( +"ard" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/lower/lobby) -"re" = ( +"are" = ( /obj/machinery/door/airlock/glass{ name = "Atmospherics" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/engineering/lower/lobby) -"rf" = ( +"arf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/glass{ @@ -8507,23 +8569,23 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/engineering/lower/lobby) -"rg" = ( +"arg" = ( /turf/simulated/wall, /area/engineering/lower/breakroom) -"rh" = ( +"arh" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/lower/breakroom) -"ri" = ( +"ari" = ( /obj/structure/grille, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_two) -"rj" = ( +/area/tether/surfacebase/surface_two_hall) +"arj" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8540,67 +8602,57 @@ /obj/machinery/door/airlock/multi_tile/glass, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"rk" = ( +"ark" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"rl" = ( +"arl" = ( /turf/simulated/wall, /area/tether/surfacebase/east_stairs_two) -"rm" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 +"arm" = ( +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"arn" = ( +/obj/machinery/teleport/hub{ + dir = 2 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aro" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"arp" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"rn" = ( -/obj/effect/floor_decal/rust, -/obj/structure/railing{ - dir = 4 +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"arq" = ( +/obj/structure/morgue/crematorium, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"arr" = ( +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"ro" = ( -/obj/effect/floor_decal/rust, -/obj/structure/catwalk, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/cargo, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"rp" = ( -/obj/structure/frame/computer, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"rq" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"rr" = ( -/obj/structure/frame{ - anchored = 1 - }, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"rs" = ( +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"ars" = ( /obj/structure/railing{ dir = 4 }, @@ -8614,7 +8666,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"rt" = ( +"art" = ( /obj/structure/railing{ dir = 8 }, @@ -8628,7 +8680,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"ru" = ( +"aru" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -8643,7 +8695,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"rv" = ( +"arv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8651,7 +8703,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"rw" = ( +"arw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -8662,7 +8714,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"rx" = ( +"arx" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -8681,7 +8733,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"ry" = ( +"ary" = ( /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ id = "rd_office" @@ -8689,7 +8741,7 @@ /obj/structure/cable/green, /turf/simulated/floor, /area/rnd/rdoffice) -"rz" = ( +"arz" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -8706,7 +8758,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/rdoffice) -"rA" = ( +"arA" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -8721,7 +8773,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"rB" = ( +"arB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -8730,7 +8782,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"rC" = ( +"arC" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -8751,7 +8803,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"rD" = ( +"arD" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -8773,7 +8825,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/lockers) -"rE" = ( +"arE" = ( /obj/effect/floor_decal/industrial/outline, /obj/structure/closet/wardrobe/robotics_black, /obj/machinery/alarm{ @@ -8783,13 +8835,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) -"rF" = ( +"arF" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/emergency_storage/atmos) -"rG" = ( +"arG" = ( /turf/simulated/wall, /area/tether/surfacebase/emergency_storage/atmos) -"rH" = ( +"arH" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -8806,7 +8858,7 @@ /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rI" = ( +"arI" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -8822,7 +8874,7 @@ /obj/structure/bed/chair, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rJ" = ( +"arJ" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 1 @@ -8841,7 +8893,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rK" = ( +"arK" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -8850,7 +8902,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rL" = ( +"arL" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -8876,7 +8928,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rM" = ( +"arM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/junction{ dir = 1 @@ -8890,7 +8942,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rN" = ( +"arN" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -8911,14 +8963,14 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"rO" = ( +"arO" = ( /obj/structure/bookcase, /obj/item/weapon/book/manual/engineering_guide, /obj/item/weapon/book/manual/engineering_construction, /obj/item/weapon/book/manual/atmospipes, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"rP" = ( +"arP" = ( /obj/structure/cable/cyan{ d2 = 2; icon_state = "0-2" @@ -8934,45 +8986,45 @@ }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"rQ" = ( +"arQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"rR" = ( +"arR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"rS" = ( +"arS" = ( /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"rT" = ( +"arT" = ( /obj/machinery/newscaster{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"rU" = ( +"arU" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"rV" = ( +"arV" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"rW" = ( +"arW" = ( /obj/structure/grille, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"rX" = ( +"arX" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8990,64 +9042,75 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"rY" = ( +"arY" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"rZ" = ( +"arZ" = ( /turf/simulated/wall, /area/maintenance/lower/south) -"sa" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 +"asa" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"asb" = ( +/obj/machinery/door/airlock/command{ + name = "Teleport Access"; + req_access = list(17) }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/portable_atmospherics/hydroponics, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"sb" = ( -/obj/structure/railing{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"sc" = ( -/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"sd" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/alarm{ - dir = 4; - icon_state = "alarm0"; - pixel_x = -22; - pixel_y = 0 +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"asc" = ( +/turf/simulated/wall/r_wall, +/area/bridge/meeting_room) +"asd" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Command Meeting Room" }, -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"se" = ( -/obj/effect/decal/cleanable/dirt, -/obj/item/weapon/newspaper, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"sf" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"sg" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"ase" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Confession Booth (Chaplain)"; + req_access = list(22) + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"asf" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Command Meeting Room" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge/meeting_room) +"asg" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"sh" = ( +"ash" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -9058,11 +9121,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"si" = ( +"asi" = ( /obj/structure/bed/chair/office/light, /turf/simulated/floor/tiled/techfloor, /area/server) -"sj" = ( +"asj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -9076,7 +9139,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"sk" = ( +"ask" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -9095,7 +9158,7 @@ }, /turf/simulated/floor/tiled, /area/server) -"sl" = ( +"asl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9126,7 +9189,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sm" = ( +"asm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -9155,7 +9218,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sn" = ( +"asn" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -9180,7 +9243,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"so" = ( +"aso" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9209,7 +9272,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sp" = ( +"asp" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9232,7 +9295,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sq" = ( +"asq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9262,7 +9325,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sr" = ( +"asr" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ dir = 4 @@ -9284,7 +9347,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"ss" = ( +"ass" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9303,7 +9366,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"st" = ( +"ast" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9328,7 +9391,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"su" = ( +"asu" = ( /obj/structure/disposalpipe/sortjunction{ name = "RD Office"; sortType = "RD Office" @@ -9363,7 +9426,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"sv" = ( +"asv" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -9384,7 +9447,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/lockers) -"sw" = ( +"asw" = ( /obj/structure/closet/secure_closet/scientist, /obj/effect/floor_decal/industrial/outline, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -9396,19 +9459,19 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/lockers) -"sx" = ( +"asx" = ( /turf/simulated/mineral, /area/tether/surfacebase/emergency_storage/atmos) -"sy" = ( +"asy" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"sz" = ( +"asz" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"sA" = ( +"asA" = ( /obj/structure/cable/cyan{ d2 = 2; icon_state = "0-2" @@ -9422,39 +9485,42 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"sB" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 +"asB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/machinery/camera/network/engineering, -/obj/machinery/atmospherics/unary/vent_pump/on, -/turf/simulated/floor/tiled, -/area/engineering/lower/lobby) -"sC" = ( +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"asC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 5 }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"sD" = ( +"asD" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"sE" = ( +"asE" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red, /obj/machinery/meter, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"sF" = ( +"asF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"sG" = ( +"asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 10 @@ -9466,7 +9532,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"sH" = ( +"asH" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9486,10 +9552,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"sI" = ( +"asI" = ( /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"sJ" = ( +"asJ" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -9498,22 +9564,22 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"sK" = ( +"asK" = ( /obj/structure/bed/chair, /obj/effect/landmark/start{ name = "Atmospheric Technician" }, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) -"sL" = ( +"asL" = ( /obj/structure/bed/chair, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) -"sM" = ( +"asM" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"sN" = ( +"asN" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -9530,26 +9596,35 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"sO" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 +"asO" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"sP" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"asP" = ( +/obj/machinery/keycard_auth{ + pixel_y = 28 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"sQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"sR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"asQ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"asR" = ( /obj/machinery/computer/rdservercontrol{ dir = 1 }, @@ -9558,26 +9633,29 @@ }, /turf/simulated/floor/tiled/techfloor, /area/server) -"sS" = ( +"asS" = ( /obj/machinery/computer/message_monitor{ dir = 1 }, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/server) -"sT" = ( +"asT" = ( /obj/structure/table/steel, /obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/research{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor, /area/server) -"sU" = ( +"asU" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, /obj/structure/flora/pottedplant/dead, /turf/simulated/floor/tiled/techfloor, /area/server) -"sV" = ( +"asV" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -9600,40 +9678,25 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sW" = ( +"asW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sX" = ( +"asX" = ( /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sY" = ( +"asY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"sZ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/secondfloor) -"ta" = ( +"asZ" = ( +/turf/simulated/floor/reinforced, +/area/maintenance/lower/rnd) +"ata" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -9649,10 +9712,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/lockers) -"tb" = ( +"atb" = ( /turf/simulated/wall, /area/rnd/research) -"tc" = ( +"atc" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ dir = 8; @@ -9660,12 +9723,12 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"td" = ( +"atd" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"te" = ( +"ate" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 4; @@ -9673,7 +9736,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"tf" = ( +"atf" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9686,7 +9749,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"tg" = ( +"atg" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9705,7 +9768,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"th" = ( +"ath" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9719,7 +9782,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"ti" = ( +"ati" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 4; @@ -9738,7 +9801,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tj" = ( +"atj" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9753,7 +9816,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tk" = ( +"atk" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9767,7 +9830,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tl" = ( +"atl" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9788,7 +9851,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tm" = ( +"atm" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9810,7 +9873,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"tn" = ( +"atn" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -9827,7 +9890,7 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"to" = ( +"ato" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 8; @@ -9845,14 +9908,14 @@ }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"tp" = ( +"atp" = ( /obj/structure/table/glass, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) -"tq" = ( +"atq" = ( /obj/machinery/hologram/holopad, /obj/structure/table/glass, /obj/structure/disposalpipe/segment{ @@ -9860,13 +9923,13 @@ }, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) -"tr" = ( +"atr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"ts" = ( +"ats" = ( /obj/machinery/light{ dir = 4 }, @@ -9876,7 +9939,7 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"tt" = ( +"att" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -9890,12 +9953,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"tu" = ( -/obj/structure/closet, -/obj/random/maintenance/clean, -/turf/simulated/floor, -/area/maintenance/lower/bar) -"tv" = ( +"atu" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"atv" = ( /obj/structure/railing{ dir = 8 }, @@ -9911,7 +9981,7 @@ /obj/random/drinkbottle, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"tw" = ( +"atw" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -9930,7 +10000,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"tx" = ( +"atx" = ( /obj/structure/railing{ dir = 8 }, @@ -9939,33 +10009,38 @@ }, /turf/simulated/open, /area/rnd/staircase/secondfloor) -"ty" = ( +"aty" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open, /area/rnd/staircase/secondfloor) -"tz" = ( +"atz" = ( /turf/simulated/open, /area/rnd/staircase/secondfloor) -"tA" = ( +"atA" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/open, /area/rnd/staircase/secondfloor) -"tB" = ( +"atB" = ( /turf/simulated/wall, /area/rnd/breakroom) -"tC" = ( -/obj/structure/bed/chair/comfy, -/obj/machinery/camera/network/research{ - dir = 4 +"atC" = ( +/obj/structure/closet/secure_closet/RD, +/obj/item/device/aicard, +/obj/item/clothing/glasses/omnihud/rnd, +/obj/effect/floor_decal/borderfloor{ + dir = 9 }, -/turf/simulated/floor/wood, -/area/rnd/breakroom) -"tD" = ( +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"atD" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -9974,7 +10049,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"tE" = ( +"atE" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 2 @@ -9988,20 +10063,20 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/rnd/breakroom) -"tF" = ( +"atF" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"tG" = ( +"atG" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"tH" = ( +"atH" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -10012,7 +10087,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"tI" = ( +"atI" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -10024,20 +10099,20 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"tJ" = ( +"atJ" = ( /turf/simulated/floor/wood, /area/rnd/breakroom) -"tK" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +"atK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden{ + dir = 6; + icon_state = "intact" }, -/obj/machinery/camera/network/research, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/wood, -/area/rnd/breakroom) -"tL" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/server) +"atL" = ( /obj/structure/table/rack{ dir = 1 }, @@ -10051,7 +10126,7 @@ /obj/random/maintenance/research, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"tM" = ( +"atM" = ( /obj/structure/table/standard, /obj/item/device/t_scanner, /obj/item/weapon/storage/box/lights/mixed, @@ -10064,12 +10139,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"tN" = ( +"atN" = ( /obj/machinery/floodlight, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/emergency_storage/atmos) -"tO" = ( +"atO" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -10086,21 +10161,21 @@ /obj/structure/cable/cyan, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tP" = ( +"atP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 6; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tQ" = ( +"atQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ icon_state = "map"; dir = 1 }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tR" = ( +"atR" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ icon_state = "map"; dir = 1 @@ -10108,13 +10183,13 @@ /obj/machinery/meter, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tS" = ( +"atS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tT" = ( +"atT" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -10126,10 +10201,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tU" = ( +"atU" = ( /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tV" = ( +"atV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -10138,7 +10213,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tW" = ( +"atW" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10158,24 +10233,24 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"tX" = ( +"atX" = ( /obj/machinery/computer/station_alert{ icon_state = "computer"; dir = 4 }, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"tY" = ( +"atY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"tZ" = ( +"atZ" = ( /obj/structure/bed/chair{ dir = 1 }, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) -"ua" = ( +"aua" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -10184,13 +10259,16 @@ }, /turf/simulated/floor/carpet, /area/engineering/lower/breakroom) -"ub" = ( +"aub" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/cups, /obj/item/weapon/storage/box/cups, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"uc" = ( +"auc" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10210,7 +10288,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"ud" = ( +"aud" = ( /obj/effect/floor_decal/rust, /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 @@ -10224,16 +10302,23 @@ /obj/random/maintenance/clean, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"ue" = ( -/obj/structure/railing{ - dir = 4 +"aue" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/tinted, +/obj/structure/window/reinforced/tinted{ + dir = 4; + icon_state = "twindow" }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 10 +/obj/structure/window/reinforced/tinted{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/bar) -"uf" = ( +/obj/structure/window/reinforced/tinted{ + dir = 8; + icon_state = "twindow" + }, +/turf/simulated/floor, +/area/chapel/main) +"auf" = ( /obj/machinery/door/airlock/multi_tile/metal/mait{ name = "Maintenance Access" }, @@ -10246,12 +10331,12 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/south) -"ug" = ( +"aug" = ( /obj/machinery/door/firedoor/glass, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/south) -"uh" = ( +"auh" = ( /obj/structure/railing{ dir = 4 }, @@ -10264,20 +10349,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"ui" = ( +"aui" = ( /obj/structure/frame{ anchored = 1 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"uj" = ( +"auj" = ( /obj/random/tech_supply, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"uk" = ( +"auk" = ( /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"ul" = ( +"aul" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -10286,16 +10371,16 @@ /obj/random/tool, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"um" = ( +"aum" = ( /turf/simulated/wall, /area/rnd/workshop) -"un" = ( +"aun" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/rnd/staircase/secondfloor) -"uo" = ( +"auo" = ( /obj/structure/table/glass, /obj/machinery/light_switch{ dir = 4; @@ -10303,13 +10388,13 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"up" = ( +"aup" = ( /obj/structure/bed/chair/comfy{ dir = 8 }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"uq" = ( +"auq" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -10325,7 +10410,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/rnd/breakroom) -"ur" = ( +"aur" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -10333,7 +10418,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"us" = ( +"aus" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -10347,11 +10432,11 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"ut" = ( +"aut" = ( /obj/structure/table/glass, /turf/simulated/floor/wood, /area/rnd/breakroom) -"uu" = ( +"auu" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -10360,13 +10445,13 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"uv" = ( +"auv" = ( /turf/simulated/wall/r_wall, /area/rnd/breakroom) -"uw" = ( +"auw" = ( /turf/simulated/wall/r_wall, /area/engineering/lower/atmos_eva) -"ux" = ( +"aux" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/white/border/shifted, /obj/effect/floor_decal/corner/yellow{ @@ -10376,7 +10461,7 @@ /obj/structure/flora/pottedplant/subterranean, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uy" = ( +"auy" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/blue/border/shifted, /obj/effect/floor_decal/corner/yellow{ @@ -10389,7 +10474,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uz" = ( +"auz" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/white/border/shifted, /obj/effect/floor_decal/corner/yellow{ @@ -10402,7 +10487,7 @@ /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uA" = ( +"auA" = ( /obj/effect/floor_decal/borderfloor/shifted, /obj/effect/floor_decal/corner/white/border/shifted, /obj/effect/floor_decal/corner/yellow{ @@ -10412,9 +10497,12 @@ /obj/structure/bed/chair{ dir = 1 }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uB" = ( +"auB" = ( /obj/effect/floor_decal/corner/yellow{ icon_state = "corner_white"; dir = 8 @@ -10433,7 +10521,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uC" = ( +"auC" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -10448,7 +10536,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uD" = ( +"auD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -10462,7 +10550,7 @@ /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uE" = ( +"auE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -10475,7 +10563,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uF" = ( +"auF" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -10487,7 +10575,7 @@ /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"uG" = ( +"auG" = ( /obj/machinery/light_switch{ pixel_y = -28 }, @@ -10496,37 +10584,45 @@ }, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"uH" = ( +"auH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"uI" = ( +"auI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"uJ" = ( +"auJ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /obj/machinery/light, /turf/simulated/floor/wood, /area/engineering/lower/breakroom) -"uK" = ( +"auK" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/machinery/camera/network/engineering{ dir = 1 }, -/turf/simulated/floor/wood, -/area/engineering/lower/breakroom) -"uL" = ( +/turf/simulated/floor, +/area/maintenance/substation/research) +"auL" = ( /obj/structure/table/glass, /obj/machinery/chemical_dispenser/bar_soft/full, /turf/simulated/floor/tiled/dark, /area/engineering/lower/breakroom) -"uM" = ( +"auM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10538,7 +10634,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"uN" = ( +"auN" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10553,7 +10649,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"uO" = ( +"auO" = ( /obj/structure/railing{ dir = 4 }, @@ -10565,7 +10661,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"uP" = ( +"auP" = ( /obj/structure/catwalk, /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 @@ -10577,14 +10673,14 @@ /obj/machinery/atmospherics/pipe/simple/visible/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"uQ" = ( +"auQ" = ( /obj/structure/catwalk, /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"uR" = ( +"auR" = ( /obj/structure/railing{ dir = 8 }, @@ -10593,7 +10689,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"uS" = ( +"auS" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/structure/cable/green{ @@ -10603,7 +10699,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"uT" = ( +"auT" = ( /obj/structure/railing{ dir = 8 }, @@ -10621,15 +10717,15 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"uU" = ( +"auU" = ( /obj/random/tool, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"uV" = ( +"auV" = ( /obj/structure/stairs/south, /turf/simulated/floor/tiled, /area/rnd/staircase/secondfloor) -"uW" = ( +"auW" = ( /obj/structure/bed/chair/comfy{ dir = 1 }, @@ -10642,7 +10738,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"uX" = ( +"auX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -10653,7 +10749,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/rnd/breakroom) -"uY" = ( +"auY" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -10662,7 +10758,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"uZ" = ( +"auZ" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -10671,7 +10767,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"va" = ( +"ava" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -10694,7 +10790,7 @@ /obj/item/clothing/head/helmet/space/void/atmos, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"vb" = ( +"avb" = ( /obj/machinery/light_switch{ dir = 8; pixel_x = 28 @@ -10725,10 +10821,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"vc" = ( +"avc" = ( /turf/simulated/wall/r_wall, /area/engineering/lower/lobby) -"vd" = ( +"avd" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -10742,7 +10838,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"ve" = ( +"ave" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10754,13 +10850,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/lower/lobby) -"vf" = ( +"avf" = ( /turf/simulated/wall/r_wall, /area/engineering/lower/breakroom) -"vg" = ( +"avg" = ( /turf/simulated/wall/r_wall, /area/maintenance/engineering/pumpstation) -"vh" = ( +"avh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10771,35 +10867,44 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"vi" = ( -/obj/effect/floor_decal/borderfloor{ +"avi" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/east_stairs_two) -"vj" = ( -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 9 - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/corner_techfloor_grid{ +/obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 4 }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/light/small{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vk" = ( +"avj" = ( +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"avk" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vl" = ( +"avl" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 }, @@ -10815,7 +10920,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vm" = ( +"avm" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 5 }, @@ -10827,7 +10932,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vn" = ( +"avn" = ( /obj/structure/railing{ dir = 4 }, @@ -10839,7 +10944,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vo" = ( +"avo" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -10853,24 +10958,29 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vp" = ( +"avp" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vq" = ( -/obj/structure/railing{ +"avq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 }, -/obj/effect/floor_decal/corner_techfloor_grid{ - dir = 6 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/south) -"vr" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"avr" = ( /obj/structure/railing{ dir = 4 }, @@ -10888,20 +10998,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"vs" = ( +"avs" = ( /obj/random/maintenance/research, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"vt" = ( +"avt" = ( /turf/simulated/wall, /area/rnd/staircase/secondfloor) -"vu" = ( +"avu" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"vv" = ( +"avv" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -10915,7 +11025,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/rnd/breakroom) -"vw" = ( +"avw" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -10928,7 +11038,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"vx" = ( +"avx" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10952,10 +11062,10 @@ /obj/item/clothing/head/helmet/space/void/atmos, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"vy" = ( +"avy" = ( /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"vz" = ( +"avz" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10968,13 +11078,13 @@ /obj/item/device/suit_cooling_unit, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"vA" = ( +"avA" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/lower/atmos_eva) -"vB" = ( +"avB" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -10983,9 +11093,10 @@ dir = 9 }, /obj/structure/closet/secure_closet/atmos_personal, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"vC" = ( +"avC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -11001,7 +11112,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"vD" = ( +"avD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -11024,7 +11135,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"vE" = ( +"avE" = ( /obj/structure/cable/cyan{ d2 = 2; icon_state = "0-2" @@ -11047,7 +11158,7 @@ /obj/machinery/vending/engivend, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"vF" = ( +"avF" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -11061,13 +11172,13 @@ /obj/machinery/vending/tool, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"vG" = ( +"avG" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/lower/atmos_lockers) -"vH" = ( +"avH" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -11082,7 +11193,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"vI" = ( +"avI" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -11111,7 +11222,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/engineering/atmos) -"vJ" = ( +"avJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -11130,29 +11241,47 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"vK" = ( +"avK" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos/storage) -"vL" = ( -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/shieldgen, -/obj/machinery/camera/network/engineering{ - dir = 4 +"avL" = ( +/obj/structure/table/standard, +/obj/item/device/taperecorder{ + pixel_x = -3 }, -/turf/simulated/floor/plating, -/area/engineering/atmos/storage) -"vM" = ( +/obj/item/device/paicard{ + pixel_x = 4 + }, +/obj/item/weapon/circuitboard/teleporter, +/obj/item/weapon/circuitboard/aicore{ + pixel_x = -2; + pixel_y = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 6 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/rnd/rdoffice) +"avM" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/shieldgen, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"vN" = ( +"avN" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/shieldgen, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"vO" = ( +"avO" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/light/small{ @@ -11162,14 +11291,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"vP" = ( +"avP" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"vQ" = ( +"avQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 10; icon_state = "intact" @@ -11186,7 +11315,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"vR" = ( +"avR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; @@ -11197,7 +11326,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"vS" = ( +"avS" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/portables_connector{ dir = 8 @@ -11205,7 +11334,7 @@ /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"vT" = ( +"avT" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11216,16 +11345,19 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"vU" = ( +"avU" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"vV" = ( +"avV" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 }, @@ -11235,18 +11367,18 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vW" = ( +"avW" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vX" = ( +"avX" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vY" = ( +"avY" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -11257,7 +11389,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"vZ" = ( +"avZ" = ( /obj/structure/railing{ dir = 8 }, @@ -11266,7 +11398,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"wa" = ( +"awa" = ( /obj/structure/railing{ dir = 4 }, @@ -11280,7 +11412,7 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wb" = ( +"awb" = ( /obj/structure/railing{ dir = 8 }, @@ -11298,14 +11430,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wc" = ( +"awc" = ( /obj/structure/cable/green{ icon_state = "0-4" }, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"wd" = ( +"awd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11313,7 +11445,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"we" = ( +"awe" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -11323,7 +11455,7 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"wf" = ( +"awf" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/structure/cable/green{ @@ -11344,7 +11476,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wg" = ( +"awg" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/effect/floor_decal/rust, @@ -11361,7 +11493,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wh" = ( +"awh" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/structure/cable/green{ @@ -11377,7 +11509,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wi" = ( +"awi" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -11393,7 +11525,7 @@ /obj/machinery/door/airlock/maintenance/rnd, /turf/simulated/floor/plating, /area/rnd/breakroom) -"wj" = ( +"awj" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11407,7 +11539,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wk" = ( +"awk" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11426,7 +11558,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wl" = ( +"awl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -11436,7 +11568,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wm" = ( +"awm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11445,7 +11577,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wn" = ( +"awn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11454,7 +11586,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wo" = ( +"awo" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -11470,7 +11602,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wp" = ( +"awp" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11490,7 +11622,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"wq" = ( +"awq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -11499,7 +11631,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"wr" = ( +"awr" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11519,7 +11651,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"ws" = ( +"aws" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11538,17 +11670,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"wt" = ( +"awt" = ( /obj/effect/landmark/start{ name = "Atmospheric Technician" }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"wu" = ( +"awu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"wv" = ( +"awv" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -11556,7 +11688,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"ww" = ( +"aww" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11573,7 +11705,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"wx" = ( +"awx" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -11582,10 +11714,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled, /area/engineering/atmos) -"wy" = ( +"awy" = ( /turf/simulated/floor/tiled/monotile, /area/engineering/atmos) -"wz" = ( +"awz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -11595,7 +11727,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"wA" = ( +"awA" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/atmos{ name = "Atmospherics Storage"; @@ -11603,22 +11735,22 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"wB" = ( +"awB" = ( /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"wC" = ( +"awC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"wD" = ( +"awD" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"wE" = ( +"awE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"wF" = ( +"awF" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, @@ -11630,7 +11762,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"wG" = ( +"awG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 4 }, @@ -11641,14 +11773,14 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"wH" = ( +"awH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/red{ icon_state = "map"; dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"wI" = ( +"awI" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/portables_connector{ @@ -11661,7 +11793,7 @@ /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"wJ" = ( +"awJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11673,7 +11805,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"wK" = ( +"awK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11682,14 +11814,14 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"wL" = ( +"awL" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 9 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"wM" = ( +"awM" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/clean, @@ -11697,7 +11829,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"wN" = ( +"awN" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -11709,12 +11841,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"wO" = ( +"awO" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"wP" = ( +"awP" = ( /obj/structure/railing{ dir = 8 }, @@ -11728,7 +11860,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wQ" = ( +"awQ" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/effect/floor_decal/rust, @@ -11741,7 +11873,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wR" = ( +"awR" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ dir = 8 @@ -11753,7 +11885,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wS" = ( +"awS" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/techfloor, /obj/structure/railing{ @@ -11762,7 +11894,7 @@ /obj/effect/floor_decal/techfloor/hole, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wT" = ( +"awT" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/techfloor, /obj/structure/railing{ @@ -11771,7 +11903,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wU" = ( +"awU" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/techfloor{ dir = 6 @@ -11782,11 +11914,17 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"wV" = ( +"awV" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, /obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/research, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wW" = ( +"awW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11796,7 +11934,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wX" = ( +"awX" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/donkpockets, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -11804,7 +11942,7 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wY" = ( +"awY" = ( /obj/structure/table/glass, /obj/machinery/microwave, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -11812,23 +11950,23 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"wZ" = ( +"awZ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/rnd/breakroom) -"xa" = ( +"axa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/rnd/breakroom) -"xb" = ( +"axb" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"xc" = ( +"axc" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11851,7 +11989,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xd" = ( +"axd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/cyan{ @@ -11861,7 +11999,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xe" = ( +"axe" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11873,7 +12011,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xf" = ( +"axf" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11886,7 +12024,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xg" = ( +"axg" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11900,7 +12038,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xh" = ( +"axh" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11908,7 +12046,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xi" = ( +"axi" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11922,7 +12060,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xj" = ( +"axj" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11942,7 +12080,7 @@ /obj/item/weapon/stool, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xk" = ( +"axk" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11960,7 +12098,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xl" = ( +"axl" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -11979,7 +12117,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xm" = ( +"axm" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; @@ -12010,7 +12148,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"xn" = ( +"axn" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -12024,7 +12162,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/engineering/atmos) -"xo" = ( +"axo" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -12037,7 +12175,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/engineering/atmos) -"xp" = ( +"axp" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -12056,7 +12194,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"xq" = ( +"axq" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -12071,7 +12209,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"xr" = ( +"axr" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -12086,7 +12224,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"xs" = ( +"axs" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -12097,7 +12235,7 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"xt" = ( +"axt" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; @@ -12108,23 +12246,24 @@ }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"xu" = ( +"axu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"xv" = ( -/obj/machinery/atmospherics/portables_connector{ - dir = 4 +"axv" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 }, -/obj/machinery/portable_atmospherics/powered/pump/filled, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/engineering/pumpstation) -"xw" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled, +/area/engineering/lower/lobby) +"axw" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ dir = 4 @@ -12137,7 +12276,7 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"xx" = ( +"axx" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/red{ icon_state = "map"; @@ -12146,14 +12285,14 @@ /obj/machinery/meter, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"xy" = ( +"axy" = ( /obj/machinery/atmospherics/portables_connector{ dir = 8 }, /obj/machinery/portable_atmospherics/powered/scrubber, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"xz" = ( +"axz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -12162,7 +12301,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"xA" = ( +"axA" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -12172,15 +12311,15 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"xB" = ( +"axB" = ( /turf/simulated/wall, /area/janitor) -"xC" = ( +"axC" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"xD" = ( +"axD" = ( /obj/structure/railing{ dir = 8 }, @@ -12189,7 +12328,7 @@ /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"xE" = ( +"axE" = ( /obj/structure/railing{ dir = 4 }, @@ -12198,7 +12337,7 @@ /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"xF" = ( +"axF" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -12206,7 +12345,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"xG" = ( +"axG" = ( /obj/structure/railing{ dir = 8 }, @@ -12218,12 +12357,12 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"xH" = ( +"axH" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"xI" = ( +"axI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/catwalk, /obj/structure/cable/green{ @@ -12235,7 +12374,7 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"xJ" = ( +"axJ" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/techfloor{ dir = 4 @@ -12250,10 +12389,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"xK" = ( +"axK" = ( /turf/simulated/wall, /area/rnd/breakroom/bathroom) -"xL" = ( +"axL" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -12267,11 +12406,11 @@ }, /turf/simulated/floor/wood, /area/rnd/breakroom) -"xM" = ( +"axM" = ( /obj/structure/bookcase/manuals/research_and_development, /turf/simulated/floor/wood, /area/rnd/breakroom) -"xN" = ( +"axN" = ( /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 @@ -12285,24 +12424,26 @@ /obj/machinery/vending/cigarette, /turf/simulated/floor/tiled/monotile, /area/rnd/breakroom) -"xO" = ( -/obj/effect/floor_decal/steeldecal/steel_decals9, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +"axO" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 8 }, -/obj/machinery/vending/coffee, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/turf/simulated/floor/tiled/monotile, -/area/rnd/breakroom) -"xP" = ( +/turf/simulated/floor/tiled, +/area/rnd/staircase/secondfloor) +"axP" = ( /obj/effect/floor_decal/steeldecal/steel_decals9, /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 @@ -12316,7 +12457,7 @@ /obj/machinery/vending/snack, /turf/simulated/floor/tiled/monotile, /area/rnd/breakroom) -"xQ" = ( +"axQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -12332,9 +12473,12 @@ dir = 9 }, /obj/machinery/portable_atmospherics/canister/oxygen, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xR" = ( +"axR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -12345,7 +12489,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xS" = ( +"axS" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -12365,7 +12509,7 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"xT" = ( +"axT" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -12383,13 +12527,13 @@ /obj/structure/closet/secure_closet/engineering_electrical, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xU" = ( +"axU" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/closet/secure_closet/engineering_welding, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xV" = ( +"axV" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -12404,14 +12548,14 @@ /obj/item/weapon/storage/box/nifsofts_engineering, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xW" = ( +"axW" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/table/standard, /obj/machinery/cell_charger, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xX" = ( +"axX" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -12434,7 +12578,7 @@ /obj/item/device/floor_painter, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_lockers) -"xY" = ( +"axY" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -12449,7 +12593,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"xZ" = ( +"axZ" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -12466,25 +12610,11 @@ /obj/effect/floor_decal/corner/yellow/bordercorner2, /turf/simulated/floor/tiled/monotile, /area/engineering/atmos) -"ya" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/red, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"yb" = ( +"aya" = ( +/obj/structure/bed/chair/comfy, +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"ayb" = ( /obj/machinery/light_switch{ pixel_y = -28 }, @@ -12492,19 +12622,19 @@ /obj/machinery/floodlight, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"yc" = ( +"ayc" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/floodlight, /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"yd" = ( +"ayd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/dispenser, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"ye" = ( +"aye" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -12515,12 +12645,12 @@ /obj/machinery/power/thermoregulator, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"yf" = ( +"ayf" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/engineering/atmos/storage) -"yg" = ( +"ayg" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/cyan{ @@ -12533,7 +12663,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"yh" = ( +"ayh" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/atmospherics/pipe/manifold/hidden/red{ icon_state = "map"; @@ -12541,7 +12671,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"yi" = ( +"ayi" = ( /obj/effect/floor_decal/corner/purple{ icon_state = "corner_white"; dir = 5 @@ -12557,9 +12687,10 @@ icon_state = "bordercolor_shifted"; dir = 1 }, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled, /area/janitor) -"yj" = ( +"ayj" = ( /obj/machinery/newscaster{ pixel_y = 32 }, @@ -12580,7 +12711,7 @@ /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/tiled, /area/janitor) -"yk" = ( +"ayk" = ( /obj/structure/cable{ d2 = 2; icon_state = "0-2" @@ -12608,7 +12739,7 @@ /obj/item/weapon/reagent_containers/glass/bucket, /turf/simulated/floor/tiled, /area/janitor) -"yl" = ( +"ayl" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -12627,7 +12758,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"ym" = ( +"aym" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; @@ -12649,7 +12780,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"yn" = ( +"ayn" = ( /obj/structure/janitorialcart, /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; @@ -12665,7 +12796,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"yo" = ( +"ayo" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 6 @@ -12675,7 +12806,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"yp" = ( +"ayp" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 @@ -12686,7 +12817,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"yq" = ( +"ayq" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 9 @@ -12702,7 +12833,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"yr" = ( +"ayr" = ( /obj/structure/railing{ dir = 8 }, @@ -12713,7 +12844,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"ys" = ( +"ays" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/cable/green{ @@ -12723,7 +12854,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"yt" = ( +"ayt" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -12733,7 +12864,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"yu" = ( +"ayu" = ( /obj/structure/cable/green{ icon_state = "16-0" }, @@ -12754,7 +12885,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"yv" = ( +"ayv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12769,7 +12900,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"yw" = ( +"ayw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12787,7 +12918,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"yx" = ( +"ayx" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -12808,7 +12939,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"yy" = ( +"ayy" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -12819,12 +12950,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"yz" = ( +"ayz" = ( /obj/machinery/washing_machine, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"yA" = ( +"ayA" = ( /obj/machinery/washing_machine, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/machinery/alarm{ @@ -12832,7 +12963,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"yB" = ( +"ayB" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -12845,7 +12976,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"yC" = ( +"ayC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -12853,7 +12984,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"yD" = ( +"ayD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -12863,7 +12994,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"yE" = ( +"ayE" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -12881,7 +13012,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"yF" = ( +"ayF" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12889,7 +13020,7 @@ /obj/machinery/door/airlock/maintenance/rnd, /turf/simulated/floor/plating, /area/rnd/breakroom) -"yG" = ( +"ayG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/glass_atmos{ @@ -12899,13 +13030,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/lower/atmos_eva) -"yH" = ( +"ayH" = ( /turf/simulated/wall, /area/engineering/lower/atmos_eva) -"yI" = ( +"ayI" = ( /turf/simulated/wall, /area/engineering/lower/atmos_lockers) -"yJ" = ( +"ayJ" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -12919,13 +13050,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/atmos) -"yK" = ( +"ayK" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/atmos) -"yL" = ( +"ayL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -12937,10 +13068,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/engineering/atmos) -"yM" = ( +"ayM" = ( /turf/simulated/wall, /area/maintenance/engineering/pumpstation) -"yN" = ( +"ayN" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Pump Station" }, @@ -12953,7 +13084,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"yO" = ( +"ayO" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Pump Station" }, @@ -12961,10 +13092,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/engineering/pumpstation) -"yP" = ( +"ayP" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/east_stairs_two) -"yQ" = ( +"ayQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -12975,7 +13106,7 @@ /obj/machinery/door/airlock/multi_tile/glass, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"yR" = ( +"ayR" = ( /obj/machinery/button/remote/blast_door{ id = "janitor_blast"; name = "Desk Shutters"; @@ -12991,10 +13122,10 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"yS" = ( +"ayS" = ( /turf/simulated/floor/tiled, /area/janitor) -"yT" = ( +"ayT" = ( /obj/structure/cable{ d1 = 1; d2 = 4; @@ -13002,13 +13133,13 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"yU" = ( +"ayU" = ( /obj/structure/cable{ icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/janitor) -"yV" = ( +"ayV" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -13017,7 +13148,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"yW" = ( +"ayW" = ( /obj/machinery/door/airlock/maintenance{ name = "Custodial Maintenance"; req_access = list(26) @@ -13031,7 +13162,7 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled/techfloor, /area/janitor) -"yX" = ( +"ayX" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -13048,7 +13179,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"yY" = ( +"ayY" = ( /obj/structure/catwalk, /obj/structure/cable{ d1 = 4; @@ -13058,7 +13189,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"yZ" = ( +"ayZ" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/structure/cable{ @@ -13069,14 +13200,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"za" = ( +"aza" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-8" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"zb" = ( +"azb" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 4 }, @@ -13087,7 +13218,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"zc" = ( +"azc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13099,13 +13230,13 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"zd" = ( +"azd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"ze" = ( +"aze" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13114,7 +13245,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"zf" = ( +"azf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13123,7 +13254,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"zg" = ( +"azg" = ( /obj/machinery/light, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13133,7 +13264,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"zh" = ( +"azh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -13143,7 +13274,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"zi" = ( +"azi" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -13155,22 +13286,22 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"zj" = ( +"azj" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"zk" = ( +"azk" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"zl" = ( +"azl" = ( /turf/simulated/wall/r_wall, /area/engineering/atmos) -"zm" = ( +"azm" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -13181,9 +13312,10 @@ icon_state = "bordercolor"; dir = 9 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zn" = ( +"azn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13201,7 +13333,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zo" = ( +"azo" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 4; @@ -13231,7 +13363,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zp" = ( +"azp" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -13247,7 +13379,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zq" = ( +"azq" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -13280,7 +13412,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zr" = ( +"azr" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -13309,7 +13441,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zs" = ( +"azs" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -13332,7 +13464,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zt" = ( +"azt" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 4; @@ -13360,7 +13492,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zu" = ( +"azu" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -13383,7 +13515,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zv" = ( +"azv" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -13416,7 +13548,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zw" = ( +"azw" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 8; @@ -13445,7 +13577,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zx" = ( +"azx" = ( /obj/structure/cable/cyan{ d1 = 2; d2 = 8; @@ -13490,7 +13622,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zy" = ( +"azy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red, /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 @@ -13511,7 +13643,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zz" = ( +"azz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -13547,7 +13679,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zA" = ( +"azA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4 }, @@ -13573,7 +13705,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zB" = ( +"azB" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13600,7 +13732,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zC" = ( +"azC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13627,7 +13759,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zD" = ( +"azD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13654,7 +13786,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zE" = ( +"azE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13684,7 +13816,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zF" = ( +"azF" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13711,7 +13843,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zG" = ( +"azG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -13730,7 +13862,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zH" = ( +"azH" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -13746,10 +13878,10 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"zI" = ( +"azI" = ( /turf/simulated/open, /area/tether/surfacebase/east_stairs_two) -"zJ" = ( +"azJ" = ( /obj/structure/railing{ dir = 8 }, @@ -13761,7 +13893,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"zK" = ( +"azK" = ( /obj/machinery/door/window/eastleft{ dir = 8; icon_state = "left"; @@ -13782,7 +13914,7 @@ /obj/machinery/door/firedoor/border_only, /turf/simulated/floor/tiled, /area/janitor) -"zL" = ( +"azL" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -13794,22 +13926,22 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"zM" = ( +"azM" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/janitor) -"zN" = ( +"azN" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/purple/bordercorner, /turf/simulated/floor/tiled, /area/janitor) -"zO" = ( +"azO" = ( /obj/structure/closet/l3closet/janitor, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /turf/simulated/floor/tiled, /area/janitor) -"zP" = ( +"azP" = ( /obj/structure/closet/l3closet/janitor, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -13819,7 +13951,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"zQ" = ( +"azQ" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -13831,7 +13963,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"zR" = ( +"azR" = ( /obj/structure/railing{ dir = 8 }, @@ -13840,14 +13972,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"zS" = ( +"azS" = ( /obj/structure/railing{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"zT" = ( +"azT" = ( /obj/structure/railing{ dir = 1 }, @@ -13855,18 +13987,18 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"zU" = ( +"azU" = ( /obj/effect/floor_decal/corner_techfloor_grid/full{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"zV" = ( +"azV" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"zW" = ( +"azW" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/machinery/alarm{ @@ -13875,7 +14007,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"zX" = ( +"azX" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/lattice, /obj/structure/cable/green{ @@ -13886,7 +14018,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/asmaint2) -"zY" = ( +"azY" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -13899,20 +14031,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"zZ" = ( +"azZ" = ( /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"Aa" = ( +"aAa" = ( /obj/machinery/door/airlock{ name = "Research Shower" }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"Ab" = ( +"aAb" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Ac" = ( +"aAc" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -13921,13 +14053,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Ad" = ( +"aAd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Ae" = ( +"aAe" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Atmospherics"; req_access = list(24) @@ -13938,7 +14070,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/atmos) -"Af" = ( +"aAf" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -13954,7 +14086,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ag" = ( +"aAg" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -13965,7 +14097,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ah" = ( +"aAh" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -13982,18 +14114,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ai" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/engineering{ +"aAi" = ( +/obj/structure/flora/pottedplant/stoutbush, +/obj/machinery/camera/network/research{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"Aj" = ( +/turf/simulated/floor/wood, +/area/rnd/breakroom) +"aAj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light, @@ -14005,7 +14133,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ak" = ( +"aAk" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -14023,13 +14151,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Al" = ( +"aAl" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Am" = ( +"aAm" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -14039,7 +14167,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"An" = ( +"aAn" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -14056,7 +14184,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ao" = ( +"aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 4 @@ -14072,7 +14200,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ap" = ( +"aAp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 4 @@ -14090,7 +14218,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Aq" = ( +"aAq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 4 @@ -14109,7 +14237,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ar" = ( +"aAr" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -14135,7 +14263,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"As" = ( +"aAs" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -14147,7 +14275,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/red, /turf/simulated/floor/tiled, /area/engineering/atmos) -"At" = ( +"aAt" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/structure/closet/hydrant{ @@ -14162,7 +14290,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Au" = ( +"aAu" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light, @@ -14175,7 +14303,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Av" = ( +"aAv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -14187,7 +14315,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Aw" = ( +"aAw" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -14203,14 +14331,14 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ax" = ( +"aAx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/red{ icon_state = "intact"; dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Ay" = ( +"aAy" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -14224,7 +14352,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"Az" = ( +"aAz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/yellow/border, /obj/machinery/light, @@ -14237,19 +14365,16 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"AA" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/atmospherics/pipe/simple/hidden/red{ - icon_state = "intact"; +"aAA" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/camera/network/engineering{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos) -"AB" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/east_stairs_two) +"aAB" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -14262,7 +14387,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"AC" = ( +"aAC" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -14273,9 +14398,12 @@ icon_state = "bordercolor"; dir = 6 }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/engineering/atmos) -"AD" = ( +"aAD" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -14284,7 +14412,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"AE" = ( +"aAE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/light_switch{ dir = 4; @@ -14307,14 +14435,14 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"AF" = ( +"aAF" = ( /obj/item/weapon/stool/padded, /obj/effect/landmark/start{ name = "Janitor" }, /turf/simulated/floor/tiled, /area/janitor) -"AG" = ( +"aAG" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14334,7 +14462,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"AH" = ( +"aAH" = ( /obj/structure/railing{ dir = 8 }, @@ -14343,14 +14471,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"AI" = ( +"aAI" = ( /obj/effect/floor_decal/corner_techfloor_grid{ dir = 10 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"AJ" = ( +"aAJ" = ( /obj/effect/floor_decal/corner_techfloor_grid/full{ dir = 4 }, @@ -14358,7 +14486,7 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"AK" = ( +"aAK" = ( /obj/structure/railing{ dir = 4 }, @@ -14372,7 +14500,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"AL" = ( +"aAL" = ( /obj/structure/catwalk, /obj/machinery/alarm{ dir = 8; @@ -14382,7 +14510,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"AM" = ( +"aAM" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14399,7 +14527,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"AN" = ( +"aAN" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -14417,44 +14545,44 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"AO" = ( +"aAO" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"AP" = ( +"aAP" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"AQ" = ( +"aAQ" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"AR" = ( +"aAR" = ( /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"AS" = ( +"aAS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"AT" = ( +"aAT" = ( /turf/simulated/wall/r_wall, /area/engineering/drone_fabrication) -"AU" = ( +"aAU" = ( /turf/simulated/wall, /area/engineering/drone_fabrication) -"AV" = ( +"aAV" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -14469,26 +14597,26 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"AW" = ( +"aAW" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/open, /area/engineering/atmos) -"AX" = ( +"aAX" = ( /turf/simulated/open, /area/engineering/atmos) -"AY" = ( +"aAY" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/engineering/atmos) -"AZ" = ( +"aAZ" = ( /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) -"Ba" = ( +"aBa" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -14498,16 +14626,16 @@ /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) -"Bb" = ( +"aBb" = ( /turf/simulated/wall, /area/engineering/atmos/monitoring) -"Bc" = ( +"aBc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/atmos/monitoring) -"Bd" = ( +"aBd" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 2; @@ -14523,20 +14651,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Be" = ( +"aBe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/structure/railing, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) -"Bf" = ( +"aBf" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/engineering/atmos) -"Bg" = ( +"aBg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/maintenance/engi{ @@ -14546,7 +14674,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/engineering/atmos) -"Bh" = ( +"aBh" = ( /obj/structure/railing{ dir = 8 }, @@ -14570,7 +14698,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Bi" = ( +"aBi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14582,7 +14710,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Bj" = ( +"aBj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14599,7 +14727,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"Bk" = ( +"aBk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14617,7 +14745,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"Bl" = ( +"aBl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14626,7 +14754,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"Bm" = ( +"aBm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -14639,7 +14767,7 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"Bn" = ( +"aBn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -14669,7 +14797,7 @@ /obj/item/weapon/reagent_containers/spray/cleaner, /turf/simulated/floor/tiled, /area/janitor) -"Bo" = ( +"aBo" = ( /obj/machinery/door/airlock/multi_tile/metal/mait, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, @@ -14683,7 +14811,7 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/south) -"Bp" = ( +"aBp" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, @@ -14694,7 +14822,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Bq" = ( +"aBq" = ( /obj/effect/floor_decal/techfloor, /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, @@ -14706,7 +14834,7 @@ /obj/random/tool, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Br" = ( +"aBr" = ( /obj/structure/railing{ dir = 1 }, @@ -14721,7 +14849,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Bs" = ( +"aBs" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -14731,26 +14859,26 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Bt" = ( +"aBt" = ( /obj/machinery/light/small, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"Bu" = ( +"aBu" = ( /obj/structure/toilet{ dir = 1 }, /obj/machinery/light/small, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"Bv" = ( +"aBv" = ( /obj/machinery/light/small{ dir = 8; pixel_x = 0 }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"Bw" = ( +"aBw" = ( /obj/structure/curtain/open/shower, /obj/effect/floor_decal/steeldecal/steel_decals5, /obj/effect/floor_decal/steeldecal/steel_decals5{ @@ -14768,17 +14896,17 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/breakroom/bathroom) -"Bx" = ( +"aBx" = ( /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"By" = ( +"aBy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Bz" = ( +"aBz" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -14793,7 +14921,7 @@ /obj/machinery/recharge_station, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"BA" = ( +"aBA" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -14809,7 +14937,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"BB" = ( +"aBB" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 8; @@ -14824,7 +14952,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"BC" = ( +"aBC" = ( /obj/machinery/light_switch{ pixel_y = 28 }, @@ -14840,13 +14968,13 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"BD" = ( +"aBD" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) -"BE" = ( +"aBE" = ( /obj/structure/cable/cyan{ d1 = 32; d2 = 1; @@ -14858,34 +14986,21 @@ }, /turf/simulated/open, /area/engineering/atmos) -"BF" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 9 - }, -/obj/effect/floor_decal/corner/yellow/border{ - icon_state = "bordercolor"; - dir = 9 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ +"aBF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 }, -/obj/machinery/computer/general_air_control/large_tank_control{ - frequency = 1441; - input_tag = "atmos_out"; - name = "Atmos Intake Control"; - output_tag = "atmos_in"; - sensors = list("atmos_intake" = "Tank") +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"BG" = ( +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 8 + }, +/obj/machinery/vending/coffee, +/turf/simulated/floor/tiled/monotile, +/area/rnd/breakroom) +"aBG" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -14908,7 +15023,7 @@ /obj/random/tool, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"BH" = ( +"aBH" = ( /obj/structure/cable/cyan{ d1 = 1; d2 = 4; @@ -14925,7 +15040,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"BI" = ( +"aBI" = ( /obj/structure/cable/cyan{ d1 = 4; d2 = 8; @@ -14950,7 +15065,7 @@ /obj/machinery/computer/power_monitor, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"BJ" = ( +"aBJ" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -14973,7 +15088,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"BK" = ( +"aBK" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down{ dir = 1 @@ -14986,36 +15101,36 @@ }, /turf/simulated/open, /area/engineering/atmos) -"BL" = ( +"aBL" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/atmos) -"BM" = ( +"aBM" = ( /obj/structure/closet, /obj/random/maintenance/clean, /obj/random/powercell, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"BN" = ( +"aBN" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"BO" = ( +"aBO" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"BP" = ( +"aBP" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"BQ" = ( +"aBQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/industrial/warning/corner{ @@ -15024,7 +15139,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"BR" = ( +"aBR" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -15033,7 +15148,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"BS" = ( +"aBS" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15051,14 +15166,14 @@ /obj/item/weapon/soap/nanotrasen, /turf/simulated/floor/tiled, /area/janitor) -"BT" = ( +"aBT" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /obj/structure/closet/jcloset, /obj/item/weapon/soap/nanotrasen, /turf/simulated/floor/tiled, /area/janitor) -"BU" = ( +"aBU" = ( /obj/structure/disposalpipe/trunk{ dir = 1 }, @@ -15076,13 +15191,13 @@ }, /turf/simulated/floor/tiled, /area/janitor) -"BV" = ( +"aBV" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"BW" = ( +"aBW" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, @@ -15096,22 +15211,22 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"BX" = ( +"aBX" = ( /obj/item/weapon/stool, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"BY" = ( +"aBY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"BZ" = ( +"aBZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"Ca" = ( +"aCa" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -15120,19 +15235,19 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"Cb" = ( +"aCb" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"Cc" = ( +"aCc" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/open, /area/engineering/atmos) -"Cd" = ( +"aCd" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -15146,25 +15261,25 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Ce" = ( +"aCe" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Cf" = ( +"aCf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Cg" = ( +"aCg" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Ch" = ( +"aCh" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -15177,13 +15292,13 @@ /obj/random/medical/lite, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Ci" = ( +"aCi" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/toolbox, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Cj" = ( +"aCj" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 5 }, @@ -15194,7 +15309,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ck" = ( +"aCk" = ( /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 }, @@ -15205,7 +15320,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Cl" = ( +"aCl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15215,7 +15330,7 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/tether/surfacebase/east_stairs_two) -"Cm" = ( +"aCm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15224,7 +15339,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Cn" = ( +"aCn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -15233,7 +15348,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Co" = ( +"aCo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -15242,7 +15357,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Cp" = ( +"aCp" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -15256,7 +15371,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Cq" = ( +"aCq" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 9 @@ -15265,14 +15380,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Cr" = ( +"aCr" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Cs" = ( +"aCs" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -15282,7 +15397,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Ct" = ( +"aCt" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -15290,21 +15405,21 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Cu" = ( +"aCu" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Cv" = ( +"aCv" = ( /obj/structure/railing, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Cw" = ( +"aCw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Cx" = ( +"aCx" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 4 }, @@ -15317,19 +15432,19 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Cy" = ( +"aCy" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Cz" = ( +"aCz" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"CA" = ( +"aCA" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -15337,7 +15452,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"CB" = ( +"aCB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -15354,13 +15469,13 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"CC" = ( +"aCC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"CD" = ( +"aCD" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -15371,13 +15486,13 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"CE" = ( +"aCE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"CF" = ( +"aCF" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -15396,40 +15511,52 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"CG" = ( +"aCG" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"CH" = ( +"aCH" = ( /turf/simulated/floor/plating, /area/maintenance/lower/south) -"CI" = ( -/obj/machinery/camera/network/tether{ +"aCI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/red, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/east_stairs_two) -"CJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aCJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"CK" = ( +"aCK" = ( /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"CL" = ( +"aCL" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"CM" = ( +"aCM" = ( /obj/structure/stairs/east, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"CN" = ( +"aCN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15442,7 +15569,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"CO" = ( +"aCO" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -15461,7 +15588,7 @@ /obj/random/maintenance/research, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CP" = ( +"aCP" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor{ dir = 8 @@ -15470,7 +15597,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CQ" = ( +"aCQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -15481,7 +15608,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CR" = ( +"aCR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15494,7 +15621,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CS" = ( +"aCS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15506,7 +15633,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CT" = ( +"aCT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15516,7 +15643,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"CU" = ( +"aCU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15527,7 +15654,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CV" = ( +"aCV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15537,7 +15664,7 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"CW" = ( +"aCW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15548,13 +15675,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"CX" = ( +"aCX" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"CY" = ( +"aCY" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Drone Bay"; req_access = list(24) @@ -15568,7 +15695,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"CZ" = ( +"aCZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15577,7 +15704,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Da" = ( +"aDa" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -15587,7 +15714,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Db" = ( +"aDb" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -15599,7 +15726,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Dc" = ( +"aDc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -15609,7 +15736,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"Dd" = ( +"aDd" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15620,7 +15747,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"De" = ( +"aDe" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -15630,7 +15757,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Df" = ( +"aDf" = ( /obj/structure/bed/chair/office/light, /obj/effect/landmark/start{ name = "Atmospheric Technician" @@ -15641,7 +15768,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Dg" = ( +"aDg" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/yellow/bordercorner, /obj/structure/disposalpipe/segment{ @@ -15649,7 +15776,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Dh" = ( +"aDh" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -15663,13 +15790,13 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Di" = ( +"aDi" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Dj" = ( +"aDj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -15678,13 +15805,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Dk" = ( +"aDk" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/east_stairs_two) -"Dl" = ( +"aDl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -15701,7 +15828,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Dm" = ( +"aDm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15718,7 +15845,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Dn" = ( +"aDn" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -15734,7 +15861,7 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled, /area/maintenance/asmaint2) -"Do" = ( +"aDo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -15749,7 +15876,7 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Dp" = ( +"aDp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -15768,7 +15895,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Dq" = ( +"aDq" = ( /obj/structure/railing{ dir = 4 }, @@ -15776,36 +15903,34 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Dr" = ( +"aDr" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Ds" = ( -/obj/effect/floor_decal/techfloor/corner, -/obj/machinery/drone_fabricator{ - fabricator_tag = "Atmos" - }, -/obj/machinery/camera/network/engineering{ +"aDs" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/techfloor/grid, -/area/engineering/drone_fabrication) -"Dt" = ( +/turf/simulated/floor/tiled, +/area/engineering/atmos) +"aDt" = ( /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Du" = ( +"aDu" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"Dv" = ( +"aDv" = ( /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"Dw" = ( +"aDw" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15818,16 +15943,17 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Dx" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/yellow/border, -/obj/machinery/computer/atmos_alert{ - icon_state = "computer"; - dir = 1 +"aDx" = ( +/obj/machinery/atmospherics/portables_connector{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/atmos/monitoring) -"Dy" = ( +/obj/machinery/portable_atmospherics/powered/pump/filled, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/engineering/pumpstation) +"aDy" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -15840,7 +15966,7 @@ }, /turf/simulated/floor/tiled, /area/engineering/atmos/monitoring) -"Dz" = ( +"aDz" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small{ @@ -15848,30 +15974,30 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DA" = ( +"aDA" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DB" = ( +"aDB" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DC" = ( +"aDC" = ( /obj/structure/reagent_dispensers/fueltank, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DD" = ( +"aDD" = ( /obj/structure/reagent_dispensers/watertank, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DE" = ( +"aDE" = ( /obj/structure/closet/crate, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, @@ -15879,7 +16005,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DF" = ( +"aDF" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/clean, @@ -15887,7 +16013,7 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DG" = ( +"aDG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -15905,12 +16031,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"DH" = ( +"aDH" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"DI" = ( +"aDI" = ( /obj/structure/railing{ dir = 4 }, @@ -15918,7 +16044,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"DJ" = ( +"aDJ" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -15928,37 +16054,37 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/engineering/drone_fabrication) -"DK" = ( +"aDK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"DL" = ( +"aDL" = ( /turf/simulated/floor/tiled/techmaint, /area/engineering/drone_fabrication) -"DM" = ( +"aDM" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DN" = ( +"aDN" = ( /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DO" = ( +"aDO" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DP" = ( +"aDP" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DQ" = ( +"aDQ" = ( /obj/structure/catwalk, /obj/machinery/firealarm{ dir = 2; @@ -15968,7 +16094,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"DR" = ( +"aDR" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -15980,16 +16106,16 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"DS" = ( +"aDS" = ( /turf/simulated/wall, /area/maintenance/lower/atmos) -"DT" = ( +"aDT" = ( /obj/machinery/door/firedoor/glass, /obj/structure/catwalk, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"DU" = ( +"aDU" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -15997,7 +16123,7 @@ /obj/machinery/cryopod/robot, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"DV" = ( +"aDV" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -16008,7 +16134,7 @@ /obj/machinery/cryopod/robot, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"DW" = ( +"aDW" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -16021,7 +16147,7 @@ }, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"DX" = ( +"aDX" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 1 @@ -16035,7 +16161,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/engineering/drone_fabrication) -"DY" = ( +"aDY" = ( /obj/structure/railing{ dir = 8 }, @@ -16046,7 +16172,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"DZ" = ( +"aDZ" = ( /obj/structure/railing{ dir = 1 }, @@ -16055,14 +16181,14 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ea" = ( +"aEa" = ( /obj/structure/railing{ dir = 1 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Eb" = ( +"aEb" = ( /obj/structure/railing{ dir = 1 }, @@ -16070,7 +16196,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ec" = ( +"aEc" = ( /obj/structure/railing{ dir = 1 }, @@ -16080,7 +16206,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ed" = ( +"aEd" = ( /obj/structure/railing{ dir = 8 }, @@ -16089,13 +16215,13 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ee" = ( +"aEe" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ef" = ( +"aEf" = ( /obj/structure/railing{ dir = 1 }, @@ -16103,7 +16229,7 @@ /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Eg" = ( +"aEg" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -16116,11 +16242,11 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Eh" = ( +"aEh" = ( /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Ei" = ( +"aEi" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -16129,7 +16255,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/asmaint2) -"Ej" = ( +"aEj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/rust, @@ -16140,7 +16266,7 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Ek" = ( +"aEk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/rust, /obj/machinery/light_switch{ @@ -16152,46 +16278,46 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"El" = ( +"aEl" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/closet/firecloset, /obj/item/weapon/handcuffs, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Em" = ( +"aEm" = ( /obj/structure/closet/emcloset, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"En" = ( +"aEn" = ( /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Eo" = ( +"aEo" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ep" = ( +"aEp" = ( /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Eq" = ( +"aEq" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Er" = ( +"aEr" = ( /turf/simulated/wall{ can_open = 1 }, /area/maintenance/lower/south) -"Es" = ( +"aEs" = ( /obj/machinery/door/firedoor/glass, /obj/structure/catwalk, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Et" = ( +"aEt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -16206,7 +16332,7 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Eu" = ( +"aEu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -16216,14 +16342,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Ev" = ( +"aEv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Ew" = ( +"aEw" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -16232,17 +16358,17 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Ex" = ( +"aEx" = ( /obj/random/trash_pile, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ey" = ( +"aEy" = ( /obj/structure/catwalk, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ez" = ( +"aEz" = ( /obj/structure/railing{ dir = 8 }, @@ -16250,7 +16376,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"EA" = ( +"aEA" = ( /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 @@ -16260,7 +16386,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"EB" = ( +"aEB" = ( /obj/structure/railing, /obj/structure/closet, /obj/random/maintenance/clean, @@ -16269,7 +16395,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"EC" = ( +"aEC" = ( /obj/structure/railing, /obj/structure/closet, /obj/random/maintenance/clean, @@ -16278,31 +16404,31 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"ED" = ( +"aED" = ( /obj/structure/railing, /obj/structure/table/rack, /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"EE" = ( +"aEE" = ( /obj/structure/table/steel, /obj/item/clothing/accessory/collar/pink, /obj/item/clothing/accessory/collar/shock, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EF" = ( +"aEF" = ( /obj/structure/table/steel, /obj/item/weapon/flame/candle, /obj/item/weapon/flame/candle, /obj/item/weapon/flame/lighter, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EG" = ( +"aEG" = ( /obj/item/device/camera, /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EH" = ( +"aEH" = ( /obj/structure/table/steel, /obj/item/clothing/mask/muzzle, /obj/machinery/light/small{ @@ -16310,12 +16436,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EI" = ( +"aEI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/kitchenspike, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EJ" = ( +"aEJ" = ( /obj/structure/railing{ dir = 8 }, @@ -16330,7 +16456,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EK" = ( +"aEK" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 4; @@ -16339,7 +16465,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"EL" = ( +"aEL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -16353,7 +16479,7 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"EM" = ( +"aEM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16363,7 +16489,7 @@ /obj/random/junk, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"EN" = ( +"aEN" = ( /obj/effect/floor_decal/rust, /obj/structure/cable/green{ d1 = 4; @@ -16373,7 +16499,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"EO" = ( +"aEO" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -16385,17 +16511,17 @@ }, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"EP" = ( +"aEP" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"EQ" = ( +"aEQ" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"ER" = ( +"aER" = ( /obj/structure/railing, /obj/machinery/light{ icon_state = "tube1"; @@ -16403,18 +16529,18 @@ }, /turf/simulated/open, /area/engineering/atmos) -"ES" = ( +"aES" = ( /obj/structure/railing, /turf/simulated/open, /area/engineering/atmos) -"ET" = ( +"aET" = ( /obj/structure/railing, /obj/machinery/light{ dir = 4 }, /turf/simulated/open, /area/engineering/atmos) -"EU" = ( +"aEU" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -16427,12 +16553,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EV" = ( +"aEV" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EW" = ( +"aEW" = ( /obj/structure/railing{ dir = 8 }, @@ -16441,15 +16567,15 @@ /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"EX" = ( +"aEX" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"EY" = ( +"aEY" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"EZ" = ( +"aEZ" = ( /obj/structure/table/steel, /obj/effect/floor_decal/rust, /obj/machinery/firealarm{ @@ -16461,7 +16587,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Fa" = ( +"aFa" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/engi{ name = "Atmospherics Balcony"; @@ -16470,55 +16596,55 @@ /obj/structure/catwalk, /turf/simulated/floor/plating, /area/engineering/atmos) -"Fb" = ( +"aFb" = ( /obj/structure/catwalk, /turf/simulated/open, /area/engineering/atmos) -"Fc" = ( +"aFc" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open, /area/engineering/atmos) -"Fd" = ( +"aFd" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/engineering/atmos) -"Fe" = ( +"aFe" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Ff" = ( +"aFf" = ( /obj/structure/table/steel, /obj/item/clothing/mask/balaclava, /obj/item/clothing/mask/bandana, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Fg" = ( +"aFg" = ( /obj/structure/table/steel, /obj/item/weapon/handcuffs/fuzzy, /obj/item/weapon/handcuffs/legcuffs/fuzzy, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Fh" = ( +"aFh" = ( /obj/structure/bed, /obj/effect/decal/cleanable/blood, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Fi" = ( +"aFi" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Fj" = ( +"aFj" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 5 @@ -16533,7 +16659,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Fk" = ( +"aFk" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 10 @@ -16548,24 +16674,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Fl" = ( +"aFl" = ( /obj/effect/floor_decal/rust, /obj/random/maintenance/research, /obj/structure/closet/wardrobe/white, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Fm" = ( +"aFm" = ( /obj/effect/floor_decal/rust, /obj/structure/bed, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Fn" = ( +"aFn" = ( /obj/effect/floor_decal/rust, /obj/machinery/light/small, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Fo" = ( +"aFo" = ( /obj/structure/table/steel, /obj/effect/floor_decal/rust, /obj/random/maintenance/research, @@ -16573,18 +16699,18 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/steel_dirty, /area/maintenance/asmaint2) -"Fp" = ( +"aFp" = ( /obj/structure/dogbed, /obj/item/clothing/accessory/collar/pink, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"Fq" = ( +"aFq" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/carpet, /area/maintenance/lower/atmos) -"Fr" = ( +"aFr" = ( /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 @@ -16596,12 +16722,12 @@ }, /turf/simulated/floor/carpet, /area/maintenance/lower/atmos) -"Fs" = ( +"aFs" = ( /obj/structure/bed, /obj/item/weapon/bedsheet/rainbow, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"Ft" = ( +"aFt" = ( /obj/effect/decal/cleanable/blood, /obj/item/device/tape{ desc = "No Talk" @@ -16614,7 +16740,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Fu" = ( +"aFu" = ( /obj/structure/railing{ dir = 1 }, @@ -16624,7 +16750,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Fv" = ( +"aFv" = ( /obj/structure/catwalk, /obj/machinery/alarm{ dir = 1; @@ -16632,53 +16758,55 @@ }, /turf/simulated/open, /area/engineering/atmos) -"Fw" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/engineering{ - dir = 1 +"aFw" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/atmospherics/pipe/simple/hidden/red{ + icon_state = "intact"; + dir = 4 }, -/turf/simulated/open, +/turf/simulated/floor/tiled, /area/engineering/atmos) -"Fx" = ( +"aFx" = ( /obj/structure/catwalk, /obj/machinery/light, /turf/simulated/open, /area/engineering/atmos) -"Fy" = ( +"aFy" = ( /obj/structure/table/rack, /obj/item/clothing/under/color/black, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"Fz" = ( +"aFz" = ( /obj/structure/table/steel, /obj/item/clothing/head/welding/demon, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"FA" = ( +"aFA" = ( /obj/structure/table/steel, /obj/item/clothing/glasses/sunglasses/blindfold, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"FB" = ( +"aFB" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"FC" = ( +"aFC" = ( /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"FD" = ( +"aFD" = ( /turf/simulated/floor/carpet, /area/maintenance/lower/atmos) -"FE" = ( +"aFE" = ( /obj/structure/table/steel, /obj/random/coin, /obj/item/clothing/accessory/scarf/stripedred, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"FF" = ( +"aFF" = ( /obj/effect/decal/cleanable/blood, /obj/item/clothing/shoes/athletic{ desc = "Assault" @@ -16694,7 +16822,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"FG" = ( +"aFG" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 @@ -16702,7 +16830,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"FH" = ( +"aFH" = ( /obj/structure/closet, /obj/random/maintenance/security, /obj/random/contraband, @@ -16717,21 +16845,21 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"FI" = ( +"aFI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/simple_door/wood, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"FJ" = ( +"aFJ" = ( /obj/structure/railing, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"FK" = ( +"aFK" = ( /obj/structure/railing, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"FL" = ( +"aFL" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -16739,14 +16867,14 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"FM" = ( +"aFM" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /obj/structure/railing, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"FN" = ( +"aFN" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -16758,7 +16886,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"FO" = ( +"aFO" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -16770,7 +16898,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"FP" = ( +"aFP" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, @@ -16778,19 +16906,19 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"FQ" = ( +"aFQ" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"FR" = ( +"aFR" = ( /obj/structure/catwalk, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"FS" = ( +"aFS" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /obj/item/clothing/glasses/sunglasses{ @@ -16800,63 +16928,63 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"FT" = ( +"aFT" = ( /obj/structure/closet, /obj/item/clothing/under/schoolgirl, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"FU" = ( +"aFU" = ( /obj/machinery/vending/coffee{ product_ads = "Have a drink!;Drink up!;It's good for you!;Would you like a hot joe?;I'd kill for some coffee!;The best beans in the galaxy.;Only the finest brew for you.;Mmmm. Nothing like a coffee.;I like coffee, don't you?;Coffee helps you work!;Try some tea.;We hope you like the best!;Try our new chocolate!;Admin conspiracies;Would you like some tea, Mrs. Nesbit?"; shut_up = 0 }, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"FV" = ( +"aFV" = ( /obj/structure/table/steel, /obj/machinery/microwave, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"FW" = ( +"aFW" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"FX" = ( +"aFX" = ( /obj/structure/catwalk, /obj/random/junk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"FY" = ( +"aFY" = ( /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"FZ" = ( +"aFZ" = ( /obj/effect/floor_decal/techfloor, /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Ga" = ( +"aGa" = ( /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gb" = ( +"aGb" = ( /obj/effect/floor_decal/techfloor, /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gc" = ( +"aGc" = ( /obj/effect/floor_decal/techfloor, /obj/structure/catwalk, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gd" = ( +"aGd" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -16864,7 +16992,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Ge" = ( +"aGe" = ( /obj/structure/railing{ dir = 1 }, @@ -16878,13 +17006,13 @@ /obj/random/maintenance/engineering, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gf" = ( +"aGf" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gg" = ( +"aGg" = ( /obj/structure/railing{ dir = 1 }, @@ -16893,7 +17021,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gh" = ( +"aGh" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -16902,17 +17030,17 @@ }, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"Gi" = ( +"aGi" = ( /obj/item/weapon/stool/padded, /obj/random/action_figure, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Gj" = ( +"aGj" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Gk" = ( +"aGk" = ( /obj/structure/railing{ dir = 8 }, @@ -16922,20 +17050,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Gl" = ( +"aGl" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Gm" = ( +"aGm" = ( /obj/machinery/light/small, /obj/structure/railing{ dir = 1 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Gn" = ( +"aGn" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -16946,7 +17074,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Go" = ( +"aGo" = ( /obj/effect/floor_decal/techfloor{ dir = 10 }, @@ -16955,7 +17083,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gp" = ( +"aGp" = ( /obj/effect/floor_decal/techfloor, /obj/structure/railing{ dir = 4 @@ -16965,14 +17093,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gq" = ( +"aGq" = ( /obj/effect/floor_decal/techfloor, /obj/structure/catwalk, /obj/random/junk, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gr" = ( +"aGr" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -16984,7 +17112,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Gs" = ( +"aGs" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 8 @@ -16994,7 +17122,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gt" = ( +"aGt" = ( /obj/structure/railing{ dir = 8 }, @@ -17005,7 +17133,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gu" = ( +"aGu" = ( /obj/structure/cable{ d1 = 4; d2 = 8; @@ -17014,7 +17142,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gv" = ( +"aGv" = ( /obj/structure/railing{ dir = 4 }, @@ -17026,7 +17154,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gw" = ( +"aGw" = ( /obj/structure/catwalk, /obj/machinery/light/small{ dir = 4; @@ -17039,7 +17167,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Gx" = ( +"aGx" = ( /obj/machinery/light/small{ dir = 8 }, @@ -17049,12 +17177,12 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Gy" = ( +"aGy" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/drinks/teapot, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"Gz" = ( +"aGz" = ( /obj/structure/plushie/ian{ dir = 8; icon_state = "ianplushie"; @@ -17062,14 +17190,14 @@ }, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"GA" = ( +"aGA" = ( /obj/structure/railing{ dir = 8 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"GB" = ( +"aGB" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 9 @@ -17084,7 +17212,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GC" = ( +"aGC" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply{ dir = 6 }, @@ -17097,7 +17225,7 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GD" = ( +"aGD" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -17113,7 +17241,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GE" = ( +"aGE" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -17126,7 +17254,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GF" = ( +"aGF" = ( /obj/structure/railing, /obj/machinery/light/small{ dir = 1 @@ -17142,7 +17270,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GG" = ( +"aGG" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -17161,7 +17289,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GH" = ( +"aGH" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -17177,7 +17305,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GI" = ( +"aGI" = ( /obj/structure/railing, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -17196,7 +17324,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GJ" = ( +"aGJ" = ( /obj/structure/railing{ dir = 4 }, @@ -17217,7 +17345,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GK" = ( +"aGK" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -17235,7 +17363,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GL" = ( +"aGL" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 @@ -17250,7 +17378,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GM" = ( +"aGM" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -17266,20 +17394,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GN" = ( -/obj/structure/railing{ - dir = 8 +"aGN" = ( +/obj/machinery/door/morgue{ + dir = 2; + name = "Confession Booth" }, -/obj/effect/floor_decal/techfloor, -/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/visible/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/maintenance/lower/south) -"GO" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aGO" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 4 @@ -17290,7 +17412,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GP" = ( +"aGP" = ( /obj/structure/railing{ dir = 4 }, @@ -17305,7 +17427,7 @@ /obj/random/trash_pile, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GQ" = ( +"aGQ" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ @@ -17321,7 +17443,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GR" = ( +"aGR" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ dir = 9 @@ -17336,27 +17458,45 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"GS" = ( -/obj/machinery/camera/network/outside{ +"aGS" = ( +/obj/machinery/light_switch{ + dir = 4; + pixel_x = -28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/yellow/border{ + icon_state = "bordercolor"; + dir = 9 + }, +/obj/machinery/light{ dir = 1 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside2) -"GT" = ( +/obj/machinery/computer/general_air_control/large_tank_control{ + frequency = 1441; + input_tag = "atmos_out"; + name = "Atmos Intake Control"; + output_tag = "atmos_in"; + sensors = list("atmos_intake" = "Tank") + }, +/turf/simulated/floor/tiled, +/area/engineering/atmos/monitoring) +"aGT" = ( /obj/structure/plushie/drone{ icon_state = "droneplushie"; dir = 1 }, /turf/simulated/floor/wood, /area/maintenance/lower/atmos) -"GU" = ( +"aGU" = ( /obj/structure/table/steel, /obj/item/weapon/tool/crowbar, /obj/item/weapon/tool/screwdriver, /obj/effect/decal/cleanable/cobweb, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/atmos) -"GV" = ( +"aGV" = ( /obj/machinery/optable{ name = "Robotics Operating Table" }, @@ -17367,7 +17507,7 @@ /obj/effect/decal/cleanable/blood, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/atmos) -"GW" = ( +"aGW" = ( /obj/structure/table/steel, /obj/machinery/vending/wallmed1{ emagged = 1; @@ -17379,7 +17519,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/atmos) -"GX" = ( +"aGX" = ( /obj/structure/railing{ dir = 1 }, @@ -17388,7 +17528,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"GY" = ( +"aGY" = ( /obj/machinery/light/small{ icon_state = "bulb1"; dir = 1 @@ -17396,37 +17536,37 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"GZ" = ( +"aGZ" = ( /obj/effect/decal/cleanable/cobweb{ icon_state = "cobweb2" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ha" = ( +"aHa" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Hb" = ( +"aHb" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "1-2" }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Hc" = ( +"aHc" = ( /turf/simulated/wall/r_wall, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hd" = ( +"aHd" = ( /obj/structure/sink/kitchen{ name = "sink"; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"He" = ( +"aHe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -17440,38 +17580,38 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hf" = ( +"aHf" = ( /obj/structure/railing{ dir = 4 }, /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Hg" = ( +"aHg" = ( /obj/structure/table/steel, /obj/item/weapon/tape_roll, /obj/item/stack/medical/bruise_pack, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Hh" = ( +"aHh" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor/grid, /area/maintenance/lower/atmos) -"Hi" = ( +"aHi" = ( /obj/structure/table/steel, /obj/item/stack/medical/splint/ghetto, /obj/random/technology_scanner, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Hj" = ( +"aHj" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Hk" = ( +"aHk" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -17480,18 +17620,18 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Hl" = ( +"aHl" = ( /obj/structure/table/steel, /obj/item/weapon/hand_labeler, /obj/item/weapon/storage/fancy/candle_box, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Hm" = ( +"aHm" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Hn" = ( +"aHn" = ( /obj/structure/railing{ dir = 8 }, @@ -17505,11 +17645,11 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Ho" = ( +"aHo" = ( /obj/structure/sign/department/telecoms, /turf/simulated/wall, /area/maintenance/substation/tcomms) -"Hp" = ( +"aHp" = ( /obj/machinery/door/airlock/maintenance/engi{ name = "Telecomms Substation" }, @@ -17522,7 +17662,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"Hq" = ( +"aHq" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; @@ -17531,33 +17671,29 @@ }, /turf/simulated/wall, /area/maintenance/substation/tcomms) -"Hr" = ( +"aHr" = ( /turf/simulated/wall, /area/maintenance/substation/tcomms) -"Hs" = ( +"aHs" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; pixel_y = 0 }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ht" = ( +"aHt" = ( /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hu" = ( +"aHu" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hv" = ( +"aHv" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hw" = ( +"aHw" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 8; @@ -17581,7 +17717,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hx" = ( +"aHx" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/research{ name = "Slime Pen 1"; @@ -17604,7 +17740,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hy" = ( +"aHy" = ( /obj/machinery/processor, /obj/machinery/firealarm{ dir = 2; @@ -17614,25 +17750,21 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Hz" = ( -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 +"aHz" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 }, -/obj/machinery/alarm{ - pixel_x = 0; - pixel_y = 30 +/obj/machinery/camera/network/engineering{ + dir = 4 }, -/obj/machinery/camera/network/research, -/obj/machinery/computer/security/xenobio, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"HA" = ( +/turf/simulated/open, +/area/engineering/atmos) +"aHA" = ( /obj/machinery/smartfridge/secure/extract, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HB" = ( +"aHB" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 4 @@ -17655,24 +17787,20 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HC" = ( +"aHC" = ( /obj/machinery/light{ dir = 4 }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 - }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HD" = ( +"aHD" = ( /obj/structure/railing{ dir = 4 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"HE" = ( +"aHE" = ( /obj/structure/table/steel, /obj/random/medical/pillbottle, /obj/machinery/light/small{ @@ -17681,18 +17809,18 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"HF" = ( +"aHF" = ( /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"HG" = ( +"aHG" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"HH" = ( +"aHH" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -17707,15 +17835,15 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/rnd) -"HI" = ( +"aHI" = ( /obj/structure/table/steel, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"HJ" = ( +"aHJ" = ( /obj/item/weapon/stool, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"HK" = ( +"aHK" = ( /obj/structure/railing{ dir = 8 }, @@ -17727,7 +17855,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"HL" = ( +"aHL" = ( /obj/structure/cable{ d1 = 1; d2 = 2; @@ -17742,7 +17870,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"HM" = ( +"aHM" = ( /obj/machinery/power/terminal, /obj/structure/cable{ icon_state = "0-8" @@ -17750,7 +17878,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"HN" = ( +"aHN" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -17760,34 +17888,34 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"HO" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 +"aHO" = ( +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 }, -/obj/machinery/camera/network/engineering, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" +/obj/machinery/alarm{ + pixel_x = 0; + pixel_y = 30 }, -/turf/simulated/floor/plating, -/area/maintenance/substation/tcomms) -"HP" = ( +/obj/machinery/computer/security/xenobio, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aHP" = ( /turf/simulated/wall/r_wall, /area/tcommsat/computer) -"HQ" = ( +"aHQ" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HR" = ( +"aHR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ icon_state = "intact-supply"; dir = 5 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HS" = ( +"aHS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 5 @@ -17797,7 +17925,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HT" = ( +"aHT" = ( /obj/machinery/door/firedoor/border_only, /obj/machinery/door/airlock/research{ name = "Slime Pen 2"; @@ -17820,7 +17948,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HU" = ( +"aHU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -17830,37 +17958,19 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HV" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv7"; - name = "Divider 7 Blast Doors"; - pixel_x = -30; - pixel_y = -5; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen9"; - name = "Pen 9 Containment"; - pixel_x = -30; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 4 +"aHV" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 }, /obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" + d2 = 2; + icon_state = "0-2" }, -/obj/machinery/power/apc/super{ - dir = 1; - pixel_y = 24 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"HW" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/tcomms) +"aHW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -17873,7 +17983,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HX" = ( +"aHX" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -17894,7 +18004,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HY" = ( +"aHY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -17903,14 +18013,14 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"HZ" = ( +"aHZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ia" = ( +"aIa" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /obj/structure/closet/jcloset, @@ -17918,7 +18028,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/janitor) -"Ib" = ( +"aIb" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 @@ -17926,7 +18036,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ic" = ( +"aIc" = ( /obj/machinery/light/small{ dir = 4 }, @@ -17934,7 +18044,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Id" = ( +"aId" = ( /obj/machinery/pros_fabricator{ desc = "A machine used for construction of legit prosthetics. You weren't sure if cardboard was considered an engineering material until now."; dir = 4; @@ -17946,40 +18056,40 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ie" = ( +"aIe" = ( /obj/effect/decal/cleanable/blood/oil, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"If" = ( +"aIf" = ( /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Ig" = ( +"aIg" = ( /obj/machinery/vending/assist, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ih" = ( +"aIh" = ( /obj/random/trash_pile, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ii" = ( +"aIi" = ( /obj/machinery/light/small, /obj/structure/catwalk, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ij" = ( +"aIj" = ( /obj/structure/table/steel, /obj/item/weapon/paper_bin, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ik" = ( +"aIk" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Il" = ( +"aIl" = ( /obj/structure/railing{ dir = 8 }, @@ -17991,13 +18101,13 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Im" = ( +"aIm" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Telecomms Substation Bypass" }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"In" = ( +"aIn" = ( /obj/machinery/power/smes/buildable{ charge = 100000; output_attempt = 0; @@ -18012,7 +18122,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"Io" = ( +"aIo" = ( /obj/machinery/power/sensor{ name = "Powernet Sensor - Telecomms Subgrid"; name_tag = "Telecomms Subgrid" @@ -18033,36 +18143,39 @@ }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"Ip" = ( +"aIp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; icon_state = "1-8" }, /obj/machinery/light/small, +/obj/machinery/camera/network/engineering{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/substation/tcomms) -"Iq" = ( +"aIq" = ( /turf/simulated/wall/r_wall, /area/maintenance/substation/tcomms) -"Ir" = ( +"aIr" = ( /turf/simulated/wall/r_wall, /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Is" = ( +"aIs" = ( /obj/machinery/atmospherics/portables_connector, /obj/machinery/portable_atmospherics/canister/air/airlock, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"It" = ( +"aIt" = ( /obj/structure/filingcabinet, /obj/machinery/status_display{ pixel_y = 30 }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"Iu" = ( +"aIu" = ( /obj/structure/table/standard, /obj/item/weapon/folder/yellow, /obj/item/weapon/folder/yellow, @@ -18077,7 +18190,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"Iv" = ( +"aIv" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin, /obj/item/weapon/pen/blue{ @@ -18086,18 +18199,18 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"Iw" = ( +"aIw" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"Ix" = ( +"aIx" = ( /obj/structure/table/standard, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"Iy" = ( +"aIy" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24; @@ -18105,7 +18218,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Iz" = ( +"aIz" = ( /obj/structure/disposalpipe/trunk{ dir = 4 }, @@ -18114,7 +18227,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IA" = ( +"aIA" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 8; @@ -18141,30 +18254,30 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IB" = ( +"aIB" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IC" = ( +"aIC" = ( /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"ID" = ( +"aID" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/steel, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IE" = ( +"aIE" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IF" = ( +"aIF" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 4 @@ -18190,7 +18303,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IG" = ( +"aIG" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -18199,7 +18312,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IH" = ( +"aIH" = ( /obj/machinery/firealarm{ dir = 4; layer = 3.3; @@ -18207,24 +18320,24 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"II" = ( +"aII" = ( /obj/structure/morgue, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"IJ" = ( +"aIJ" = ( /obj/structure/closet/crate/freezer, /obj/machinery/light/small{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"IK" = ( +"aIK" = ( /turf/simulated/wall{ can_open = 1 }, /area/maintenance/lower/atmos) -"IL" = ( +"aIL" = ( /obj/structure/railing{ dir = 8 }, @@ -18235,12 +18348,12 @@ /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"IM" = ( +"aIM" = ( /turf/simulated/wall, /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"IN" = ( +"aIN" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18250,13 +18363,13 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"IO" = ( +"aIO" = ( /obj/structure/sign/securearea, /turf/simulated/wall/r_wall, /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"IP" = ( +"aIP" = ( /obj/machinery/porta_turret{ dir = 6 }, @@ -18267,13 +18380,13 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"IQ" = ( +"aIQ" = ( /obj/machinery/camera/network/tcomms, /turf/simulated/floor/tiled/dark, /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"IR" = ( +"aIR" = ( /obj/machinery/turretid/lethal{ ailock = 1; check_synth = 1; @@ -18294,20 +18407,20 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"IS" = ( +"aIS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"IT" = ( +"aIT" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 4 }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"IU" = ( +"aIU" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -18316,27 +18429,29 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"IV" = ( +"aIV" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 10; icon_state = "intact" }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"IW" = ( +"aIW" = ( /obj/machinery/computer/telecomms/monitor{ dir = 8; network = "tcommsat" }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"IX" = ( -/obj/machinery/camera/network/outside{ - dir = 8 +"aIX" = ( +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "slime_pens"; + dir = 4; + pixel_x = -22 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside2) -"IY" = ( +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aIY" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv1"; layer = 8; @@ -18344,7 +18459,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"IZ" = ( +"aIZ" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiodiv1"; name = "Divider 1 Blast Doors"; @@ -18373,16 +18488,32 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ja" = ( +"aJa" = ( /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Jb" = ( +"aJb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Jc" = ( +"aJc" = ( +/obj/machinery/alarm/monitor/isolation{ + alarm_id = "slime_pens"; + dir = 8; + pixel_x = 22 + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aJd" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv2"; + layer = 8; + name = "Divider 2 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aJe" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiodiv2"; name = "Divider 2 Blast Doors"; @@ -18404,37 +18535,20 @@ pixel_y = -8; req_access = list(55) }, -/obj/machinery/camera/network/research{ - dir = 8 - }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Jd" = ( -/obj/machinery/door/blast/regular{ - id = "xenobiodiv2"; - layer = 8; - name = "Divider 2 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"Je" = ( -/obj/machinery/camera/network/outside{ - dir = 4 - }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside2) -"Jf" = ( +"aJf" = ( /obj/structure/morgue, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Jg" = ( +"aJg" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Jh" = ( +"aJh" = ( /turf/simulated/mineral, /area/maintenance/lower/atmos) -"Ji" = ( +"aJi" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -18451,13 +18565,13 @@ /obj/random/maintenance/clean, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"Jj" = ( +"aJj" = ( /obj/structure/sign/department/telecoms, /turf/simulated/wall, /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"Jk" = ( +"aJk" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/decal/cleanable/cobweb, /obj/machinery/light/small{ @@ -18467,7 +18581,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"Jl" = ( +"aJl" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -18482,7 +18596,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"Jm" = ( +"aJm" = ( /obj/machinery/turretid/stun{ ailock = 1; check_synth = 1; @@ -18504,7 +18618,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"Jn" = ( +"aJn" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -18512,7 +18626,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Jo" = ( +"aJo" = ( /obj/machinery/camera/network/tcomms, /obj/structure/sign/electricshock{ pixel_y = 32 @@ -18521,7 +18635,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Jp" = ( +"aJp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18534,7 +18648,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Jq" = ( +"aJq" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -18542,7 +18656,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Jr" = ( +"aJr" = ( /obj/structure/window/reinforced/full, /obj/structure/grille, /obj/structure/cable/green{ @@ -18554,18 +18668,18 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Js" = ( +"aJs" = ( /turf/simulated/floor/tiled, /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Jt" = ( +"aJt" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Ju" = ( +"aJu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -18578,34 +18692,34 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Jv" = ( +"aJv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Jw" = ( +"aJw" = ( /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Jx" = ( +"aJx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Jy" = ( +"aJy" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Jz" = ( +"aJz" = ( /obj/machinery/computer/telecomms/server{ dir = 8; network = "tcommsat" }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"JA" = ( +"aJA" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -18632,7 +18746,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JB" = ( +"aJB" = ( /obj/machinery/disposal, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18644,20 +18758,20 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JC" = ( +"aJC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JD" = ( +"aJD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JE" = ( +"aJE" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JF" = ( +"aJF" = ( /obj/machinery/disposal, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -18668,7 +18782,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JG" = ( +"aJG" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -18695,7 +18809,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"JH" = ( +"aJH" = ( /obj/structure/railing{ dir = 8 }, @@ -18703,32 +18817,32 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"JI" = ( +"aJI" = ( /obj/structure/table/steel, /obj/item/bodybag, /obj/item/bodybag, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"JJ" = ( +"aJJ" = ( /obj/structure/table/steel, /obj/item/device/nif/bad, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"JK" = ( +"aJK" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"JL" = ( +"aJL" = ( /turf/simulated/wall, /area/vacant/vacant_bar_upper) -"JM" = ( +"aJM" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor/corner, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"JN" = ( +"aJN" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor{ dir = 4 @@ -18741,7 +18855,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"JO" = ( +"aJO" = ( /obj/machinery/door/airlock/highsecurity{ name = "Telecomms Access"; req_access = list(61); @@ -18758,7 +18872,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"JP" = ( +"aJP" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -18767,7 +18881,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"JQ" = ( +"aJQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -18784,7 +18898,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"JR" = ( +"aJR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18800,7 +18914,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"JS" = ( +"aJS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18822,7 +18936,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JT" = ( +"aJT" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18838,7 +18952,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JU" = ( +"aJU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18854,7 +18968,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JV" = ( +"aJV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -18879,7 +18993,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JW" = ( +"aJW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18896,7 +19010,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JX" = ( +"aJX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18927,7 +19041,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JY" = ( +"aJY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18943,7 +19057,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"JZ" = ( +"aJZ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18964,7 +19078,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Ka" = ( +"aKa" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -18979,7 +19093,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Kb" = ( +"aKb" = ( /obj/machinery/door/airlock/hatch{ name = "Telecoms Control Room"; req_access = list(61); @@ -18999,7 +19113,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Kc" = ( +"aKc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -19014,7 +19128,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Kd" = ( +"aKd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19025,7 +19139,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Ke" = ( +"aKe" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -19041,7 +19155,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Kf" = ( +"aKf" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19052,7 +19166,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Kg" = ( +"aKg" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -19065,10 +19179,10 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"Kh" = ( +"aKh" = ( /turf/simulated/wall/r_wall, /area/tcommsat/chamber) -"Ki" = ( +"aKi" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -19077,17 +19191,17 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/storage) -"Kj" = ( +"aKj" = ( /obj/random/slimecore, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kk" = ( +"aKk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kl" = ( +"aKl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -19096,7 +19210,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Km" = ( +"aKm" = ( /obj/machinery/door/window/brigdoor/eastleft{ name = "Slime Pen 3"; req_access = list(55) @@ -19110,7 +19224,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kn" = ( +"aKn" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/pipe/simple/visible/purple{ @@ -19119,19 +19233,19 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/asmaint2) -"Ko" = ( +"aKo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kp" = ( +"aKp" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kq" = ( +"aKq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -19139,7 +19253,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kr" = ( +"aKr" = ( /obj/machinery/door/window/brigdoor/westright{ name = "Slime Pen 4"; req_access = list(55) @@ -19153,7 +19267,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ks" = ( +"aKs" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -19174,7 +19288,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kt" = ( +"aKt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -19183,16 +19297,16 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ku" = ( +"aKu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Kv" = ( +"aKv" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/storage) -"Kw" = ( +"aKw" = ( /obj/structure/table/rack, /obj/item/device/flashlight, /obj/random/maintenance/clean, @@ -19201,15 +19315,15 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Kx" = ( +"aKx" = ( /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"Ky" = ( +"aKy" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"Kz" = ( +"aKz" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -19222,24 +19336,24 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"KA" = ( +"aKA" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"KB" = ( +"aKB" = ( /turf/simulated/floor/plating, /area/vacant/vacant_bar_upper) -"KC" = ( +"aKC" = ( /obj/structure/table/rack/shelf/steel, /obj/item/weapon/reagent_containers/food/drinks/bottle/vermouth, /obj/item/weapon/reagent_containers/food/drinks/bottle/rum, /obj/item/weapon/reagent_containers/food/drinks/bottle/cognac, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"KD" = ( +"aKD" = ( /obj/structure/railing{ dir = 1 }, @@ -19248,7 +19362,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"KE" = ( +"aKE" = ( /obj/structure/railing{ dir = 1 }, @@ -19257,13 +19371,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"KF" = ( +"aKF" = ( /obj/structure/sign/securearea, /turf/simulated/wall, /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"KG" = ( +"aKG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -19275,7 +19389,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"KH" = ( +"aKH" = ( /obj/machinery/camera/network/tcomms{ dir = 1 }, @@ -19283,7 +19397,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"KI" = ( +"aKI" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -19292,7 +19406,7 @@ /area/tcommsat/entrance{ name = "\improper Telecomms Entrance" }) -"KJ" = ( +"aKJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -19304,7 +19418,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"KK" = ( +"aKK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19316,7 +19430,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"KL" = ( +"aKL" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -19325,7 +19439,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"KM" = ( +"aKM" = ( /obj/machinery/porta_turret{ dir = 6 }, @@ -19333,7 +19447,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"KN" = ( +"aKN" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -19344,7 +19458,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"KO" = ( +"aKO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -19357,7 +19471,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"KP" = ( +"aKP" = ( /obj/machinery/light{ dir = 8 }, @@ -19368,7 +19482,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"KQ" = ( +"aKQ" = ( /obj/machinery/atmospherics/unary/freezer{ dir = 2; icon_state = "freezer_1"; @@ -19377,7 +19491,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"KR" = ( +"aKR" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19385,7 +19499,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tcommsat/computer) -"KS" = ( +"aKS" = ( /obj/machinery/atmospherics/pipe/simple/hidden{ dir = 5; icon_state = "intact" @@ -19399,7 +19513,7 @@ }, /turf/simulated/floor/tiled, /area/tcommsat/computer) -"KT" = ( +"aKT" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1381; icon_state = "door_locked"; @@ -19415,7 +19529,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tcommsat/chamber) -"KU" = ( +"aKU" = ( /obj/machinery/airlock_sensor{ frequency = 1381; id_tag = "server_access_sensor"; @@ -19443,25 +19557,25 @@ }, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"KV" = ( +"aKV" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"KW" = ( +"aKW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"KX" = ( +"aKX" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"KY" = ( +"aKY" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -19482,7 +19596,7 @@ /obj/structure/grille, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"KZ" = ( +"aKZ" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 @@ -19494,7 +19608,7 @@ /obj/structure/grille, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"La" = ( +"aLa" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ dir = 1 @@ -19507,7 +19621,7 @@ /obj/structure/grille, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Lb" = ( +"aLb" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -19527,13 +19641,13 @@ /obj/structure/grille, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Lc" = ( +"aLc" = ( /obj/structure/closet, /obj/structure/catwalk, /obj/random/maintenance/clean, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ld" = ( +"aLd" = ( /obj/random/junk, /obj/random/junk, /obj/machinery/light/small{ @@ -19541,19 +19655,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Le" = ( +"aLe" = ( /obj/machinery/alarm{ pixel_y = 22 }, /obj/item/weapon/bananapeel, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Lf" = ( +"aLf" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Lg" = ( +"aLg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19561,16 +19675,16 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_bar_upper) -"Lh" = ( +"aLh" = ( /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"Li" = ( +"aLi" = ( /obj/structure/table/rack/shelf/steel, /obj/item/weapon/reagent_containers/food/drinks/bottle/space_mountain_wind, /obj/item/weapon/reagent_containers/food/drinks/bottle/cola, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"Lj" = ( +"aLj" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -19581,12 +19695,12 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Lk" = ( +"aLk" = ( /turf/simulated/floor/tiled/dark, /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Ll" = ( +"aLl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19598,7 +19712,7 @@ /area/tcomsat{ name = "\improper Telecomms Lobby" }) -"Lm" = ( +"aLm" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -19611,7 +19725,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"Ln" = ( +"aLn" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -19626,7 +19740,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/black, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"Lo" = ( +"aLo" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -19648,7 +19762,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"Lp" = ( +"aLp" = ( /obj/structure/cable/green{ d2 = 4; icon_state = "0-4" @@ -19665,7 +19779,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"Lq" = ( +"aLq" = ( /obj/structure/cable/green{ d2 = 8; icon_state = "0-8" @@ -19678,7 +19792,7 @@ }, /turf/simulated/floor/plating, /area/tcommsat/chamber) -"Lr" = ( +"aLr" = ( /obj/machinery/door/airlock/maintenance_hatch{ frequency = 1381; icon_state = "door_locked"; @@ -19694,7 +19808,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Ls" = ( +"aLs" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv3"; layer = 8; @@ -19702,34 +19816,36 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Lt" = ( +"aLt" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiopen5"; name = "Pen 5 Containment"; - pixel_x = -30; + pixel_x = -20; pixel_y = -8; req_access = list(55) }, /obj/machinery/button/remote/blast_door{ id = "xenobiopen3"; name = "Pen 3 Containment"; - pixel_x = -30; + pixel_x = -20; pixel_y = 8; req_access = list(55) }, /obj/machinery/button/remote/blast_door{ id = "xenobiodiv3"; name = "Divider 3 Blast Doors"; - pixel_x = -38; + pixel_x = -25; pixel_y = 0; req_access = list(55) }, -/obj/machinery/camera/network/research{ - dir = 4 +/obj/machinery/alarm{ + dir = 4; + pixel_x = -35; + pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Lu" = ( +"aLu" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiodiv4"; name = "Divider 4 Blast Doors"; @@ -19756,7 +19872,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Lv" = ( +"aLv" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv4"; layer = 8; @@ -19764,13 +19880,13 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Lw" = ( +"aLw" = ( /obj/random/junk, /obj/item/weapon/broken_bottle, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Lx" = ( +"aLx" = ( /obj/machinery/light_construct{ icon_state = "tube-construct-stage1"; dir = 8 @@ -19778,7 +19894,7 @@ /obj/structure/closet/secure_closet/personal, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"Ly" = ( +"aLy" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19787,7 +19903,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_bar_upper) -"Lz" = ( +"aLz" = ( /obj/structure/table/rack/shelf/steel, /obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, /obj/item/weapon/reagent_containers/food/drinks/bottle/cream, @@ -19799,12 +19915,12 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"LA" = ( +"aLA" = ( /turf/simulated/wall/r_wall, /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"LB" = ( +"aLB" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -19812,7 +19928,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"LC" = ( +"aLC" = ( /obj/machinery/door/airlock/glass{ name = "Telecomms Storage"; req_access = list(61); @@ -19830,7 +19946,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"LD" = ( +"aLD" = ( /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; nitrogen = 100; @@ -19838,7 +19954,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LE" = ( +"aLE" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -19854,7 +19970,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LF" = ( +"aLF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /obj/structure/cable/green{ d1 = 4; @@ -19868,7 +19984,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LG" = ( +"aLG" = ( /obj/machinery/porta_turret/stationary, /obj/structure/cable/green{ d1 = 4; @@ -19882,7 +19998,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LH" = ( +"aLH" = ( /obj/machinery/light{ dir = 1 }, @@ -19898,7 +20014,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LI" = ( +"aLI" = ( /obj/machinery/porta_turret/stationary, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -19907,7 +20023,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LJ" = ( +"aLJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -19916,7 +20032,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LK" = ( +"aLK" = ( /obj/machinery/airlock_sensor/airlock_interior{ frequency = 1381; id_tag = "server_access_in_sensor"; @@ -19932,7 +20048,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LL" = ( +"aLL" = ( /obj/machinery/airlock_sensor/airlock_interior{ frequency = 1381; id_tag = "server_access_in_sensor"; @@ -19951,14 +20067,14 @@ temperature = 80 }, /area/tcommsat/chamber) -"LM" = ( +"aLM" = ( /turf/simulated/floor/tiled/dark{ nitrogen = 100; oxygen = 0; temperature = 80 }, /area/tcommsat/chamber) -"LN" = ( +"aLN" = ( /obj/structure/sign/securearea{ desc = "A warning sign which reads 'SERVER ROOM'."; name = "SERVER ROOM"; @@ -19971,7 +20087,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"LO" = ( +"aLO" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -19998,7 +20114,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"LP" = ( +"aLP" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20025,7 +20141,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"LQ" = ( +"aLQ" = ( /obj/structure/railing{ dir = 1 }, @@ -20035,26 +20151,26 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"LR" = ( +"aLR" = ( /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"LS" = ( +"aLS" = ( /obj/structure/bed/chair, /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"LT" = ( +"aLT" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"LU" = ( +"aLU" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_bar_upper) -"LV" = ( +"aLV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -20062,7 +20178,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"LW" = ( +"aLW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20070,7 +20186,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"LX" = ( +"aLX" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -20078,7 +20194,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_bar_upper) -"LY" = ( +"aLY" = ( /obj/structure/table/rack/shelf/steel, /obj/item/weapon/reagent_containers/food/drinks/bottle/goldschlager, /obj/item/weapon/reagent_containers/food/drinks/bottle/sake, @@ -20090,7 +20206,7 @@ /obj/item/weapon/reagent_containers/food/drinks/bottle/specialwhiskey, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"LZ" = ( +"aLZ" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/amplifier, /obj/item/weapon/stock_parts/subspace/amplifier, @@ -20102,7 +20218,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"Ma" = ( +"aMa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -20111,7 +20227,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"Mb" = ( +"aMb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20128,7 +20244,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"Mc" = ( +"aMc" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/ansible, /obj/item/weapon/stock_parts/subspace/ansible, @@ -20145,7 +20261,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"Md" = ( +"aMd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20153,7 +20269,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Me" = ( +"aMe" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20161,7 +20277,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Mf" = ( +"aMf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass/hidden{ @@ -20170,11 +20286,11 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mg" = ( +"aMg" = ( /obj/item/slime_extract/grey, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mh" = ( +"aMh" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20195,7 +20311,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mi" = ( +"aMi" = ( /obj/machinery/door/window/brigdoor/eastleft{ name = "Slime Pen 5"; req_access = list(55) @@ -20209,7 +20325,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mj" = ( +"aMj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -20219,7 +20335,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mk" = ( +"aMk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/table/steel, @@ -20229,7 +20345,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ml" = ( +"aMl" = ( /obj/machinery/door/window/brigdoor/westright{ name = "Slime Pen 6"; req_access = list(55) @@ -20243,7 +20359,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mm" = ( +"aMm" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20264,323 +20380,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Mn" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 4; - network = list("Xenobiology") - }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "slime_pens"; - dir = 4; - pixel_x = -22 - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"Mo" = ( -/obj/machinery/light/small{ - dir = 8 - }, -/obj/structure/railing{ - dir = 4 - }, -/obj/random/junk, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/lower/atmos) -"Mp" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/maintenance/lower/atmos) -"Mq" = ( -/turf/simulated/open, -/area/maintenance/lower/atmos) -"Mr" = ( -/turf/simulated/wall{ - can_open = 1 - }, -/area/vacant/vacant_bar_upper) -"Ms" = ( -/obj/structure/simple_door/wood, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar_upper) -"Mt" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/item/weapon/stock_parts/subspace/transmitter, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -24 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"Mu" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"Mv" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"Mw" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/item/weapon/stock_parts/subspace/analyzer, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"Mx" = ( -/obj/machinery/telecomms/server/presets/supply, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"My" = ( -/obj/machinery/telecomms/server/presets/service/tether, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"Mz" = ( -/obj/machinery/telecomms/server/presets/unused, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MA" = ( -/obj/machinery/telecomms/relay/preset/tether/midpoint, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MB" = ( -/obj/machinery/telecomms/server/presets/common, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MC" = ( -/obj/machinery/telecomms/server/presets/engineering, -/turf/simulated/floor/tiled/dark{ - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MD" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen5"; - name = "Pen 5 Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 8; - health = 1e+006 - }, -/obj/structure/grille, -/obj/structure/grille, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"ME" = ( -/obj/machinery/door/blast/regular{ - density = 0; - icon_state = "pdoor0"; - id = "xenobiopen6"; - name = "Pen 6 Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/structure/grille, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"MF" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/double, -/obj/structure/curtain/open/privacy, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar_upper) -"MG" = ( -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar_upper) -"MH" = ( -/obj/structure/bed/double/padded, -/obj/item/weapon/bedsheet/double, -/obj/structure/curtain/open/privacy, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar_upper) -"MI" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/wood, -/area/vacant/vacant_bar_upper) -"MJ" = ( -/obj/structure/table/standard, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/obj/item/weapon/stock_parts/subspace/treatment, -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"MK" = ( -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"ML" = ( -/obj/structure/table/rack, -/obj/item/weapon/circuitboard/telecomms/processor, -/obj/item/weapon/circuitboard/telecomms/processor, -/obj/item/weapon/circuitboard/telecomms/receiver, -/obj/item/weapon/circuitboard/telecomms/server, -/obj/item/weapon/circuitboard/telecomms/server, -/obj/item/weapon/circuitboard/telecomms/bus, -/obj/item/weapon/circuitboard/telecomms/bus, -/obj/item/weapon/circuitboard/telecomms/broadcaster, -/obj/item/weapon/circuitboard/telecomms/exonet_node, -/obj/machinery/light/small, -/obj/item/weapon/circuitboard/ntnet_relay, -/obj/item/weapon/circuitboard/telecomms/relay, -/turf/simulated/floor/tiled/techmaint, -/area/tcomfoyer{ - name = "\improper Telecomms Storage" - }) -"MM" = ( -/obj/machinery/camera/network/tcomms{ - dir = 4 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MN" = ( -/obj/machinery/exonet_node{ - anchored = 1 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MO" = ( -/obj/machinery/camera/network/tcomms{ - dir = 8 - }, -/turf/simulated/floor/bluegrid{ - name = "Mainframe Base"; - nitrogen = 100; - oxygen = 0; - temperature = 80 - }, -/area/tcommsat/chamber) -"MP" = ( -/obj/machinery/door/blast/regular{ - id = "xenobiodiv5"; - layer = 8; - name = "Divider 5 Blast Door" - }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"MQ" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv5"; - name = "Divider 5 Blast Doors"; - pixel_x = -38; - pixel_y = 0; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen5"; - name = "Pen 5 Containment"; - pixel_x = -30; - pixel_y = 8; - req_access = list(55) - }, -/obj/machinery/light{ - dir = 8; - icon_state = "tube1"; - pixel_y = 0 - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen7"; - name = "Pen 7 Containment"; - pixel_x = -30; - pixel_y = -8; - req_access = list(55) - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"MR" = ( +"aMn" = ( /obj/machinery/button/remote/blast_door{ id = "xenobiodiv6"; name = "Divider 6 Blast Doors"; @@ -20602,12 +20402,299 @@ pixel_y = -8; req_access = list(55) }, -/obj/machinery/camera/network/research{ +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aMo" = ( +/obj/machinery/light/small{ dir = 8 }, +/obj/structure/railing{ + dir = 4 + }, +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/maintenance/lower/atmos) +"aMp" = ( +/obj/structure/railing{ + dir = 1 + }, +/turf/simulated/open, +/area/maintenance/lower/atmos) +"aMq" = ( +/turf/simulated/open, +/area/maintenance/lower/atmos) +"aMr" = ( +/turf/simulated/wall{ + can_open = 1 + }, +/area/vacant/vacant_bar_upper) +"aMs" = ( +/obj/structure/simple_door/wood, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar_upper) +"aMt" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/item/weapon/stock_parts/subspace/transmitter, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aMu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aMv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aMw" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/item/weapon/stock_parts/subspace/analyzer, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aMx" = ( +/obj/machinery/telecomms/server/presets/supply, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMy" = ( +/obj/machinery/telecomms/server/presets/service/tether, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMz" = ( +/obj/machinery/telecomms/server/presets/unused, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMA" = ( +/obj/machinery/telecomms/relay/preset/tether/midpoint, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMB" = ( +/obj/machinery/telecomms/server/presets/common, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMC" = ( +/obj/machinery/telecomms/server/presets/engineering, +/turf/simulated/floor/tiled/dark{ + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMD" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen5"; + name = "Pen 5 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/obj/structure/grille, +/obj/structure/grille, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aME" = ( +/obj/machinery/door/blast/regular{ + density = 0; + icon_state = "pdoor0"; + id = "xenobiopen6"; + name = "Pen 6 Blast Doors"; + opacity = 0 + }, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/structure/grille, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aMF" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/obj/structure/curtain/open/privacy, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar_upper) +"aMG" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar_upper) +"aMH" = ( +/obj/structure/bed/double/padded, +/obj/item/weapon/bedsheet/double, +/obj/structure/curtain/open/privacy, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar_upper) +"aMI" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/wood, +/area/vacant/vacant_bar_upper) +"aMJ" = ( +/obj/structure/table/standard, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/obj/item/weapon/stock_parts/subspace/treatment, +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aMK" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aML" = ( +/obj/structure/table/rack, +/obj/item/weapon/circuitboard/telecomms/processor, +/obj/item/weapon/circuitboard/telecomms/processor, +/obj/item/weapon/circuitboard/telecomms/receiver, +/obj/item/weapon/circuitboard/telecomms/server, +/obj/item/weapon/circuitboard/telecomms/server, +/obj/item/weapon/circuitboard/telecomms/bus, +/obj/item/weapon/circuitboard/telecomms/bus, +/obj/item/weapon/circuitboard/telecomms/broadcaster, +/obj/item/weapon/circuitboard/telecomms/exonet_node, +/obj/machinery/light/small, +/obj/item/weapon/circuitboard/ntnet_relay, +/obj/item/weapon/circuitboard/telecomms/relay, +/turf/simulated/floor/tiled/techmaint, +/area/tcomfoyer{ + name = "\improper Telecomms Storage" + }) +"aMM" = ( +/obj/machinery/camera/network/tcomms{ + dir = 4 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMN" = ( +/obj/machinery/exonet_node{ + anchored = 1 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMO" = ( +/obj/machinery/camera/network/tcomms{ + dir = 8 + }, +/turf/simulated/floor/bluegrid{ + name = "Mainframe Base"; + nitrogen = 100; + oxygen = 0; + temperature = 80 + }, +/area/tcommsat/chamber) +"aMP" = ( +/obj/machinery/door/blast/regular{ + id = "xenobiodiv5"; + layer = 8; + name = "Divider 5 Blast Door" + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aMQ" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"MS" = ( +"aMR" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aMS" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv6"; layer = 8; @@ -20615,7 +20702,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"MT" = ( +"aMT" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv6"; layer = 8; @@ -20623,20 +20710,20 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"MU" = ( +"aMU" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"MV" = ( +"aMV" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"MW" = ( +"aMW" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/micro_laser, /obj/item/weapon/stock_parts/manipulator, @@ -20652,7 +20739,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"MX" = ( +"aMX" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/sub_filter, /obj/item/weapon/stock_parts/subspace/sub_filter, @@ -20666,7 +20753,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"MY" = ( +"aMY" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/subspace/crystal, /obj/item/weapon/stock_parts/subspace/crystal, @@ -20675,7 +20762,7 @@ /area/tcomfoyer{ name = "\improper Telecomms Storage" }) -"MZ" = ( +"aMZ" = ( /obj/structure/sign/nosmoking_2{ pixel_x = -32; pixel_y = 0 @@ -20691,7 +20778,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Na" = ( +"aNa" = ( /obj/machinery/telecomms/processor/preset_two, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20699,7 +20786,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nb" = ( +"aNb" = ( /obj/machinery/telecomms/bus/preset_two/tether, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20707,7 +20794,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nc" = ( +"aNc" = ( /obj/machinery/telecomms/relay/preset/tether/base_high, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20715,7 +20802,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nd" = ( +"aNd" = ( /obj/machinery/telecomms/broadcaster/preset_right, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -20724,7 +20811,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Ne" = ( +"aNe" = ( /obj/machinery/telecomms/hub/preset/tether, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -20733,7 +20820,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nf" = ( +"aNf" = ( /obj/machinery/telecomms/receiver/preset_right/tether, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -20742,7 +20829,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Ng" = ( +"aNg" = ( /obj/machinery/telecomms/relay/preset/tether/base_low, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20750,7 +20837,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nh" = ( +"aNh" = ( /obj/machinery/telecomms/bus/preset_four, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20758,7 +20845,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Ni" = ( +"aNi" = ( /obj/machinery/telecomms/processor/preset_four, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20766,7 +20853,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nj" = ( +"aNj" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 32; pixel_y = 0 @@ -20781,7 +20868,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nk" = ( +"aNk" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20808,7 +20895,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nl" = ( +"aNl" = ( /obj/machinery/disposal, /obj/structure/window/reinforced{ dir = 8; @@ -20820,7 +20907,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nm" = ( +"aNm" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20847,7 +20934,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nn" = ( +"aNn" = ( /obj/structure/catwalk, /obj/structure/table/steel, /obj/machinery/alarm{ @@ -20858,7 +20945,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"No" = ( +"aNo" = ( /obj/machinery/light_construct{ icon_state = "tube-construct-stage1"; dir = 4 @@ -20866,7 +20953,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_bar_upper) -"Np" = ( +"aNp" = ( /obj/machinery/telecomms/bus/preset_one, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20874,7 +20961,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nq" = ( +"aNq" = ( /obj/machinery/telecomms/processor/preset_one, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20882,7 +20969,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nr" = ( +"aNr" = ( /obj/machinery/ntnet_relay, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -20891,7 +20978,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Ns" = ( +"aNs" = ( /obj/machinery/telecomms/processor/preset_three, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20899,7 +20986,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nt" = ( +"aNt" = ( /obj/machinery/telecomms/bus/preset_three, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -20907,17 +20994,13 @@ temperature = 80 }, /area/tcommsat/chamber) -"Nu" = ( -/obj/machinery/light{ +"aNu" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28 - }, -/turf/simulated/floor/reinforced, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nv" = ( +"aNv" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20938,7 +21021,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nw" = ( +"aNw" = ( /obj/machinery/door/window/brigdoor/eastleft{ name = "Slime Pen 7"; req_access = list(55) @@ -20952,7 +21035,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nx" = ( +"aNx" = ( /obj/machinery/door/window/brigdoor/westright{ name = "Slime Pen 8"; req_access = list(55) @@ -20966,7 +21049,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ny" = ( +"aNy" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -20987,10 +21070,10 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Nz" = ( +"aNz" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/paramed) -"NA" = ( +"aNA" = ( /obj/structure/catwalk, /obj/structure/table/steel, /obj/effect/decal/cleanable/dirt, @@ -20998,7 +21081,7 @@ /obj/item/weapon/flame/lighter/random, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"NB" = ( +"aNB" = ( /obj/item/device/radio/intercom{ dir = 8; pixel_x = -24 @@ -21010,7 +21093,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NC" = ( +"aNC" = ( /obj/machinery/telecomms/relay/preset/tether/base_mid, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -21019,7 +21102,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"ND" = ( +"aND" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -21040,7 +21123,7 @@ /obj/structure/grille, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NE" = ( +"aNE" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -21060,7 +21143,7 @@ /obj/structure/grille, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NF" = ( +"aNF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -21068,19 +21151,19 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"NG" = ( +"aNG" = ( /obj/structure/catwalk, /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"NH" = ( +"aNH" = ( /obj/structure/bed/double/padded, /obj/item/weapon/bedsheet/double, /obj/structure/curtain/open/privacy, /obj/effect/decal/cleanable/blood, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"NI" = ( +"aNI" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /obj/structure/cable/green{ @@ -21090,7 +21173,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_bar_upper) -"NJ" = ( +"aNJ" = ( /obj/machinery/telecomms/server/presets/science, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -21098,7 +21181,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NK" = ( +"aNK" = ( /obj/machinery/telecomms/server/presets/medical, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -21106,7 +21189,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NL" = ( +"aNL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 6 }, @@ -21116,7 +21199,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NM" = ( +"aNM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 9 }, @@ -21126,7 +21209,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NN" = ( +"aNN" = ( /obj/machinery/pda_multicaster/prebuilt, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -21134,7 +21217,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NO" = ( +"aNO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 5 }, @@ -21144,7 +21227,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NP" = ( +"aNP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 10 }, @@ -21154,7 +21237,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NQ" = ( +"aNQ" = ( /obj/machinery/telecomms/server/presets/command, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -21162,7 +21245,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"NR" = ( +"aNR" = ( /obj/machinery/telecomms/server/presets/security, /turf/simulated/floor/tiled/dark{ nitrogen = 100; @@ -21170,13 +21253,13 @@ temperature = 80 }, /area/tcommsat/chamber) -"NS" = ( +"aNS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NT" = ( +"aNT" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced/full, /obj/structure/window/phoronreinforced{ @@ -21198,13 +21281,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NU" = ( +"aNU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NV" = ( +"aNV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21213,11 +21296,11 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NW" = ( +"aNW" = ( /obj/structure/sign/deck/second, /turf/simulated/wall/r_wall, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NX" = ( +"aNX" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv8"; layer = 8; @@ -21225,25 +21308,25 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"NY" = ( +"aNY" = ( /obj/structure/catwalk, /obj/structure/bed/chair, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"NZ" = ( +"aNZ" = ( /obj/structure/catwalk, /obj/structure/bed/chair, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Oa" = ( +"aOa" = ( /obj/structure/catwalk, /obj/structure/table/steel, /obj/effect/decal/cleanable/dirt, /obj/item/weapon/flame/candle, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ob" = ( +"aOb" = ( /obj/structure/railing{ dir = 8 }, @@ -21256,7 +21339,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Oc" = ( +"aOc" = ( /obj/structure/railing{ dir = 1 }, @@ -21266,7 +21349,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Od" = ( +"aOd" = ( /obj/machinery/light/small, /obj/structure/railing{ dir = 4 @@ -21278,7 +21361,7 @@ /obj/random/trash_pile, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Oe" = ( +"aOe" = ( /obj/machinery/camera/network/tcomms{ dir = 1 }, @@ -21289,7 +21372,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Of" = ( +"aOf" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; external_pressure_bound = 140; @@ -21306,7 +21389,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Og" = ( +"aOg" = ( /obj/machinery/light, /turf/simulated/floor/bluegrid{ name = "Mainframe Base"; @@ -21315,7 +21398,7 @@ temperature = 80 }, /area/tcommsat/chamber) -"Oh" = ( +"aOh" = ( /obj/machinery/atmospherics/unary/vent_pump{ dir = 1; external_pressure_bound = 0; @@ -21336,14 +21419,14 @@ temperature = 80 }, /area/tcommsat/chamber) -"Oi" = ( +"aOi" = ( /obj/machinery/door/blast/regular{ id = "xenocont1"; name = "Slimes Containment Blast Door" }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Oj" = ( +"aOj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -21353,19 +21436,33 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ok" = ( -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "slime_pens"; - dir = 4; - pixel_x = -22 +"aOk" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv8"; + name = "Divider 8 Blast Doors"; + pixel_x = 30; + pixel_y = -5; + req_access = list(55) }, -/obj/machinery/camera/network/research/xenobio{ - dir = 4; - network = list("Xenobiology") +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen10"; + name = "Pen 10 Containment"; + pixel_x = 30; + pixel_y = 8 }, -/turf/simulated/floor/reinforced, +/obj/machinery/light{ + dir = 1 + }, +/obj/machinery/button/remote/airlock{ + id = "phoroncelldoor10"; + name = "Phoron Cell 10 Doorlock"; + pixel_x = 38; + pixel_y = 0; + specialfunctions = 4 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ol" = ( +"aOl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21385,7 +21482,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Om" = ( +"aOm" = ( /obj/structure/railing{ dir = 8 }, @@ -21397,7 +21494,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/south) -"On" = ( +"aOn" = ( /obj/structure/table/steel, /obj/random/medical/lite, /obj/machinery/alarm{ @@ -21407,19 +21504,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/atmos) -"Oo" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 8; - network = list("Xenobiology") +"aOo" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/machinery/alarm/monitor/isolation{ - alarm_id = "slime_pens"; - dir = 8; - pixel_x = 22 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"Op" = ( +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aOp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ @@ -21427,7 +21525,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Oq" = ( +"aOq" = ( /obj/structure/grille, /obj/structure/window/phoronreinforced/full, /obj/structure/window/phoronreinforced{ @@ -21452,20 +21550,20 @@ /obj/structure/disposalpipe/up, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Or" = ( +"aOr" = ( /obj/machinery/door/blast/regular{ id = "xenocont2"; name = "Slimes Containment Blast Door" }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Os" = ( +"aOs" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/maintenance/lower/atmos) -"Ot" = ( +"aOt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/research{ @@ -21479,7 +21577,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ou" = ( +"aOu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -21488,7 +21586,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ov" = ( +"aOv" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/stairs/north, @@ -21501,14 +21599,14 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Ow" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 8; - network = list("Xenobiology") +"aOw" = ( +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"Ox" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aOx" = ( /obj/machinery/light{ dir = 8 }, @@ -21520,7 +21618,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Oy" = ( +"aOy" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -21529,6 +21627,7 @@ opacity = 0 }, /obj/machinery/door/airlock/research{ + id_tag = "phoroncelldoor9"; name = "Slime Pen 9"; req_access = list(); req_one_access = list(47,55) @@ -21542,7 +21641,7 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Oz" = ( +"aOz" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -21551,6 +21650,7 @@ opacity = 0 }, /obj/machinery/door/airlock/research{ + id_tag = "phoroncelldoor10"; name = "Slime Pen 10"; req_access = list(); req_one_access = list(47,55) @@ -21564,12 +21664,12 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OA" = ( +"aOA" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OB" = ( +"aOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21590,7 +21690,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OC" = ( +"aOC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/research{ @@ -21601,7 +21701,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OD" = ( +"aOD" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -21627,7 +21727,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OE" = ( +"aOE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -21637,13 +21737,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OF" = ( +"aOF" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OG" = ( +"aOG" = ( /obj/machinery/door/blast/regular{ density = 0; icon_state = "pdoor0"; @@ -21669,7 +21769,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OH" = ( +"aOH" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -21690,7 +21790,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OI" = ( +"aOI" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21702,7 +21802,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OJ" = ( +"aOJ" = ( /obj/machinery/door/blast/regular{ id = "xenobiodiv7"; layer = 8; @@ -21710,49 +21810,38 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OK" = ( +"aOK" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "xeno_phoron_pen_scrubbers" }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OL" = ( -/obj/machinery/button/remote/blast_door{ - id = "xenobiodiv8"; - name = "Divider 8 Blast Doors"; - pixel_x = 30; - pixel_y = -5; - req_access = list(55) - }, -/obj/machinery/button/remote/blast_door{ - id = "xenobiopen10"; - name = "Pen 10 Containment"; - pixel_x = 30; - pixel_y = 8 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/machinery/camera/network/research{ - dir = 8 +"aOL" = ( +/obj/machinery/shieldwallgen, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 }, /turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"OM" = ( +/area/teleporter) +"aOM" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"ON" = ( -/obj/machinery/camera/network/research/xenobio{ - dir = 4; - network = list("Xenobiology") +"aON" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/box/cups, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 }, -/turf/simulated/floor/reinforced, -/area/rnd/outpost/xenobiology/outpost_slimepens) -"OO" = ( +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aOO" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -21773,7 +21862,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OP" = ( +"aOP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -21791,16 +21880,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OQ" = ( +"aOQ" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, +/obj/machinery/camera/network/research/xenobio, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OR" = ( +"aOR" = ( /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /obj/structure/window/reinforced{ @@ -21810,12 +21900,12 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OS" = ( +"aOS" = ( /obj/structure/stairs/east, /obj/structure/railing, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"OT" = ( +"aOT" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible/supply, @@ -21831,7 +21921,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/south) -"OU" = ( +"aOU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21841,79 +21931,154 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OV" = ( +"aOV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"OW" = ( -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"OX" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/woodentable, -/obj/item/weapon/folder/red, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"OY" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/bed/chair/comfy/black{ +"aOW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/yellow/border, +/obj/machinery/computer/atmos_alert{ + icon_state = "computer"; dir = 1 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"OZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/bed/chair/comfy/black{ +/obj/machinery/camera/network/engineering{ dir = 1 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"Pa" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 +/turf/simulated/floor/tiled, +/area/engineering/atmos/monitoring) +"aOX" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/engineering{ + dir = 1 }, -/turf/simulated/floor/carpet/purcarpet, -/area/bridge/secondary/meeting_room) -"Pb" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 +/turf/simulated/open, +/area/engineering/atmos) +"aOY" = ( +/obj/structure/railing{ + icon_state = "railing0"; + dir = 1 }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pc" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pe" = ( -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pf" = ( -/obj/machinery/camera/network/command{ +/obj/machinery/camera/network/engineering{ dir = 8 }, -/obj/structure/reagent_dispensers/water_cooler/full, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pg" = ( -/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/engineering/atmos) +"aOZ" = ( +/obj/effect/floor_decal/techfloor/corner, +/obj/machinery/drone_fabricator{ + fabricator_tag = "Atmos" + }, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, +/turf/simulated/floor/tiled/techfloor/grid, +/area/engineering/drone_fabrication) +"aPa" = ( +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/structure/disposaloutlet{ + dir = 8 + }, +/obj/machinery/camera/network/research/xenobio{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPc" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/structure/disposaloutlet{ + dir = 4 + }, +/obj/machinery/camera/network/research/xenobio{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPd" = ( +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "xeno_phoron_pen_scrubbers" + }, +/obj/machinery/camera/network/research/xenobio{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aPe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) +"aPf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lowerhallway) +"aPg" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 + }, +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/evidence) +"aPh" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/security/lowerhallway) +"aPi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/cable/green{ @@ -21921,120 +22086,222 @@ d2 = 8; icon_state = "4-8" }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 1; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/maintenance/command, -/turf/simulated/floor/plating, -/area/bridge/secondary/meeting_room) -"Ph" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/pipe/simple/hidden/green{ + icon_state = "intact"; dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/brig) +"aPj" = ( +/obj/machinery/camera/network/interrogation, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/interrogation) +"aPk" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -28 + }, /obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" + icon_state = "0-4" }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor, +/area/maintenance/lower/security) +"aPl" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Warden's Office" + }, +/obj/item/device/radio/intercom/department/security{ + dir = 8; + icon_state = "secintercom"; + pixel_x = -24; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 10 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/warden) +"aPm" = ( +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 1 + }, +/obj/effect/floor_decal/corner/lightorange{ + icon_state = "corner_white"; + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/table/steel, +/obj/item/weapon/paper, +/obj/item/weapon/pen/blue{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/solitary) +"aPn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/resleeving) +"aPo" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aPp" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aPq" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aPr" = ( +/obj/structure/table/bench/standard, +/obj/effect/landmark/start{ + name = "Medical Doctor" + }, +/obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 9 }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pk" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/cups, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/breakroom) +"aPs" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pl" = ( -/obj/structure/cable/green, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 10 }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pm" = ( -/obj/structure/table/woodentable, -/obj/machinery/newscaster{ - pixel_x = 28 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pn" = ( -/obj/machinery/keycard_auth{ - pixel_x = -24 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Po" = ( -/obj/machinery/keycard_auth{ - pixel_x = 24 - }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pp" = ( -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/borderfloorwhite/corner2{ dir = 8 }, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pq" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pr" = ( -/obj/structure/stairs/south, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Ps" = ( -/obj/structure/table/woodentable, -/obj/structure/window/reinforced{ +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ dir = 8 }, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pt" = ( -/obj/structure/table/woodentable, -/obj/machinery/light, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pu" = ( -/obj/structure/filingcabinet/chestdrawer, -/turf/simulated/floor/wood, -/area/bridge/secondary/meeting_room) -"Pv" = ( +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lowerhall) +"aPt" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/white/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + dir = 9; + icon_state = "bordercolorcorner2" + }, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/surgery) +"aPu" = ( +/obj/structure/morgue, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aPv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22043,7 +22310,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Pw" = ( +"aPw" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -38 }, @@ -22052,7 +22319,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Px" = ( +"aPx" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/light{ dir = 4 @@ -22064,7 +22331,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Py" = ( +"aPy" = ( /obj/machinery/light, /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "xeno_phoron_pen_scrubbers" @@ -22077,27 +22344,27 @@ }, /turf/simulated/floor/reinforced, /area/rnd/outpost/xenobiology/outpost_slimepens) -"Pz" = ( +"aPz" = ( /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/lowerhall) -"PA" = ( +"aPA" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"PB" = ( +"aPB" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"PC" = ( +"aPC" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/lowerhall) -"PD" = ( +"aPD" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22111,14 +22378,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"PE" = ( +"aPE" = ( /obj/effect/floor_decal/industrial/loading{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"PF" = ( +"aPF" = ( /obj/machinery/optable, /obj/machinery/light{ dir = 4 @@ -22126,14 +22393,14 @@ /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"PG" = ( +"aPG" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"PH" = ( +"aPH" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22148,7 +22415,7 @@ /obj/item/weapon/storage/firstaid/surgery, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"PI" = ( +"aPI" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22157,28 +22424,28 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"PJ" = ( +"aPJ" = ( /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"PK" = ( +"aPK" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"PL" = ( +"aPL" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"PM" = ( +"aPM" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22197,7 +22464,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"PN" = ( +"aPN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan, /obj/effect/floor_decal/techfloor{ dir = 8 @@ -22208,14 +22475,14 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"PO" = ( +"aPO" = ( /obj/machinery/atmospherics/unary/freezer, /obj/effect/floor_decal/techfloor{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"PP" = ( +"aPP" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, @@ -22230,7 +22497,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"PQ" = ( +"aPQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -22241,7 +22508,7 @@ /obj/item/weapon/storage/box/nifsofts_medical, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"PR" = ( +"aPR" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -22256,7 +22523,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"PS" = ( +"aPS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -22271,17 +22538,23 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"PT" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +"aPT" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/pen/blue{ + pixel_x = 2; + pixel_y = 1 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 +/obj/item/weapon/paper_bin{ + pixel_x = -2; + pixel_y = 8 }, -/obj/machinery/vending/medical, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"PU" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aPU" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -22294,7 +22567,7 @@ /obj/structure/bedsheetbin, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"PV" = ( +"aPV" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 }, @@ -22309,10 +22582,9 @@ /obj/item/weapon/tool/wrench, /obj/item/weapon/storage/briefcase/inflatable, /obj/item/weapon/storage/briefcase/inflatable, -/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"PW" = ( +"aPW" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -22324,7 +22596,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) -"PX" = ( +"aPX" = ( /obj/machinery/alarm{ pixel_x = 0; pixel_y = 28 @@ -22337,7 +22609,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) -"PY" = ( +"aPY" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -22361,7 +22633,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) -"PZ" = ( +"aPZ" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -22377,7 +22649,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Qa" = ( +"aQa" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -22392,7 +22664,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Qb" = ( +"aQb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -22401,7 +22673,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Qc" = ( +"aQc" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -22413,7 +22685,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Qd" = ( +"aQd" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -22423,7 +22695,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Qe" = ( +"aQe" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22437,7 +22709,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Qf" = ( +"aQf" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, @@ -22445,11 +22717,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Qg" = ( +"aQg" = ( /obj/machinery/computer/operating, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Qh" = ( +"aQh" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, @@ -22459,7 +22731,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Qi" = ( +"aQi" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22474,7 +22746,7 @@ /obj/item/device/healthanalyzer, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Qj" = ( +"aQj" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 4 }, @@ -22489,13 +22761,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Qk" = ( +"aQk" = ( /obj/structure/bed/chair/office/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Ql" = ( +"aQl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 5; icon_state = "intact" @@ -22509,7 +22781,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Qm" = ( +"aQm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 4; icon_state = "intact" @@ -22520,7 +22792,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Qn" = ( +"aQn" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, @@ -22537,7 +22809,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Qo" = ( +"aQo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ id_tag = null; @@ -22556,7 +22828,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Qp" = ( +"aQp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/cyan, /obj/effect/floor_decal/techfloor{ dir = 8 @@ -22569,7 +22841,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"Qq" = ( +"aQq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/cyan{ dir = 9; icon_state = "intact" @@ -22594,7 +22866,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"Qr" = ( +"aQr" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22603,10 +22875,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Qs" = ( +"aQs" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Qt" = ( +"aQt" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22619,11 +22891,13 @@ /obj/item/weapon/storage/box/rxglasses, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Qu" = ( -/obj/machinery/suit_cycler/medical, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/paramed) -"Qv" = ( +"aQu" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aQv" = ( /obj/structure/table/rack, /obj/item/clothing/suit/space/void/medical/emt, /obj/item/clothing/head/helmet/space/void/medical/emt, @@ -22635,7 +22909,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) -"Qw" = ( +"aQw" = ( /obj/structure/extinguisher_cabinet{ dir = 1; icon_state = "extinguisher_closed"; @@ -22655,7 +22929,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) -"Qx" = ( +"aQx" = ( /obj/machinery/door/airlock/medical{ name = "EMT Closet" }, @@ -22673,7 +22947,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/paramed) -"Qy" = ( +"aQy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22691,7 +22965,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Qz" = ( +"aQz" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22709,7 +22983,7 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QA" = ( +"aQA" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22725,7 +22999,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QB" = ( +"aQB" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22745,7 +23019,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QC" = ( +"aQC" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -22763,7 +23037,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QD" = ( +"aQD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -22778,7 +23052,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QE" = ( +"aQE" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22806,7 +23080,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QF" = ( +"aQF" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22820,7 +23094,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QG" = ( +"aQG" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22837,7 +23111,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QH" = ( +"aQH" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22846,7 +23120,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QI" = ( +"aQI" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22869,7 +23143,7 @@ /obj/item/weapon/reagent_containers/blood/OMinus, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QJ" = ( +"aQJ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22883,10 +23157,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"QK" = ( +"aQK" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"QL" = ( +"aQL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -22896,7 +23170,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"QM" = ( +"aQM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22904,7 +23178,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"QN" = ( +"aQN" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22928,7 +23202,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"QO" = ( +"aQO" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/techfloor{ dir = 8 @@ -22938,7 +23212,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"QP" = ( +"aQP" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -22949,7 +23223,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"QQ" = ( +"aQQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -22963,7 +23237,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"QR" = ( +"aQR" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -22979,7 +23253,7 @@ /obj/item/weapon/storage/belt/medical, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"QS" = ( +"aQS" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, @@ -22991,7 +23265,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QT" = ( +"aQT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23002,7 +23276,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QU" = ( +"aQU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass/hidden/steel, @@ -23014,7 +23288,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"QV" = ( +"aQV" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -23030,22 +23304,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QW" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/white/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - dir = 9; - icon_state = "bordercolorcorner2" - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/surgery) -"QX" = ( +"aQW" = ( +/obj/structure/table/bench/padded, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aQX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -23061,7 +23325,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QY" = ( +"aQY" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/white/border, /obj/effect/floor_decal/borderfloorwhite/corner2, @@ -23074,7 +23338,7 @@ /obj/machinery/iv_drip, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"QZ" = ( +"aQZ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -23084,24 +23348,14 @@ /obj/structure/closet/secure_closet/medical2, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Ra" = ( -/obj/structure/bed/chair{ +"aRa" = ( +/obj/structure/table/bench/padded, +/obj/machinery/camera/network/civilian{ dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/resleeving) -"Rb" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aRb" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/borderfloorwhite/corner2{ @@ -23129,7 +23383,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Rc" = ( +"aRc" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 }, @@ -23145,45 +23399,15 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Rd" = ( -/obj/structure/closet{ - name = "spare clothes" - }, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/under/color/white, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/lightpurple, -/obj/item/clothing/under/color/yellow, -/obj/item/clothing/under/color/lightred, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/blue, -/obj/item/clothing/shoes/green, -/obj/item/clothing/shoes/purple, -/obj/item/clothing/shoes/yellow, -/obj/item/clothing/shoes/red, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, +"aRd" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/effect/floor_decal/borderfloorwhite/corner2, /obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/machinery/vending/loadout/uniform, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Re" = ( +"aRe" = ( /obj/structure/table/glass, /obj/item/weapon/book/manual/resleeving, /obj/item/device/radio/intercom{ @@ -23209,7 +23433,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Rf" = ( +"aRf" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/techfloor{ dir = 10 @@ -23219,7 +23443,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"Rg" = ( +"aRg" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -23240,7 +23464,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/medical/resleeving) -"Rh" = ( +"aRh" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -23254,7 +23478,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Ri" = ( +"aRi" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/o2{ pixel_x = 5; @@ -23270,13 +23494,13 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Rj" = ( +"aRj" = ( /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Rk" = ( +"aRk" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/adv{ pixel_x = 5; @@ -23289,7 +23513,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Rl" = ( +"aRl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -23307,7 +23531,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Rm" = ( +"aRm" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -23317,7 +23541,7 @@ }, /turf/simulated/floor, /area/maintenance/lower/north) -"Rn" = ( +"aRn" = ( /obj/structure/catwalk, /obj/structure/extinguisher_cabinet{ pixel_y = 30 @@ -23329,7 +23553,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"Ro" = ( +"aRo" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23350,7 +23574,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Rp" = ( +"aRp" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23359,7 +23583,7 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"Rq" = ( +"aRq" = ( /obj/machinery/light/small, /obj/structure/cable/green{ d1 = 4; @@ -23369,7 +23593,7 @@ /obj/structure/catwalk, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"Rr" = ( +"aRr" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23383,7 +23607,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Rs" = ( +"aRs" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -23396,7 +23620,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Rt" = ( +"aRt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/borderfloorwhite{ @@ -23407,7 +23631,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Ru" = ( +"aRu" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -23415,7 +23639,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/surgery) -"Rv" = ( +"aRv" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/medical{ name = "Operating Theatre 2"; @@ -23430,7 +23654,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/surgery) -"Rw" = ( +"aRw" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -23438,7 +23662,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/resleeving) -"Rx" = ( +"aRx" = ( /obj/machinery/door/airlock/medical{ id_tag = "SurfMedicalResleeving"; name = "Resleeving Lab"; @@ -23454,7 +23678,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/resleeving) -"Ry" = ( +"aRy" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -23465,19 +23689,19 @@ /obj/item/weapon/soap/nanotrasen, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Rz" = ( +"aRz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RA" = ( +"aRA" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RB" = ( +"aRB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RC" = ( +"aRC" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -23498,7 +23722,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RD" = ( +"aRD" = ( /obj/structure/railing{ dir = 8 }, @@ -23512,19 +23736,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"RE" = ( -/obj/machinery/camera/network/medbay{ +"aRE" = ( +/obj/machinery/camera/network/civilian{ dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"RF" = ( +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/fish_farm) +"aRF" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -23535,7 +23753,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RG" = ( +"aRG" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23556,7 +23774,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RH" = ( +"aRH" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23581,7 +23799,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RI" = ( +"aRI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23601,7 +23819,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RJ" = ( +"aRJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23627,7 +23845,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RK" = ( +"aRK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ @@ -23648,7 +23866,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RL" = ( +"aRL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23674,7 +23892,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RM" = ( +"aRM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23699,7 +23917,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RN" = ( +"aRN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23719,7 +23937,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RO" = ( +"aRO" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access" }, @@ -23731,7 +23949,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"RP" = ( +"aRP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23756,7 +23974,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RQ" = ( +"aRQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -23768,23 +23986,17 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"RR" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +"aRR" = ( +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 5 +/obj/machinery/camera/network/tether{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"RS" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/east_stairs_two) +"aRS" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -23798,7 +24010,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RT" = ( +"aRT" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/toxin{ pixel_x = 5; @@ -23812,7 +24024,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RU" = ( +"aRU" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/fire{ pixel_x = 5; @@ -23828,19 +24040,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"RV" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/structure/bed/chair/wheelchair{ +"aRV" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/storage) -"RW" = ( +/obj/machinery/camera/network/tether{ + dir = 5 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aRW" = ( /obj/structure/catwalk, /obj/structure/cable/green{ d1 = 1; @@ -23854,7 +24063,7 @@ }, /turf/simulated/floor, /area/maintenance/lower/north) -"RX" = ( +"aRX" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -23866,7 +24075,7 @@ }, /turf/simulated/floor, /area/maintenance/lower/north) -"RY" = ( +"aRY" = ( /obj/structure/railing{ dir = 8 }, @@ -23878,10 +24087,10 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"RZ" = ( +"aRZ" = ( /turf/simulated/floor/plating, /area/tether/surfacebase/outside/outside2) -"Sa" = ( +"aSa" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -23890,12 +24099,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sb" = ( +"aSb" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sc" = ( +"aSc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -23911,13 +24120,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sd" = ( +"aSd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Se" = ( +"aSe" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -23925,7 +24134,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sf" = ( +"aSf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23948,7 +24157,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sg" = ( +"aSg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -23963,7 +24172,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sh" = ( +"aSh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23977,7 +24186,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Si" = ( +"aSi" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 @@ -23993,7 +24202,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sj" = ( +"aSj" = ( /obj/machinery/door/airlock/glass_medical{ name = "Medbay Equipment"; req_access = list(5) @@ -24012,7 +24221,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Sk" = ( +"aSk" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, @@ -24032,7 +24241,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Sl" = ( +"aSl" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24046,7 +24255,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Sm" = ( +"aSm" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -24061,7 +24270,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Sn" = ( +"aSn" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -24072,13 +24281,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"So" = ( +"aSo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Sp" = ( +"aSp" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -24090,7 +24299,7 @@ /obj/random/medical, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"Sq" = ( +"aSq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24099,16 +24308,16 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/storage) -"Sr" = ( +"aSr" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/breakroom) -"Ss" = ( +"aSs" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/breakroom) -"St" = ( +"aSt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -24124,18 +24333,18 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Su" = ( +"aSu" = ( /obj/effect/floor_decal/borderfloorwhite/corner, /obj/effect/floor_decal/corner/paleblue/bordercorner, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sv" = ( +"aSv" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sw" = ( +"aSw" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/power/apc{ @@ -24147,16 +24356,10 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sx" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"Sy" = ( +"aSx" = ( +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aSy" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -24174,7 +24377,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Sz" = ( +"aSz" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -24184,7 +24387,7 @@ /obj/machinery/portable_atmospherics/canister/oxygen, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"SA" = ( +"aSA" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/dispenser{ @@ -24192,12 +24395,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"SB" = ( +"aSB" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"SC" = ( +"aSC" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/power/apc{ @@ -24209,7 +24412,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"SD" = ( +"aSD" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/table/standard, @@ -24217,7 +24420,7 @@ /obj/item/clothing/mask/muzzle, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"SE" = ( +"aSE" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -24233,20 +24436,14 @@ /obj/item/bodybag/cryobag, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/storage) -"SF" = ( -/obj/structure/table/bench/standard, -/obj/effect/landmark/start{ - name = "Medical Doctor" +"aSF" = ( +/obj/effect/floor_decal/techfloor{ + dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/breakroom) -"SG" = ( +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) +"aSG" = ( /obj/structure/table/bench/standard, /obj/machinery/power/apc{ dir = 1; @@ -24269,7 +24466,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SH" = ( +"aSH" = ( /obj/structure/table/bench/standard, /obj/effect/landmark/start{ name = "Medical Doctor" @@ -24282,7 +24479,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SI" = ( +"aSI" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -24291,7 +24488,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SJ" = ( +"aSJ" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -24310,7 +24507,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SK" = ( +"aSK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -24332,19 +24529,19 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"SL" = ( -/obj/machinery/camera/network/medbay{ - dir = 8 +"aSL" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 +/obj/machinery/camera/network/tether{ + dir = 9 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"SM" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aSM" = ( /obj/structure/table/standard, /obj/machinery/firealarm{ dir = 8; @@ -24359,7 +24556,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SN" = ( +"aSN" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; @@ -24368,7 +24565,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SO" = ( +"aSO" = ( /obj/structure/table/standard, /obj/structure/cable/green{ d1 = 4; @@ -24378,7 +24575,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SP" = ( +"aSP" = ( /obj/machinery/hologram/holopad, /obj/structure/cable/green{ d1 = 4; @@ -24393,7 +24590,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SQ" = ( +"aSQ" = ( /obj/machinery/light_switch{ dir = 8; on = 0; @@ -24413,7 +24610,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SR" = ( +"aSR" = ( /obj/machinery/door/airlock/glass_medical{ name = "Staff Room"; req_access = list(5) @@ -24432,7 +24629,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SS" = ( +"aSS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -24458,7 +24655,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"ST" = ( +"aST" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -24472,24 +24669,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"SU" = ( -/obj/structure/table/bench/standard, -/obj/effect/landmark/start{ - name = "Medical Doctor" +"aSU" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - icon_state = "intact-supply"; - dir = 5 +/obj/machinery/camera/network/tether{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/breakroom) -"SV" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aSV" = ( /obj/structure/table/bench/standard, /obj/effect/landmark/start{ name = "Medical Doctor" @@ -24505,7 +24694,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SW" = ( +"aSW" = ( /obj/structure/table/bench/standard, /obj/effect/landmark/start{ name = "Medical Doctor" @@ -24521,7 +24710,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SX" = ( +"aSX" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -24537,7 +24726,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SY" = ( +"aSY" = ( /obj/machinery/vending/fitness, /obj/effect/floor_decal/borderfloorwhite{ dir = 6 @@ -24553,34 +24742,29 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/breakroom) -"SZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ +"aSZ" = ( +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ +/obj/effect/floor_decal/corner/green/border{ dir = 8 }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/lowerhall) -"Ta" = ( +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aTa" = ( /obj/machinery/light/small, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tb" = ( +"aTb" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tc" = ( +"aTc" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access" }, @@ -24589,13 +24773,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/medical/lowerhall) -"Td" = ( +"aTd" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"Te" = ( +"aTe" = ( /obj/structure/catwalk, /obj/machinery/light/small{ icon_state = "bulb1"; @@ -24603,7 +24787,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"Tf" = ( +"aTf" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "4-8" @@ -24612,7 +24796,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"Tg" = ( +"aTg" = ( /obj/structure/catwalk, /obj/structure/disposalpipe/segment{ dir = 4 @@ -24622,12 +24806,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/mining) -"Th" = ( +"aTh" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"Ti" = ( +"aTi" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/door/firedoor/glass/hidden/steel{ @@ -24635,7 +24819,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tj" = ( +"aTj" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/alarm{ @@ -24645,7 +24829,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tk" = ( +"aTk" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/machinery/firealarm{ @@ -24655,7 +24839,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tl" = ( +"aTl" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -24673,13 +24857,13 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tm" = ( +"aTm" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"Tn" = ( +"aTn" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -24697,7 +24881,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lowerhall) -"To" = ( +"aTo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -24706,7 +24890,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Tp" = ( +"aTp" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -24720,34 +24904,17 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Tq" = ( -/obj/structure/closet/secure_closet/warden, -/obj/item/weapon/gun/projectile/shotgun/pump/combat{ - ammo_type = /obj/item/ammo_casing/a12g/beanbag; - desc = "Built for close quarters combat, the Hesphaistos Industries KS-40 is widely regarded as a weapon of choice for repelling boarders. This one has 'Property of the Warden' inscribed on the stock."; - name = "warden's shotgun" +"aTq" = ( +/obj/effect/floor_decal/borderfloor, +/obj/machinery/camera/network/tether{ + dir = 1 }, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 24 - }, -/obj/structure/cable/green{ - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/warden) -"Tr" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aTr" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lowerhallway) -"Ts" = ( +"aTs" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24756,10 +24923,10 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/lowerhallway) -"Tt" = ( +"aTt" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/solitary) -"Tu" = ( +"aTu" = ( /obj/machinery/computer/secure_data{ dir = 4 }, @@ -24776,7 +24943,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Tv" = ( +"aTv" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Warden" @@ -24788,7 +24955,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Tw" = ( +"aTw" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -24807,7 +24974,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Tx" = ( +"aTx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -24816,7 +24983,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Ty" = ( +"aTy" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -24826,7 +24993,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Tz" = ( +"aTz" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -24834,7 +25001,7 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/warden) -"TA" = ( +"aTA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 @@ -24858,7 +25025,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TB" = ( +"aTB" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ dir = 1; @@ -24870,7 +25037,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"TC" = ( +"aTC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -24882,7 +25049,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TD" = ( +"aTD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -24894,7 +25061,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TE" = ( +"aTE" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -24908,7 +25075,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TF" = ( +"aTF" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -24923,7 +25090,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TG" = ( +"aTG" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -24943,7 +25110,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TH" = ( +"aTH" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -24956,7 +25123,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TI" = ( +"aTI" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -24978,7 +25145,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) -"TJ" = ( +"aTJ" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -24998,35 +25165,15 @@ /obj/structure/bed/padded, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) -"TK" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; +"aTK" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ dir = 1 }, -/obj/effect/floor_decal/corner/lightorange/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 1 - }, -/obj/effect/floor_decal/corner/lightorange{ - icon_state = "corner_white"; - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/structure/table/steel, -/obj/item/weapon/paper, -/obj/item/weapon/pen/blue{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/solitary) -"TL" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/storage) +"aTL" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -25044,39 +25191,26 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TM" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Warden's Office" +"aTM" = ( +/obj/machinery/camera/network/tether{ + dir = 9 }, -/obj/item/device/radio/intercom/department/security{ - dir = 8; - icon_state = "secintercom"; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 10 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/warden) -"TN" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/north_staires_two) +"aTN" = ( /obj/structure/table/reinforced, /obj/item/device/retail_scanner/security, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"TO" = ( +"aTO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"TP" = ( +"aTP" = ( /obj/structure/table/reinforced, /obj/item/weapon/stamp/ward, /obj/item/weapon/stamp/denied{ @@ -25091,7 +25225,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"TQ" = ( +"aTQ" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -25112,7 +25246,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) -"TR" = ( +"aTR" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, @@ -25132,7 +25266,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TS" = ( +"aTS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -25148,23 +25282,22 @@ /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +"aTT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) -"TU" = ( +/area/tether/surfacebase/security/solitary) +"aTU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25178,7 +25311,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TV" = ( +"aTV" = ( /obj/structure/cable/green{ icon_state = "1-2" }, @@ -25188,7 +25321,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TW" = ( +"aTW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25205,7 +25338,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TX" = ( +"aTX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25226,7 +25359,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"TY" = ( +"aTY" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25243,7 +25376,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) -"TZ" = ( +"aTZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -25261,38 +25394,24 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/solitary) -"Ua" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aUa" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/solitary) -"Ub" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside2) +"aUb" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; dir = 9 }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/solitary) -"Uc" = ( +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside2) +"aUc" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/gasstorage) -"Ud" = ( +"aUd" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -25311,7 +25430,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Ue" = ( +"aUe" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -25327,7 +25446,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Uf" = ( +"aUf" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -25348,7 +25467,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Ug" = ( +"aUg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -25356,7 +25475,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Uh" = ( +"aUh" = ( /obj/machinery/door/airlock/glass_security{ name = "Warden's Office"; req_access = list(3) @@ -25373,7 +25492,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"Ui" = ( +"aUi" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -25398,25 +25517,17 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Uj" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aUj" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) -"Uk" = ( +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside2) +"aUk" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/evidence) -"Ul" = ( +"aUl" = ( /obj/machinery/door/airlock/security{ name = "Evidence Storage"; req_access = newlist(); @@ -25428,13 +25539,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"Um" = ( +"aUm" = ( /obj/machinery/atmospherics/portables_connector{ dir = 4 }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"Un" = ( +"aUn" = ( /obj/machinery/atmospherics/binary/pump{ dir = 4 }, @@ -25443,14 +25554,14 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"Uo" = ( +"aUo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 10 }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"Up" = ( +"aUp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25476,10 +25587,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Uq" = ( +"aUq" = ( /turf/simulated/floor, /area/tether/surfacebase/outside/outside2) -"Ur" = ( +"aUr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -25490,14 +25601,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Us" = ( +"aUs" = ( /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lowerhallway) -"Ut" = ( +"aUt" = ( /obj/structure/stairs/east, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/security/lowerhallway) -"Uu" = ( +"aUu" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 }, @@ -25513,7 +25624,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"Uv" = ( +"aUv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -25521,7 +25632,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"Uw" = ( +"aUw" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -25537,7 +25648,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"Ux" = ( +"aUx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -25553,7 +25664,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"Uy" = ( +"aUy" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, @@ -25565,14 +25676,14 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"Uz" = ( +"aUz" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ icon_state = "n2o_map"; dir = 4 }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"UA" = ( +"aUA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/green{ icon_state = "map"; dir = 1 @@ -25580,14 +25691,14 @@ /obj/machinery/meter, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"UB" = ( +"aUB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/green, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"UC" = ( +"aUC" = ( /obj/machinery/atmospherics/valve/digital{ dir = 4 }, @@ -25604,7 +25715,7 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"UD" = ( +"aUD" = ( /obj/machinery/door/airlock/maintenance/sec{ name = "Riot Control"; req_access = list(1) @@ -25628,26 +25739,15 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"UE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; +"aUE" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) -"UF" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/rnd) +"aUF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 4 @@ -25671,7 +25771,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"UG" = ( +"aUG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -25695,7 +25795,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"UH" = ( +"aUH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 }, @@ -25704,37 +25804,54 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"UI" = ( +"aUI" = ( /obj/effect/floor_decal/borderfloorblack, /obj/structure/closet{ name = "Evidence Closet" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/evidence) -"UJ" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/closet{ - name = "Evidence Closet" +"aUJ" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv5"; + name = "Divider 5 Blast Doors"; + pixel_x = -30; + pixel_y = 0; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen5"; + name = "Pen 5 Containment"; + pixel_x = -22; + pixel_y = 8; + req_access = list(55) + }, +/obj/machinery/light{ + dir = 8; + icon_state = "tube1"; + pixel_y = 0 + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen7"; + name = "Pen 7 Containment"; + pixel_x = -22; + pixel_y = -8; + req_access = list(55) }, /obj/machinery/alarm{ - alarm_id = null; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 + dir = 4; + pixel_x = -35; + pixel_y = 0 }, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/evidence) -"UK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 6 +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aUK" = ( +/obj/machinery/light{ + dir = 8 }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/evidence) -"UL" = ( +/turf/simulated/floor/reinforced, +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aUL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 9 @@ -25746,7 +25863,7 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"UM" = ( +"aUM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 4 @@ -25770,10 +25887,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/brig) -"UN" = ( +"aUN" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/brig) -"UO" = ( +"aUO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -25789,7 +25906,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"UP" = ( +"aUP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 10 @@ -25808,16 +25925,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"UQ" = ( +"aUQ" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/interrogation) -"UR" = ( +"aUR" = ( /turf/simulated/wall/r_wall, /area/maintenance/lower/security) -"US" = ( +"aUS" = ( /turf/simulated/wall, /area/maintenance/lower/security) -"UT" = ( +"aUT" = ( /obj/machinery/door/airlock/engineering{ name = "MedSec Substation" }, @@ -25828,7 +25945,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/substation/medsec) -"UU" = ( +"aUU" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -25846,7 +25963,7 @@ }, /turf/simulated/floor, /area/maintenance/substation/medsec) -"UV" = ( +"aUV" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -25865,7 +25982,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"UW" = ( +"aUW" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -25886,12 +26003,12 @@ /obj/item/weapon/bedsheet, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"UX" = ( +"aUX" = ( /obj/machinery/atmospherics/unary/outlet_injector, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"UY" = ( +"aUY" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ icon_state = "0-4" @@ -25918,7 +26035,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/brig) -"UZ" = ( +"aUZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -25948,7 +26065,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Va" = ( +"aVa" = ( /obj/structure/cable/green{ icon_state = "1-2" }, @@ -25967,7 +26084,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Vb" = ( +"aVb" = ( /obj/machinery/door/airlock/security{ name = "Observation"; req_one_access = list(1,4) @@ -25986,7 +26103,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Vc" = ( +"aVc" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26006,7 +26123,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Vd" = ( +"aVd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26023,7 +26140,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Ve" = ( +"aVe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26044,7 +26161,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Vf" = ( +"aVf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -26078,11 +26195,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Vg" = ( +"aVg" = ( /obj/machinery/recharge_station, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vh" = ( +"aVh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -26091,7 +26208,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vi" = ( +"aVi" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -26117,14 +26234,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Vj" = ( +"aVj" = ( /obj/effect/landmark{ name = "lightsout" }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vk" = ( +"aVk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -26135,7 +26252,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vl" = ( +"aVl" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26169,19 +26286,52 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vm" = ( +"aVm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aVn" = ( +/obj/machinery/button/remote/blast_door{ + id = "xenobiodiv7"; + name = "Divider 7 Blast Doors"; + pixel_x = -30; + pixel_y = -5; + req_access = list(55) + }, +/obj/machinery/button/remote/blast_door{ + id = "xenobiopen9"; + name = "Pen 9 Containment"; + pixel_x = -30; + pixel_y = 8 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" + }, +/obj/machinery/power/apc/super{ + dir = 1; + pixel_y = 24 + }, +/obj/machinery/button/remote/airlock{ + id = "phoroncelldoor9"; + name = "Phoron Cell 9 Doorlock"; + pixel_x = -38; + pixel_y = 0; + specialfunctions = 4 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 0; + pixel_y = 38 }, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"Vo" = ( +/area/rnd/outpost/xenobiology/outpost_slimepens) +"aVo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -26190,7 +26340,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vp" = ( +"aVp" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -26209,7 +26359,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vq" = ( +"aVq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 4 @@ -26234,7 +26384,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Vr" = ( +"aVr" = ( /obj/machinery/door/airlock/maintenance/sec{ name = "Riot Control"; req_access = list(1) @@ -26253,7 +26403,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor, /area/tether/surfacebase/security/interrogation) -"Vs" = ( +"aVs" = ( /obj/structure/railing{ dir = 4 }, @@ -26269,7 +26419,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"Vt" = ( +"aVt" = ( /obj/structure/catwalk, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -26278,18 +26428,33 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"Vu" = ( -/obj/structure/bed/chair, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +"aVu" = ( +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Command Subgrid"; + name_tag = "Command Subgrid" + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/interrogation) -"Vv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aVv" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Vw" = ( +"aVw" = ( /obj/structure/bed/chair, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -26299,7 +26464,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Vx" = ( +"aVx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -26311,13 +26476,13 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vy" = ( +"aVy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Vz" = ( +"aVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 5 @@ -26339,7 +26504,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VA" = ( +"aVA" = ( /obj/structure/catwalk, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -26349,7 +26514,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"VB" = ( +"aVB" = ( /obj/structure/catwalk, /obj/structure/cable{ icon_state = "2-4" @@ -26365,14 +26530,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/maintenance/lower/north) -"VC" = ( +"aVC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VD" = ( +"aVD" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -26392,7 +26557,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"VE" = ( +"aVE" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26406,7 +26571,7 @@ }, /turf/simulated/floor, /area/maintenance/lower/security) -"VF" = ( +"aVF" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -26430,7 +26595,7 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/interrogation) -"VG" = ( +"aVG" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -26450,7 +26615,7 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/interrogation) -"VH" = ( +"aVH" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/polarized/full{ @@ -26474,14 +26639,10 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/interrogation) -"VI" = ( -/obj/machinery/vending/hydronutrients, +"aVJ" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VJ" = ( -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"VK" = ( +"aVK" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/pipe/manifold/hidden/green{ icon_state = "map"; @@ -26489,7 +26650,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VL" = ( +"aVL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 10 @@ -26500,7 +26661,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VM" = ( +"aVM" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d2 = 2; @@ -26520,7 +26681,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/brig) -"VN" = ( +"aVN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -26529,7 +26690,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VO" = ( +"aVO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26546,19 +26707,19 @@ }, /turf/simulated/floor, /area/maintenance/lower/security) -"VP" = ( +"aVP" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"VQ" = ( +"aVQ" = ( /obj/machinery/seed_storage/garden, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VR" = ( +"aVR" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/machinery/atmospherics/pipe/simple/hidden/green, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VS" = ( +"aVS" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -26579,7 +26740,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/brig) -"VT" = ( +"aVT" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -26598,7 +26759,7 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VU" = ( +"aVU" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26614,25 +26775,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/green{ - icon_state = "intact"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/brig) -"VW" = ( +"aVW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26648,7 +26791,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"VX" = ( +"aVX" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26668,7 +26811,7 @@ }, /turf/simulated/floor, /area/maintenance/lower/security) -"VY" = ( +"aVY" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26682,7 +26825,7 @@ }, /turf/simulated/floor, /area/maintenance/lower/security) -"VZ" = ( +"aVZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -26705,19 +26848,19 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Wa" = ( +"aWa" = ( /obj/structure/bed/chair{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Wb" = ( +"aWb" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Wc" = ( +"aWc" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -26727,20 +26870,20 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Wd" = ( +"aWd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"We" = ( +"aWe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wf" = ( +"aWf" = ( /obj/machinery/atmospherics/unary/outlet_injector{ icon_state = "map_injector"; dir = 1 @@ -26748,7 +26891,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wg" = ( +"aWg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -26758,7 +26901,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wh" = ( +"aWh" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26783,10 +26926,10 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wi" = ( +"aWi" = ( /turf/simulated/wall/r_wall, /area/maintenance/lower/north) -"Wj" = ( +"aWj" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -26823,7 +26966,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/green, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Wk" = ( +"aWk" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -26863,7 +27006,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Wl" = ( +"aWl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26877,7 +27020,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Wm" = ( +"aWm" = ( /obj/machinery/alarm{ dir = 1; icon_state = "alarm0"; @@ -26893,7 +27036,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Wn" = ( +"aWn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -26907,20 +27050,20 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Wo" = ( +"aWo" = ( /obj/machinery/cryopod{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wp" = ( +"aWp" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor, /area/maintenance/lower/north) -"Wq" = ( +"aWq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -26928,7 +27071,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wr" = ( +"aWr" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -26964,7 +27107,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Ws" = ( +"aWs" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -26981,7 +27124,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wt" = ( +"aWt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26993,7 +27136,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wu" = ( +"aWu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -27019,7 +27162,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Wv" = ( +"aWv" = ( /obj/machinery/door/airlock/security{ name = "Interrogation"; req_access = newlist(); @@ -27039,7 +27182,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/interrogation) -"Ww" = ( +"aWw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -27063,7 +27206,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Wx" = ( +"aWx" = ( /obj/effect/floor_decal/borderfloor/shifted{ icon_state = "borderfloor_shifted"; dir = 1 @@ -27082,7 +27225,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/brig) -"Wy" = ( +"aWy" = ( /obj/machinery/atmospherics/pipe/tank/nitrous_oxide{ icon_state = "n2o_map"; dir = 4 @@ -27093,13 +27236,13 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"Wz" = ( +"aWz" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"WA" = ( +"aWA" = ( /obj/machinery/light_switch{ dir = 8; pixel_x = 24 @@ -27115,7 +27258,7 @@ }, /turf/simulated/floor, /area/tether/surfacebase/security/gasstorage) -"WB" = ( +"aWB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -27131,7 +27274,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"WC" = ( +"aWC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ icon_state = "1-2" @@ -27152,7 +27295,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"WD" = ( +"aWD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ icon_state = "1-2" @@ -27177,7 +27320,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"WE" = ( +"aWE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -27199,7 +27342,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"WF" = ( +"aWF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -27221,15 +27364,15 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/warden) -"WG" = ( +"aWG" = ( /obj/item/toy/syndicateballoon, /turf/simulated/floor, /area/tether/surfacebase/outside/outside2) -"WH" = ( +"aWH" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"WI" = ( +"aWI" = ( /obj/machinery/light{ dir = 8 }, @@ -27246,7 +27389,7 @@ /obj/machinery/disposal, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"WJ" = ( +"aWJ" = ( /obj/machinery/recharger/wallcharger{ pixel_y = -38 }, @@ -27259,7 +27402,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"WK" = ( +"aWK" = ( /obj/machinery/button/remote/blast_door{ id = "xenocont1"; name = "Exterior Containment Blast Doors"; @@ -27269,7 +27412,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"WL" = ( +"aWL" = ( /obj/machinery/button/remote/blast_door{ id = "xenocont2"; name = "Exterior Containment Blast Doors"; @@ -27279,7 +27422,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_slimepens) -"WO" = ( +"aWO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/green{ icon_state = "intact"; dir = 9 @@ -27303,38 +27446,31 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"WP" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 +"aWQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 +/turf/simulated/floor/plating, +/area/maintenance/lower/rnd) +"aWR" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/turf/simulated/floor/plating, +/area/maintenance/lower/rnd) +"aWS" = ( +/obj/effect/decal/cleanable/dirt, +/obj/structure/symbol/da{ + pixel_x = 32 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) -"WT" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/lower/rnd) +"aWT" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -27352,24 +27488,43 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Xa" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +"aWU" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/down{ + dir = 4 + }, +/turf/simulated/open, +/area/maintenance/lower/rnd) +"aWV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWW" = ( +/obj/structure/bed/chair/comfy/black, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWX" = ( +/obj/structure/bed/chair/comfy/black, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWY" = ( +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aWZ" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lowerhallway) -"Xb" = ( +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -27391,7 +27546,7 @@ /obj/effect/floor_decal/corner/red/bordercorner2, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"Xc" = ( +"aXc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -27407,19901 +27562,21827 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lowerhallway) -"XK" = ( +"aXd" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXe" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 4 + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXf" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/book/manual/security_space_law, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXg" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/red, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXh" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXi" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aXj" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXk" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aXl" = ( +/obj/structure/stairs/north, +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXm" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXn" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXo" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXp" = ( +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aXr" = ( +/turf/simulated/wall, +/area/maintenance/substation/command) +"aXs" = ( +/obj/structure/cable/green{ + icon_state = "0-2" + }, +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Command" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXt" = ( +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aXv" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXw" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXx" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/folder/blue, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXy" = ( +/obj/structure/table/bench/padded, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aXz" = ( +/obj/structure/bed/chair/comfy/blue{ + icon_state = "comfychair_preview"; + dir = 8 + }, +/obj/effect/landmark/start{ + name = "Command Secretary" + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXC" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/green/bordercorner{ + dir = 1 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aXE" = ( +/obj/structure/cable, +/obj/machinery/power/terminal{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXF" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aXG" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/tiled/dark, +/area/teleporter) +"aXJ" = ( +/obj/structure/closet/firecloset, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXK" = ( /turf/simulated/wall{ can_open = 1 }, /area/maintenance/lower/bar) -"Za" = ( +"aXL" = ( +/obj/structure/closet/emcloset, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXM" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXN" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aXO" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXQ" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/carpet/sblucarpet, +/area/bridge/meeting_room) +"aXR" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"aXS" = ( +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"aXT" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor/orange{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/bar) +"aXU" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXV" = ( +/obj/structure/railing, +/obj/structure/lattice, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"aXW" = ( +/obj/machinery/photocopier, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXX" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aXY" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aXZ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYa" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + icon_state = "1-2"; + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, +/obj/machinery/hologram/holopad, +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYb" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYc" = ( +/obj/structure/table/woodentable, +/obj/structure/flora/pottedplant/small{ + pixel_y = 12 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYd" = ( +/turf/simulated/wall, +/area/chapel/main) +"aYe" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYf" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Command Conf Room" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYg" = ( +/obj/machinery/door/airlock/engineering{ + name = "Command Substation" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aYh" = ( +/obj/structure/table/woodentable, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYj" = ( +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYl" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYm" = ( +/obj/machinery/photocopier, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aYn" = ( +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYp" = ( +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYq" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYs" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYt" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYu" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYv" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYw" = ( +/obj/effect/floor_decal/chapel{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYx" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYy" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYA" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYB" = ( +/obj/effect/landmark/start{ + name = "Chaplain" + }, +/obj/structure/bed/chair, +/obj/machinery/button/windowtint{ + id = "chapel"; + pixel_x = -20; + pixel_y = -25 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aYE" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYF" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYG" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/structure/cable/green{ + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYH" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/chapel, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYJ" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/light/small, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/structure/cable/green{ + icon_state = "2-4" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aYL" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 2; + frequency = 1473; + name = "Confession Intercom"; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYM" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYN" = ( +/obj/machinery/atm{ + pixel_y = 30 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYO" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYP" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYQ" = ( +/obj/machinery/door/airlock/glass{ + name = "Chapel" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aYR" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aYS" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aYT" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYU" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aYV" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aYW" = ( +/obj/structure/closet/coffin, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1" + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYX" = ( +/obj/machinery/button/windowtint{ + dir = 1; + id = "meetingroom"; + pixel_x = -25; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/bridge/meeting_room) +"aYY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 4; + on = 0; + pixel_x = -24; + pixel_y = 20 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aYZ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/full, +/turf/simulated/floor, +/area/chapel/chapel_morgue) +"aZa" = ( /turf/simulated/wall{ can_open = 0 }, /area/maintenance/lower/bar) -"Zt" = ( +"aZb" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor, +/area/bridge_hallway) +"aZc" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/lino, +/area/chapel/office) +"aZd" = ( +/obj/machinery/door/airlock/engineering{ + name = "Command Substation" + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aZe" = ( +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZf" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZg" = ( +/turf/simulated/wall, +/area/maintenance/commandmaint) +"aZh" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZi" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aZj" = ( +/obj/item/weapon/stool/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aZk" = ( +/obj/machinery/door/airlock{ + name = "Chapel Office"; + req_access = list(27) + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/office) +"aZl" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 1 + }, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"aZm" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + d2 = 8; + dir = 2; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + icon_state = "1-8" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aZn" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZo" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZp" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aZq" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aZr" = ( +/obj/structure/table/woodentable, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aZs" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "chapel_obs"; + layer = 3.3; + name = "Chapel Observation Shutters"; + pixel_x = 6; + pixel_y = -29; + req_access = list(27) + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZt" = ( /obj/structure/closet/crate, /obj/random/cash, /obj/random/contraband, /obj/random/drinkbottle, /turf/simulated/floor/plating, /area/maintenance/lower/mining) +"aZu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZw" = ( +/obj/item/toy/plushie/kitten{ + desc = "An odd appearing, cryptic plush of a cat."; + name = "Pablo" + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/tether/surfacebase/outside/outside2) +"aZx" = ( +/obj/item/clothing/under/batter, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/tether/surfacebase/outside/outside2) +"aZy" = ( +/obj/item/clothing/shoes/boots/jackboots{ + desc = "Very old and worn baseball cleats."; + name = "baseball cleats" + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/tether/surfacebase/outside/outside2) +"aZz" = ( +/obj/item/clothing/head/soft/black{ + desc = "Its a dusty old cap, It hides most your eyes." + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/tether/surfacebase/outside/outside2) +"aZA" = ( +/obj/item/weapon/material/twohanded/baseballbat{ + desc = "This bat looks very off."; + health = 500 + }, +/obj/effect/floor_decal/rust, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/tether/surfacebase/outside/outside2) +"aZB" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"aZC" = ( +/obj/structure/railing{ + dir = 8 + }, +/obj/effect/floor_decal/techfloor, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/random/trash_pile, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"aZD" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZE" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/chapel{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZF" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZG" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZI" = ( +/obj/machinery/door/blast/shutters{ + dir = 2; + id = "chapel_obs"; + name = "Chapel Observation" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"aZJ" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZK" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZL" = ( +/obj/effect/floor_decal/chapel{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZM" = ( +/obj/structure/table/bench/padded, +/obj/effect/floor_decal/chapel, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/closet/hydrant{ + pixel_x = 32 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aZP" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aZQ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZR" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"aZS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + icon_state = "intact-supply"; + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZV" = ( +/obj/machinery/light_switch{ + dir = 2; + name = "light switch "; + pixel_x = 0; + pixel_y = 26 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"aZW" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/light_switch{ + dir = 4; + on = 0; + pixel_x = -28 + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"aZX" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -26 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"aZY" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techfloor, +/area/chapel/main) +"aZZ" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/extinguisher_cabinet{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"baa" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bac" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bad" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bae" = ( +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/visible/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/catwalk, +/obj/machinery/door/airlock/maintenance/common, +/turf/simulated/floor/tiled/techfloor/grid, +/area/maintenance/lower/south) +"baf" = ( +/obj/structure/catwalk, +/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/visible/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/structure/cable{ + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bag" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 2; + frequency = 1473; + name = "Confession Intercom"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"bah" = ( +/obj/item/device/radio/intercom{ + broadcasting = 1; + dir = 2; + frequency = 1473; + name = "Confession Intercom"; + pixel_x = 0; + pixel_y = -24 + }, +/obj/structure/bed/chair{ + dir = 8 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"bai" = ( +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/visible/scrubbers, +/obj/machinery/atmospherics/pipe/simple/visible/supply, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"baj" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bak" = ( +/obj/effect/floor_decal/rust, +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bal" = ( +/obj/effect/floor_decal/rust, +/obj/structure/catwalk, +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/cargo, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bam" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/portable_atmospherics/hydroponics, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"ban" = ( +/obj/structure/catwalk, +/obj/random/junk, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bao" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor, +/area/maintenance/lower/south) +"bap" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"baq" = ( +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bar" = ( +/turf/simulated/floor, +/area/maintenance/lower/south) +"bas" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/lower/south) +"bat" = ( +/obj/structure/dogbed, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/mob/living/simple_mob/animal/passive/lizard, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bau" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bav" = ( +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"baw" = ( +/obj/structure/railing{ + dir = 4 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"bax" = ( +/obj/structure/frame/computer, +/turf/simulated/floor, +/area/maintenance/lower/south) +"bay" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 9 + }, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 6 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"baz" = ( +/obj/structure/frame{ + anchored = 1 + }, +/turf/simulated/floor, +/area/maintenance/lower/south) +"baA" = ( +/obj/effect/decal/cleanable/dirt, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/obj/structure/table/rack, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/lower/south) +"baB" = ( +/obj/effect/decal/cleanable/dirt, +/obj/item/weapon/newspaper, +/turf/simulated/floor, +/area/maintenance/lower/south) +"baC" = ( +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor, +/area/maintenance/lower/south) +"baD" = ( +/obj/structure/symbol/gu, +/turf/simulated/wall{ + can_open = 1 + }, +/area/maintenance/lower/south) +"baE" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/corner_techfloor_grid{ + dir = 5 + }, +/turf/simulated/floor/tiled/techfloor, +/area/maintenance/lower/south) +"baF" = ( +/obj/structure/closet, +/obj/random/maintenance/clean, +/turf/simulated/floor, +/area/maintenance/lower/south) +"baG" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/lino, +/area/chapel/office) +"baH" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baI" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baJ" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baK" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baL" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"baM" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"baN" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "meetingroom" + }, +/turf/simulated/floor, +/area/bridge/meeting_room) +"baO" = ( +/obj/structure/sign/securearea{ + desc = "A warning sign which reads 'WATCH YOUR STEP'."; + name = "\improper WATCH YOUR STEP" + }, +/turf/simulated/wall, +/area/maintenance/commandmaint) +"baP" = ( +/obj/structure/lattice, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/open, +/area/tether/surfacebase/surface_two_hall) +"baU" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/maintenance/substation/command) +"baW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) +"baX" = ( +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/carpet, +/area/chapel/main) +"baY" = ( +/obj/machinery/light/small, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"baZ" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/chapel_morgue) +"bba" = ( +/obj/structure/table/bench/padded, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/chapel/main) +"bbl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/green/border{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/surface_two_hall) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (2,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (3,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (4,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (5,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (6,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (7,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (8,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (9,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (10,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (11,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (12,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (13,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (14,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (15,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (16,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (17,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (18,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (19,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (20,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ac -ac -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aac +aac +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (21,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -cI -cI -cI -cI -cI -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +acI +acI +acI +acI +acI +aab +aab +aab +aab +aab +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (22,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -cD -cJ -cJ -di -di -cJ -cD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +acD +acJ +acJ +adi +adi +acJ +acD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (23,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -cD -cK -cV -ab -ab -dO -cD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +acD +acK +acV +aab +aab +adO +acD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (24,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -cD -cL -cK -dj -dj -cJ -cD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +acD +acL +acK +adj +adj +acJ +acD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (25,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -cD -cL -cV -cK -dv -cD -cD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +acD +acL +acV +acK +adv +acD +acD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (26,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cD -cD -cD -cD -cD -cD -cD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acD +acD +acD +acD +acD +acD +acD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (27,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (28,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (29,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (30,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (31,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -IX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -IX -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aUb +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (32,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Oi -Oi -Oi -Hc -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aOi +aOi +aOi +aHc +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (33,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -kx -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hs -Mn -Iy -IY -Hs -Mn -Iy -Ls -Hs -Mn -Iy -MP -Nu -Ok -Iy -OJ -Ht -Ht -Ht -Py -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +akx +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHs +aIX +aIy +aIY +aHs +aIX +aIy +aLs +aHs +aIX +aIy +aMP +aUK +aIX +aIy +aOJ +aHt +aHt +aHt +aPy +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (34,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -ky -kH -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Ht -Ht -Ht -IY -Ht -Kj -Ht -Ls -Ht -Mg -Ht -MP -Ht -Ht -Ht -OJ -Ht -NS -KX -OK -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +aky +akH +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aPa +aHt +aHt +aIY +aHt +aKj +aHt +aLs +aHt +aMg +aHt +aMP +aHt +aHt +aHt +aOJ +aHt +aNS +aKX +aPd +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (35,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -ko -kd -kI -kP -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hu -HR -Ht -IY -Ht -Kk -KW -Ls -Ht -Kk -KW -MP -Ht -Kk -KW -OJ -Ow -NV -KW -OK -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +ajU +akd +akI +akP +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHu +aHR +aHt +aIY +aHt +aKk +aKW +aLs +aHt +aKk +aKW +aMP +aHt +aKk +aKW +aOJ +aHt +aNV +aKW +aOK +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (36,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -kh -kp -kj -kj -kQ -kV -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hv -HS -Iz -IY -Iz -Kl -KX -Ls -Iz -Kl -KX -MP -Iz -Kl -KX -Hc -Hc -Oy -OD -OH -Hc -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +akh +akp +akj +akj +akQ +akV +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHv +aHS +aIz +aIY +aPb +aKl +aKX +aLs +aPb +aKl +aKX +aMP +aPb +aKl +aKX +aHc +aHc +aOy +aOD +aOH +aHc +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (37,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -kc -ki -kq -kz -kJ -kk -kQ -kZ -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -GS -Hc -Hw -Hx -IA -Hc -JA -HX -KY -Hc -LO -Mh -MD -Hc -Nk -Nv -ND -Hc -HV -Oj -Ja -WK -WI -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +akc +aki +akq +akz +akJ +akk +akQ +akZ +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHw +aHx +aIA +aHc +aJA +aHX +aKY +aHc +aLO +aMh +aMD +aHc +aNk +aNv +aND +aHc +aVn +aOj +aJa +aWK +aWI +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (38,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -jv -kd -kj -kr -kA -kK -kR -kW -kQ -lb -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hd -HU -IB -IZ -JB -Km -KZ -Lt -JB -Mi -KZ -MQ -Nl -Nw -KZ -NT -OI -OU -OV -WH -WJ -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +ajv +akd +akj +akr +akA +akK +akR +akW +akQ +alb +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHd +aHU +aIB +aIZ +aJB +aKm +aKZ +aLt +aJB +aMi +aKZ +aUJ +aNl +aNw +aKZ +aNT +aOI +aOU +aOV +aWH +aWJ +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (39,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -cO -jF -ke -kj -ks -kB -kB -kS -kW -kM -lc -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -cD -cD -cD -ab -ab -ab -Hc -Hy -HU -IC -Ja -JC -Ko -PB -Ja -Ja -Mj -PB -Ja -JE -Kq -He -Ot -OP -Ol -OF -Ja -Ja -OR -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +acO +ajF +ake +akj +aks +akB +akB +akS +akW +akM +alc +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +acD +acD +acD +aab +aab +aab +aHc +aHy +aHU +aIC +aJa +aJC +aKo +aPB +aJa +aMQ +aMj +aPB +aJa +aJE +aKq +aHe +aOt +aOP +aOl +aOF +aJa +aJa +aOR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (40,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -kf -kk -kt -kC -kL -kT -kX -la -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kb -ka -ka -nk -nk -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ka -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -cD -cD -cD -ab -ab -ab -Hc -Hz -HW -ID -Jb -JD -Kp -Mf -Mk -JD -OA -Mf -NU -JD -OA -Op -Oq -OQ -Ov -Ja -Ja -Ja -OR -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +akf +akk +akt +akC +akL +akT +akX +ala +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +akb +aka +aka +ank +ank +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aka +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +acD +acD +acD +aab +aab +aab +aHc +aHO +aHW +aID +aJb +aJD +aKp +aMf +aMk +aMR +aOA +aMf +aNU +aJD +aOA +aOp +aOq +aOQ +aOv +aJa +aJa +aJa +aOR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (41,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -kl -ku -kD -kj -kM -kY -kx -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -hD -hD -hD -hD -hD -hD -hD -hD -ac -ac -kb -kb -mT -nl -nA -nL -og -og -og -og -og -rs -sg -sg -og -uh -og -vr -wa -og -xF -og -og -og -AK -Bp -ka -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -cD -cD -cD -ab -ab -ab -Hc -HA -HU -IC -Ja -JE -Kq -PB -Ja -Ja -Mj -PB -Ja -JC -Ko -Ou -OC -OE -OB -OM -Ja -Ja -OR -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +akl +aku +akD +akj +akM +akY +akx +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahD +ahD +ahD +ahD +ahD +ahD +ahD +ahD +aac +aac +akb +akb +amT +anl +anA +anL +aog +aog +aog +aog +aog +ars +asg +asg +aog +auh +aog +avr +awa +aog +axF +aog +aog +aog +aAK +aBp +aka +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +acD +acD +acD +aab +aab +aab +aHc +aHA +aHU +aIC +aJa +aJE +aKq +aPB +aJa +aNu +aMj +aPB +aJa +aJC +aKo +aOu +aOC +aOE +aOB +aOM +aJa +aJa +aOR +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (42,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -kv -kE -kM -kU -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -hD -ls -lz -lR -mf -lz -ls -hD -ac -ac -kb -kb -kb -nm -nB -nB -oh -nm -nm -qa -nm -nm -nm -oG -nm -nm -uS -qa -nm -nm -nm -nm -nm -oG -nm -Bq -ka -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -HQ -HU -IE -Jc -JF -Kr -La -Lu -JF -Ml -La -MR -JF -Nx -La -NT -Ja -Pv -PA -Ja -Pw -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +akv +akE +akM +akU +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahD +als +alz +alR +aRE +alz +als +ahD +aac +aac +akb +akb +akb +anm +anB +anB +aoh +anm +anm +aqa +anm +anm +anm +aoG +anm +anm +auS +aqa +anm +anm +anm +anm +anm +aoG +anm +aBq +aka +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHQ +aHU +aIE +aJe +aJF +aKr +aLa +aLu +aJF +aMl +aLa +aMn +aJF +aNx +aLa +aNT +aJa +aPv +aPA +aJa +aPw +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (43,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cq -cq -kF -kN -cq -cq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -hD -lo -lA -lS -lS -mo -lo -hD -ac -ac -kb -kb -co -nm -nm -nm -oi -oG -nm -nm -nm -nm -nm -qa -nm -nm -oi -nm -oi -nm -nm -nm -nm -qa -nm -Kn -ka -ac -ac -ac -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -GS -Hc -HB -HT -IF -Hc -JG -Ks -Lb -Hc -LP -Mm -ME -Hc -Nm -Ny -NE -NW -OL -Mj -Ja -WL -Px -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acq +acq +akF +akN +acq +acq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahD +alo +alA +alS +alS +amo +alo +ahD +aac +aac +akb +akb +aco +anm +anm +anm +aoi +aoG +anm +anm +anm +anm +anm +aqa +anm +anm +aoi +anm +aoi +anm +anm +anm +anm +aqa +anm +aKn +aka +aac +aac +aac +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHB +aHT +aIF +aHc +aJG +aKs +aLb +aHc +aLP +aMm +aME +aHc +aNm +aNy +aNE +aNW +aOk +aMj +aJa +aWL +aPx +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (44,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bn -bn -cq -kG -kO -cq -bn -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -hD -hs -lj -lS -lS -mp -hs -hD -ac -ac -kb -kb -mU -nn -nC -nM -oj -nC -pr -qb -qL -rt -nC -nC -tv -nC -uT -nC -wb -wP -xG -yr -zb -nm -AL -Br -ka -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hv -HY -IG -Jd -IG -Kt -KX -Lv -IG -Kt -KX -MS -IG -Kt -KX -Hc -Hc -Oz -OG -OO -Hc -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +abn +abn +acq +akG +akO +acq +abn +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahD +ahs +alj +alS +alS +amp +ahs +ahD +aac +aac +akb +akb +amU +ann +anC +anM +aoj +anC +apr +aqb +aqL +art +anC +anC +atv +anC +auT +anC +awb +awP +axG +ayr +azb +anm +aAL +aBr +aka +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHv +aHY +aIG +aJd +aPc +aKt +aKX +aLv +aPc +aKt +aKX +aMS +aPc +aKt +aKX +aHc +aHc +aOz +aOG +aOO +aHc +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (45,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bn -km -bp -kw -bB -bX -bn -ac -ac -ac -ac -ac -ac -ac -ho -ho -ho -ho -hD -hs -lj -lS -lS -mp -hs -hD -ac -ac -jy -ka -cM -ka -ka -ka -ok -ok -ok -ok -ok -ok -ok -ok -ok -ka -ka -ka -ka -ka -ka -ka -ka -zV -ka -ka -ka -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hu -HZ -Ht -Jd -Ht -Ku -KW -Lv -Ht -Ku -KW -MT -Ht -Ku -KW -NX -ON -Kt -KX -OK -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +abn +akm +abp +akw +abB +abX +abn +aac +aac +aac +aac +aac +aac +aac +aho +aho +aho +aho +ahD +ahs +alj +alS +alS +amp +ahs +ahD +aac +aac +ajy +aka +acM +aka +aka +aka +aok +aok +aok +aok +aok +aok +aok +aok +aok +aka +aka +aka +aka +aka +aka +aka +aka +azV +aka +aka +aka +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHu +aHZ +aHt +aJd +aHt +aKu +aKW +aLv +aHt +aKu +aKW +aMT +aHt +aKu +aKW +aNX +aHt +aKt +aKX +aOK +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (46,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bn -kn -kn -bq -bC -bY -bn -ac -ac -ac -ac -ac -ho -ho -ho -hs -hs -ho -lm -lt -lB -lS -lS -mq -mA -lm -ho -ho -jy -bz -cp -ii -jy -jy -ok -oH -ps -qc -qM -ru -sh -sR -ok -ui -uk -vs -ui -uj -ka -ka -ka -zW -ka -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Ht -Ht -Ht -Jd -Ht -Kj -Ht -Lv -Ht -Mg -Ht -MS -Ht -Ht -Ht -NX -Ht -Ku -KW -OK -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +abn +akn +akn +abq +abC +abY +abn +aac +aac +aac +aac +aac +aho +aho +aho +ahs +ahs +aho +alm +ano +alB +alS +alS +amq +ano +alm +aho +aho +ajy +abz +acp +aii +ajy +ajy +aok +aoH +aps +aqc +aqM +aru +ash +asR +aok +aui +auk +avs +aui +auj +aka +aka +aka +azW +aka +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aPa +aHt +aHt +aJd +aHt +aKj +aHt +aLv +aHt +aMg +aHt +aMS +aHt +aHt +aHt +aNX +aHt +aKu +aKW +aPd +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (47,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bn -bn -bn -bn -bn -aK -bn -bn -bn -bn -bn -bn -bn -ho -ho -hq -hr -hs -hs -lj -ln -lh -lC -lT -lT -mr -lh -mC -mE -ho -jy -mH -ii -ii -ii -ii -ok -oI -pt -qd -qN -rv -si -sS -ok -uj -uU -uk -uk -uk -xH -ys -jP -zX -ka -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -HC -Oo -IH -Jd -HC -Oo -IH -Lv -HC -Oo -IH -MS -HC -Oo -IH -NX -Ht -Ht -Ht -Py -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abn +abn +abn +abn +abn +aaK +abn +abn +abn +abn +abn +abn +abn +aho +aho +ahq +ahr +ahs +ahs +alj +aln +alh +alC +alT +alT +amr +alh +amC +amE +aho +ajy +amH +aii +aii +aii +aii +aok +aoI +apt +aqd +aqN +arv +asi +asS +aok +auj +auU +auk +auk +auk +axH +ays +ajP +azX +aka +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHC +aJc +aIH +aJd +aHC +aJc +aIH +aLv +aHC +aJc +aIH +aMS +aHC +aJc +aIH +aNX +aHt +aHt +aHt +aPy +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (48,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bn -al -aJ -aR -bo -bA -aR -bZ -aR -aR -cm -bB -bn -ho -hp -hq -hr -hs -hs -hs -lo -lo -lD -lU -lU -ms -ms -ms -hq -ho -jy -bz -ii -no -nD -nN -ok -oJ -pu -qe -qO -rw -qO -sT -ok -uk -uk -uk -uk -uU -ka -yt -ka -ka -ka -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Hc -Or -Or -Or -Hc -Hc -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abn +aal +aak +aaR +abo +abA +aaR +abZ +aaR +aaR +acm +abB +abn +aho +ahp +ahq +ahr +ahs +ahs +ahs +alo +alo +alD +alU +alU +ams +ams +ams +ahq +aho +ajy +abz +aii +asZ +anD +anN +aok +atK +apu +aqe +aqO +arw +aqO +asT +aok +auk +auk +auk +auk +auU +aka +ayt +aka +aka +aka +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aHc +aOr +aOr +aOr +aHc +aHc +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (49,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -Pg -ae -ae -ae -ae -ae -bn -bn -bn -bn -bn -ho -hq -hr -hr -hs -hs -hs -hs -hs -hr -hq -hq -hq -hq -hq -mF -mG -jx -bz -ii -np -nE -nO -ok -oK -pv -qf -qP -rx -sj -sU -ok -ul -ui -uk -wc -uk -ka -yu -ka -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Je -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Je -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aae +aae +aae +aae +aae +aae +aat +aae +aae +aae +aae +aae +abn +abn +abn +abn +abn +aho +ahq +ahr +ahr +ahs +ahs +ahs +ahs +ahs +ahr +ahq +ahq +ahq +ahq +ahq +amF +amG +ajx +abz +aii +anp +anE +anO +aok +aoK +apv +aqf +aqP +arx +asj +asU +aok +aul +aui +auk +awc +auk +aka +ayu +aka +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aUj +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (50,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ae -ak -at -kg -ak -Pb -Ph -Pl -Pn -Pe -Pr -ae -cW -cW -cW -cW -cW -ho -hq -hr -hs -hs -ij -hs -hs -hs -hr -hr -hr -hq -hq -hq -hq -ho -jy -bz -ii -cF -nF -nP -cF -cF -cF -qg -cF -cF -sk -ok -ok -um -um -um -wd -uj -ka -yv -ka -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aae +akn +akn +akn +akn +akn +akn +akn +akn +akn +aam +aae +acW +acW +acW +acW +acW +aho +ahq +ahr +ahs +ahs +aij +ahs +ahs +ahs +ahr +ahr +ahr +ahq +ahq +ahq +ahq +aho +ajy +abz +aii +acF +anF +anP +acF +acF +acF +aqg +acF +acF +ask +aok +aok +aum +aum +aum +awd +auj +aka +ayv +aka +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (51,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ae -am -au -OW -OY -Pc -Pi -Pe -Pe -Pe -Pr -ae -cW -cW -cW -cW -cW -ho -ho -hr -hs -hs -hs -hs -hs -hs -hs -hs -hr -hr -hq -hq -ho -ho -jy -mH -mV -cF -cN -nQ -ol -oL -pw -jE -qQ -ry -sl -sV -tw -sX -uV -vt -we -ka -ka -yw -ka -ka -ka -ka -ka -ka -ka -ka -ka -ac -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aae +akn +akn +akn +akn +akn +akn +akn +akn +akn +aam +aae +acW +acW +acW +acW +acW +aho +aho +ahr +ahs +ahs +ahs +ahs +ahs +ahs +ahs +ahs +ahr +ahr +ahq +ahq +aho +aho +ajy +amH +amV +acF +atC +anQ +aol +aoL +apw +ajE +aqQ +ary +asl +asV +atw +asX +auV +avt +awe +aka +aka +ayw +aka +aka +aka +aka +aka +aka +aka +aka +aka +aac +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (52,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ae -am -av -OX -OZ -Pd -Pj -Pe -Pe -Pp -Ps -ae -cW -cW -cW -cW -cW -cW -ho -hs -hs -hs -hs -hs -hr -hr -hr -hs -hs -hr -hq -mD -ho -ho -ii -il -il -cF -nG -nR -om -oM -jE -jE -qR -ry -sm -sW -sX -sX -uV -vt -wf -wQ -xI -yx -zc -zc -AM -zc -zc -zc -CN -Dl -ka -ac -pq -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aae +akn +akn +akn +akn +akn +akn +akn +akn +akn +akn +aae +acW +acW +acW +acW +acW +acW +aho +ahs +ahs +ahs +ahs +ahs +ahr +ahr +ahr +ahs +ahs +ahr +ahq +amD +aho +aho +aii +ail +ail +acF +anG +anR +aom +aoM +ajE +ajE +aqR +ary +asm +asW +asX +asX +auV +avt +awf +awQ +axI +ayx +azc +azc +aAM +azc +azc +azc +aCN +aDl +aka +aac +apq +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (53,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ae -ak -aI -aI -Pa -Pe -Pe -Pe -Pe -Pe -Pt -ae -cW -cW -cW -cW -cW -cW -ho -ho -hs -hs -hs -hs -hr -hq -hr -hr -hs -hr -hq -hq -hq -ho -ho -il -bz -cF -dP -nS -on -oN -px -qh -eg -rz -sn -sX -tx -un -un -vt -wg -wR -xJ -yy -yy -zY -AN -Bs -Bs -Bs -CO -Dm -ka -ac -pq -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aae +akn +akn +akn +akn +akn +akn +akn +akn +akn +akn +aae +acW +acW +acW +acW +acW +acW +aho +aho +ahs +ahs +ahs +ahs +ahr +ahq +ahr +ahr +ahs +ahr +ahq +ahq +ahq +aho +aho +ail +abz +acF +adP +anS +aon +aoN +apx +aqh +aeg +arz +asn +asX +atx +aun +aun +avt +awg +awR +axJ +ayy +ayy +azY +aAN +aBs +aBs +aBs +aCO +aDm +aka +aac +apq +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (54,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ae -ae -ae -ae -ae -Pf -Pk -Pm -Po -Pq -Pu -ae -cW -cW -cW -cW -cW -cW -cW -ho -hs -hs -hs -hs -hr -hq -lE -hr -hs -hr -hq -hq -hq -hq -ho -bz -bz -cF -fQ -jE -oo -oO -py -qi -qS -ry -so -sY -ty -tz -tz -vt -wg -wS -xK -xK -xK -xK -xK -xK -xK -ka -ka -Dn -ka -ac -pq -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aae +aae +aae +aae +aae +akn +akn +akn +akn +akn +akn +aae +acW +acW +acW +acW +acW +acW +acW +aho +ahs +ahs +ahs +ahs +ahr +ahq +alE +ahr +ahs +ahr +ahq +ahq +ahq +ahq +aho +abz +abz +acF +afQ +ajE +aoo +aoO +apy +aqi +aqS +ary +aso +asY +aty +atz +atz +avt +awg +awS +axK +axK +axK +axK +axK +axK +axK +aka +aka +aDn +aka +aac +apq +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (55,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ae -ae -ae -ae -ae -ae -ae -ae -cW -cW -cW -dx -cW -cW -cW -ho -ho -hs -hs -hs -hr -hr -hr -hr -hs -hr -hr -hq -hq -ho -ho -jy -il -cF -iw -nT -op -oP -pz -qj -qT -ry -sp -sX -tz -tz -tz -vt -wh -wT -xK -yz -zd -zZ -AO -Bt -xK -Cq -CP -Do -ka -ka -Ei -Ei -ka -Ei -Ei -ka -ac -ac -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aae +aae +aae +aae +aae +aae +aae +aae +acW +acW +acW +adx +acW +acW +acW +aho +aho +ahs +ahs +ahs +ahr +ahr +ahr +ahr +ahs +ahr +ahr +ahq +ahq +aho +aho +ajy +ail +acF +aiw +anT +aop +aoP +apz +aqj +avL +ary +asp +asX +atz +atz +atz +avt +awh +awT +axK +ayz +azd +azZ +aAO +aBt +axK +aCq +aCP +aDo +aka +aka +aEi +aEi +aka +aEi +aEi +aka +aac +aac +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (56,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cW -cW -cW -dQ -dx -dx -dx -cW -cW -ho -hC -hs -hs -hs -hs -hs -hs -hs -hs -hr -hq -hq -ho -ii -ii -cE -cF -cF -cF -cF -cF -cF -cF -cF -cF -sq -sZ -tA -tz -tz -vt -wg -wU -xK -yA -ze -zZ -xK -xK -xK -Cr -CQ -Dp -DG -DR -Ej -Et -EL -EX -Fl -ka -ac -ac -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acW +acW +acW +adQ +adx +adx +adx +acW +acW +aho +ahC +ahs +ahs +ahs +ahs +ahs +ahs +ahs +ahs +ahr +ahq +ahq +aho +aii +aii +acE +acF +acF +acF +acF +acF +acF +acF +acF +acF +asq +axO +atA +atz +atz +avt +awg +awU +axK +ayA +aze +azZ +axK +axK +axK +aCr +aCQ +aDp +aDG +aDR +aEj +aEt +aEL +aEX +aFl +aka +aac +aac +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (57,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -Uc -Uc -Uc -Uc -UN -UN -UN -UN -UN -UN -UN -UN -cW -cW -dx -dx -dx -eU -dx -cW -ho -hs -hs -hs -ij -hs -hs -hs -hs -hs -hr -hq -mD -ho -ii -ii -mW -nq -il -nU -oq -oQ -pA -qk -qk -qk -sr -qk -tB -tB -tB -tB -wi -tB -tB -yB -zf -zZ -AP -Bu -xK -Cs -CR -ka -ka -ka -Ek -Eu -EM -EY -Fm -ka -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aUc +aUc +aUc +aUc +aUN +aUN +aUN +aUN +aUN +aUN +aUN +aUN +acW +acW +adx +adx +adx +aeU +adx +acW +aho +ahs +ahs +ahs +aij +ahs +ahs +ahs +ahs +ahs +ahr +ahq +amD +aho +aii +aii +amW +anq +ail +anU +aoq +aoQ +apA +aqk +aqk +aqk +asr +aqk +atB +atB +atB +atB +awi +atB +atB +ayB +azf +azZ +aAP +aBu +axK +aCs +aCR +aka +aka +aka +aEk +aEu +aEM +aEY +aFm +aka +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (58,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -Uc -Um -Wy -Uz -UN -Vg -Vx -VI -VQ -We -Wo -UN -cW -dw -dR -eh -dx -dx -dx -cW -ho -hr -hr -hr -hs -hs -hs -hs -hs -hr -hr -hq -hq -ho -ii -ii -il -il -il -nU -or -oR -pB -qk -qU -rA -ss -qk -tC -uo -uW -vu -wj -wV -tB -yC -zg -xK -xK -xK -xK -Cr -CS -ka -kb -ka -El -Ev -EN -EY -Fn -ka -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aUc +aUm +aWy +aUz +aUN +aVg +aVx +akg +aVQ +aWe +aWo +aUN +acW +adw +adR +aeh +adx +adx +adx +acW +aho +ahr +ahr +ahr +ahs +ahs +ahs +ahs +ahs +ahr +ahr +ahq +ahq +aho +aii +aii +ail +ail +ail +anU +aor +aoR +auK +aqk +aqU +arA +ass +aqk +aya +auo +auW +avu +awj +aAi +atB +ayC +azg +axK +axK +axK +axK +aCr +aCS +aka +akb +aka +aEl +aEv +aEN +aEY +aFn +aka +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (59,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -Uc -Un -UA -UL -UN -Vh -Vy -Vj -VJ -Wd -Wq -UN -cW -dx -dx -dx -eB -dx -dx -cW -ho -hq -hq -hr -hr -hs -hr -hr -hr -hr -hq -hq -ho -ho -ii -mI -il -il -il -nU -os -oS -pC -qk -qV -rB -st -qk -tD -up -tJ -tJ -wk -wW -xL -yD -zh -Aa -zZ -Bv -xK -Ct -CT -ka -kb -ka -Em -Ew -EO -EZ -Fo -ka -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aUc +aUn +aUA +aUL +aUN +aVh +aVy +aVj +aVJ +aWd +aWq +aUN +acW +adx +adx +adx +aeB +adx +adx +acW +aho +ahq +ahq +ahr +ahr +ahs +ahr +ahr +ahr +ahr +ahq +ahq +aho +aho +aii +amI +ail +ail +ail +anU +aos +aoS +apC +aqk +aqV +arB +ast +aqk +atD +aup +atJ +atJ +awk +awW +axL +ayD +azh +aAa +azZ +aBv +axK +aCt +aCT +aka +akb +aka +aEm +aEw +aEO +aEZ +aFo +aka +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (60,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bE -bE -bE -bE -bE -Uo -UB -Wz -UN -UO -UX -VK -VR -Wf -Wt -UN -Wi -dx -dx -dx -dx -dx -cW -cW -ho -ho -hq -hq -hr -hr -hr -hq -hq -hq -hq -hq -ho -jy -ii -mJ -mX -il -il -nV -ot -nU -pD -qk -qW -rC -su -ta -tE -uq -uX -vv -wl -wX -tB -yE -zi -xK -AQ -Bw -xK -Cu -CU -ka -ka -ka -ka -ka -ka -ka -ka -ka -DS -DS -DS -DS -DS -DS -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abE +abE +abE +abE +abE +aUo +aUB +aWz +aUN +aUO +aUX +aVK +aVR +aWf +aWt +aUN +aWi +adx +adx +adx +adx +adx +acW +acW +aho +aho +ahq +ahq +ahr +ahr +ahr +ahq +ahq +ahq +ahq +ahq +aho +ajy +aii +amJ +amX +ail +ail +anV +aot +anU +apD +aqk +aqW +arC +asu +ata +atE +auq +auX +avv +awl +awX +atB +ayE +azi +axK +aAQ +aBw +axK +aCu +aCU +aka +aka +aka +aka +aka +aka +aka +aka +aka +aDS +aDS +aDS +aDS +aDS +aDS +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (61,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bE -cd -Tu -TM -bE -bE -UC -WA -UN -Vk -VC -VL -Vz -Wg -VN -VJ -Wi -dx -dx -dx -dx -cW -cW -cW -cW -ho -lf -lf -lf -lf -lf -lf -lf -lf -lf -hq -ho -jy -ii -ii -mY -jN -nH -nW -ou -oT -pE -ql -qX -rD -sv -qk -tF -ur -tJ -tF -wm -wY -tB -tB -xK -xK -xK -xK -xK -Cv -CV -BV -DH -DS -En -Ex -EP -DS -Fp -FC -DS -FT -Gh -Gx -FC -DS -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abE +acd +aTu +aPl +abE +abE +aUC +aWA +aUN +aVk +aVC +aVL +aVz +aWg +aVN +aVJ +aWi +adx +adx +adx +adx +acW +acW +acW +acW +aho +alf +alf +alf +alf +alf +alf +alf +alf +alf +ahq +aho +ajy +aii +aii +amY +ajN +anH +anW +aou +aoT +apE +aql +aqX +arD +asv +aqk +atF +aur +atJ +atF +awm +awY +atB +atB +axK +axK +axK +axK +axK +aCv +aCV +aBV +aDH +aDS +aEn +aEx +aEP +aDS +aFp +aFC +aDS +aFT +aGh +aGx +aFC +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (62,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bE -mi -Tv -TP -Uf -bE -UD -UN -UN -TB -UN -VM -UZ -UN -VS -Ws -UN -dx -dS -dx -cW -cW -cW -cW -cW -hD -lg -lk -lp -lu -lF -lV -mg -mt -mB -ho -ho -jy -ii -ii -mZ -jx -nI -nX -ov -nX -pF -qm -qY -rE -sw -qk -tG -ur -tJ -tF -wn -wZ -xM -tB -uk -Ab -AR -Bx -BV -uk -CW -Dq -DI -DS -Eo -Eo -En -DS -Fq -FD -FI -FC -Gi -Gy -GT -DS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abE +ami +aTv +aTP +aUf +abE +aUD +aUN +aUN +aTB +aUN +aVM +aUZ +aUN +aVS +aWs +aUN +adx +adS +adx +acW +acW +acW +acW +acW +ahD +alg +alk +alp +alu +alF +alV +amg +amt +amB +aho +aho +ajy +aii +aii +amZ +ajx +anI +anX +aov +anX +apF +aqm +aqU +arE +asw +aqk +atG +aur +atJ +atF +awn +awZ +axM +atB +auk +aAb +aAR +aBx +aBV +auk +aCW +aDq +aDI +aDS +aEo +aEo +aEn +aDS +aFq +aFD +aFI +aFC +aGi +aGy +aGT +aDS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (63,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bF -To -Tw -TN -Ug -Tz -Vq -UN -UV -Vm -UN -UV -VU -UN -VT -Vm -UN -cW -cW -cW -cW -cW -cW -cW -cW -le -lh -ll -lq -lv -hD -lW -mh -hD -hD -hD -ii -ii -ii -ii -na -jx -nI -nY -ow -oU -pG -qm -qm -qm -qk -qk -tH -us -uY -vw -wo -xa -xa -yF -zj -Ac -AS -By -AS -Cw -CX -Dr -Dr -DT -Ep -Ey -EQ -DS -Fr -FD -DS -FU -En -Gz -En -DS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abF +aTo +aTw +aTN +aUg +aTz +aVq +aUN +aUV +aVm +aUN +aUV +aVU +aUN +aVT +aVm +aUN +acW +acW +acW +acW +acW +acW +acW +acW +ale +alh +all +alq +aoJ +ahD +alW +amh +ahD +ahD +ahD +aii +aii +aii +aii +ana +ajx +anI +anY +aow +aoU +apG +aqm +aqm +aqm +aqk +aqk +atH +aus +auY +avw +awo +axa +axa +ayF +azj +aAc +aAS +aBy +aAS +aCw +aCX +aDr +aDr +aDT +aEp +aEy +aEQ +aDS +aFr +aFD +aDS +aFU +aEn +aGz +aEn +aDS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (64,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bF -Tp -Tx -TO -WE -Tz -UF -UN -UW -Vn -UN -UW -VV -UN -UW -Vn -UN -cW -cW -cW -cW -cW -cW -cW -cW -hD -li -hE -lr -hF -hD -lQ -lX -dY -iO -je -jw -jw -jN -jN -nb -jy -nI -nZ -nZ -nZ -nZ -nZ -nZ -rF -sx -tb -tI -ut -ut -ut -ut -tJ -xN -tB -zk -Ad -uk -AT -AT -AT -CY -AT -AT -AT -Eq -Ez -EQ -DS -Fs -FE -DS -FV -En -En -FC -DS -ac -ac -DS -DS -DS -DS -DS -DS -ac -ac -ac -ac -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abF +aTp +aTx +aTO +aWE +aTz +aUF +aUN +aUW +ahy +aUN +aUW +aPi +aUN +aUW +ahy +aUN +acW +acW +acW +acW +acW +acW +acW +acW +ahD +ali +ahE +alr +ahF +ahD +alQ +alX +adY +aiO +aje +ajw +ajw +ajN +ajN +anb +ajy +anI +anZ +anZ +anZ +anZ +anZ +anZ +arF +asx +atb +atI +aut +aut +aut +aut +atJ +axN +atB +azk +aAd +auk +aAT +aAT +aAT +aCY +aAT +aAT +aAT +aEq +aEz +aEQ +aDS +aFs +aFE +aDS +aFV +aEn +aEn +aFC +aDS +aac +aac +aDS +aDS +aDS +aDS +aDS +aDS +aac +aac +aac +aac +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (65,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bE -Tq -Ty -Ue -WF -Tz -UE -UN -Ud -Vo -UN -Vp -VW -UN -Wx -Vo -UN -cW -cW -cW -cW -cW -cW -cW -ap -hD -hD -hD -hD -hD -hD -lY -mj -dY -iB -jf -jx -jx -jy -jy -jy -jy -nI -nZ -ox -ox -ox -ox -nZ -rF -sx -tb -tJ -ut -ut -ut -ut -tJ -xO -uv -zl -Ae -AT -AT -BW -Cx -CZ -Ds -DJ -AT -AT -EA -EQ -DS -DS -DS -DS -DS -Gj -DS -DS -DS -DS -DS -DS -EQ -EQ -Kw -Lc -DS -DS -DS -DS -DS -DS -DS -NF -NF -DS -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abE +aas +aTy +aUe +aWF +aTz +afd +aUN +aUd +aVo +aUN +aVp +aVW +aUN +aWx +aVo +aUN +acW +acW +acW +acW +acW +acW +acW +aap +ahD +ahD +ahD +ahD +ahD +ahD +alY +amj +adY +aiB +ajf +ajx +ajx +ajy +ajy +ajy +ajy +anI +anZ +aox +aox +aox +aox +anZ +arF +asx +atb +atJ +aut +aut +aut +aut +atJ +aBF +auv +azl +aAe +aAT +aAT +aBW +aCx +aCZ +aOZ +aDJ +aAT +aAT +aEA +aEQ +aDS +aDS +aDS +aDS +aDS +aGj +aDS +aDS +aDS +aDS +aDS +aDS +aEQ +aEQ +aKw +aLc +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aNF +aNF +aDS +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (66,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -bE -bE -Tz -Tz -Uh -bE -UM -UN -UY -Ui -UN -UY -Vl -UN -UY -Wh -UN -cW -cW -cW -cW -cW -cW -cW -ap -gK -gZ -ha -dY -hG -lG -lZ -mk -dY -iP -iT -jx -jy -jy -jy -jy -jy -nI -nZ -ox -ox -ox -ox -nZ -rF -sx -tb -tK -uu -uZ -uu -uu -xb -xP -uv -zm -Af -AU -Bz -BX -Cy -Da -Dt -BX -DU -AT -EB -EQ -DS -Ft -FF -DS -FW -Eo -En -DS -Hf -HD -Ib -EQ -EQ -EQ -EQ -EQ -Ep -LQ -Mo -Hj -MU -Nn -NA -EQ -NY -Os -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +abE +abE +aTz +aTz +aUh +abE +aUM +aUN +aUY +aUi +aUN +aUY +aVl +aUN +aUY +aWh +aUN +acW +acW +acW +acW +acW +acW +acW +aap +agK +agZ +aha +adY +ahG +aqq +alZ +amk +adY +aiP +aiT +ajx +ajy +ajy +ajy +ajy +ajy +anI +anZ +aox +aox +aox +aox +anZ +arF +asx +atb +awV +auu +auZ +auu +auu +axb +axP +auv +azm +aAf +aAU +aBz +aBX +aCy +aDa +aDt +aBX +aDU +aAT +aEB +aEQ +aDS +aFt +aFF +aDS +aFW +aEo +aEn +aDS +aHf +aHD +aIb +aEQ +aEQ +aEQ +aEQ +aEQ +aEp +aLQ +aMo +aHj +aMU +aNn +aNA +aEQ +aNY +aOs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (67,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tr -TC -TR -TX -Vi -UP -TA -Wj -WB -UG -Wk -WO -VD -Wr -Xc -Tr -cW -cW -cW -cW -cW -cW -cW -ap -gL -ha -hm -dY -iy -lH -ma -ml -dY -iP -jf -jx -jy -jy -jy -jy -jy -nI -nZ -ox -ox -ox -ox -nZ -rF -rG -tb -tB -uv -uv -uv -uv -uv -uv -uv -zn -Ag -AU -BA -BY -Cz -Db -Du -DK -DV -AT -EC -EQ -DS -DS -DS -DS -Ep -Ep -EQ -DT -EQ -FX -Ic -EQ -Gk -JH -Eq -FG -Ep -EQ -Ep -EQ -MV -Ep -EQ -EQ -NZ -Os -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTr +aTC +aTR +aTX +aVi +aUP +aTA +aWj +aWB +aUG +aWk +aWO +aVD +aWr +aXc +aTr +acW +acW +acW +acW +acW +acW +acW +aap +agL +aha +ahm +adY +aiy +alH +ama +aml +adY +aiP +ajf +ajx +ajy +ajy +ajy +ajy +ajy +anI +anZ +aox +aox +aox +aox +anZ +arF +arG +atb +atB +auv +auv +auv +auv +auv +auv +auv +azn +aAg +aAU +aBA +aBY +aCz +aDb +aDu +aDK +aDV +aAT +aEC +aEQ +aDS +aDS +aDS +aDS +aEp +aEp +aEQ +aDT +aEQ +aFX +aIc +aEQ +aGk +aJH +aEq +aFG +aEp +aEQ +aEp +aEQ +aMV +aEp +aEQ +aEQ +aNZ +aOs +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (68,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ts -TD -TS -Vf -Ur -Va -Wu -VZ -Ww -WC -WD -WP -WT -Xa -Xb -Tr -cW -cW -cW -cW -cW -cW -cW -ap -gM -gZ -hn -dY -iy -lI -dY -dY -dY -iP -jg -jy -jy -jy -jy -jy -jy -nI -nZ -ox -ox -ox -ox -nZ -rG -sy -tc -tL -uw -va -vx -wp -xc -xQ -vA -zo -Ah -AV -BB -BZ -BZ -Dc -Dv -DL -DW -AT -ED -Ep -Ep -Ep -EQ -EQ -EQ -Gk -GA -DS -DS -DS -DS -DS -DS -DS -DS -DS -Gj -DS -DS -DS -DS -DS -DS -Ep -Oa -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTs +aTD +aTS +aVf +aUr +aVa +aWu +aVZ +aWw +aWC +aWD +ako +aWT +aPf +aXb +aTr +acW +acW +acW +acW +acW +acW +acW +aap +agM +agZ +ahn +adY +aiy +alI +adY +adY +adY +aiP +ajg +ajy +ajy +ajy +ajy +ajy +ajy +anI +anZ +aox +aox +aox +aox +anZ +arG +asy +atc +atL +auw +ava +avx +awp +axc +axQ +avA +azo +aAh +aAV +aBB +aBZ +aBZ +aDc +aDv +aDL +aDW +aAT +aED +aEp +aEp +aEp +aEQ +aEQ +aEQ +aGk +aGA +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aGj +aDS +aDS +aDS +aDS +aDS +aDS +aEp +aOa +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (69,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ts -TE -TT -Tr -Us -Us -UQ -Vb -UQ -UQ -UQ -UQ -Wv -UQ -Tr -Tr -cW -cW -cW -ap -ap -ap -ap -ap -gN -hb -ap -dY -iz -lJ -dY -jx -ix -iQ -jh -jy -jy -jy -jy -jy -jy -nI -nZ -nZ -ox -ox -qn -nZ -rG -sz -td -tM -uw -cn -vy -wq -xd -xR -yG -zp -Ai -AU -BC -Ca -CA -CA -CA -Ca -DX -AT -Eo -Ez -Ep -Fu -FG -Ep -EQ -Gl -DS -DS -Hg -HE -Id -II -Jf -DS -DS -Ld -En -LR -Mp -Mq -Mq -Mq -DS -NG -Ep -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTs +aTE +aaX +aTr +aUs +aPh +aUQ +aVb +aUQ +aUQ +aUQ +aUQ +aWv +aUQ +aTr +aTr +acW +acW +acW +aap +aap +aap +aap +aap +agN +ahb +aap +adY +aiz +alJ +adY +ajx +aix +aiQ +ajh +ajy +ajy +ajy +ajy +ajy +ajy +anI +anZ +anZ +aox +aox +aqn +anZ +arG +asz +atd +atM +auw +acn +avy +awq +axd +axR +ayG +azp +aDs +aAU +aBC +aCa +aCA +aCA +aCA +aCa +aDX +aAT +aEo +aEz +aEp +aFu +aFG +aEp +aEQ +aGl +aDS +aDS +aHg +aHE +aId +aII +aJf +aDS +aDS +aLd +aEn +aLR +aMp +aMq +aMq +aMq +aDS +aNG +aEp +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (70,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tr -TF -TU -Tr -Ut -Ut -UQ -Vc -Vu -VF -VP -Wa -Wl -UQ -cW -cW -cW -dT -ei -eC -eV -ap -fP -gd -gs -gF -gO -hI -lw -lK -mb -mm -mu -iR -ji -jy -jy -jy -jy -jy -jy -ii -dY -oy -oV -oV -qo -qZ -rG -sA -te -tN -uw -vb -vz -wr -xe -xS -vA -zq -Aj -AU -AU -Cb -Cb -Cb -Cb -Cb -AU -AT -zl -zl -Fa -zl -zl -Ep -EQ -Gm -DS -GU -Hh -HF -Ie -Eo -En -JI -DS -Le -Eo -LS -Mp -Mq -Mq -Mq -DS -EQ -Ob -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTr +aTF +aTU +aTr +aUt +aUt +aUQ +aVc +ajK +aVF +aVP +aWa +aWl +aUQ +acW +acW +acW +adT +aei +aeC +aeV +aap +afP +agd +ags +agF +agO +ahI +alw +alK +amb +amm +amu +aiR +aji +ajy +ajy +ajy +ajy +ajy +ajy +aii +adY +aoy +aoV +aoV +aqo +aqZ +arG +asA +ate +atN +auw +avb +avz +awr +axe +axS +avA +azq +aAj +aAU +aAU +aCb +aCb +aCb +aCb +aCb +aAU +aAT +azl +azl +aFa +azl +azl +aEp +aEQ +aGm +aDS +aGU +aHh +aHF +aIe +aEo +aEn +aJI +aDS +aLe +aEo +aLS +aMp +aMq +aMq +aMq +aDS +aEQ +aOb +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (71,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tr -TG -TW -Uk -Uk -Uk -UQ -Vd -Vv -VG -VP -Wb -Wm -UQ -cW -cW -dy -dl -dV -eD -eW -ap -ld -ge -ge -ge -ge -hc -lx -mv -ge -FB -HH -iS -jj -jy -jy -jy -jy -jy -jy -jy -dY -oz -oW -pH -qp -ra -rG -rG -tf -rG -uw -uw -vA -vA -xf -vA -yH -zr -Ak -AW -AX -AX -AX -AX -AX -AX -AX -AX -AX -ER -Fb -Fb -zl -Ep -EQ -Gn -DS -GV -Hh -Eo -En -En -Jg -JJ -DS -Eo -En -LT -Mp -Mq -Mq -Mq -DS -EQ -Oc -DS -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTr +aTG +aTW +aUk +aUk +aUk +aUQ +aVd +aVv +aVG +aPj +aWb +aWm +aUQ +acW +acW +ady +adl +adV +aeD +aeW +aap +ald +age +age +age +age +ahc +alx +amv +age +aFB +aHH +aiS +ajj +ajy +ajy +ajy +ajy +ajy +ajy +ajy +adY +aoz +aoW +apH +aqp +ara +arG +arG +atf +arG +auw +auw +avA +avA +axf +avA +ayH +azr +aAk +aHz +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aER +aFb +aOX +azl +aEp +aEQ +aGn +aDS +aGV +aHh +aEo +aEn +aEn +aJg +aJJ +aDS +aEo +aEn +aLT +aMp +aMq +aMq +aMq +aDS +aEQ +aOc +aDS +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (72,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ts -TH -Uj -Uk -Uu -UH -UQ -Ve -Vw -VH -VP -Wc -Wn -UQ -cW -dk -dz -dU -dV -eE -eX -ap -fR -ge -gt -gt -gt -hd -iC -lM -ge -ik -mw -iT -il -jz -jy -jy -jy -jy -ii -ii -dY -hY -oX -fG -qq -rb -rc -sB -tg -tO -ux -vc -vB -ws -xg -xT -vG -zs -Al -AX -AX -Cc -AX -AX -AX -AX -AX -AX -AX -ES -Fb -Fb -zl -En -Ep -Gl -DS -GW -Hh -HG -If -Hm -En -JK -DS -Lf -Lw -LR -Mp -Mq -Mq -Mq -DS -EQ -Od -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTs +aTH +aPe +aUk +aUu +aUH +aUQ +aVe +aVw +aVH +aVP +aWc +aWn +aUQ +acW +adk +adz +adU +adV +aeE +aeX +aap +afR +age +agt +agt +agt +agt +aiC +alM +age +aik +amw +aiT +ail +ajz +ajy +ajy +ajy +ajy +aii +aii +adY +ahY +aoX +afG +aqE +arb +arc +axv +atg +atO +aux +avc +avB +aws +axg +axT +avG +azs +aAl +aAX +aAX +aCc +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aES +aFb +aFb +azl +aEn +aEp +aGl +aDS +aGW +aHh +aHG +aIf +aHm +aEn +aJK +aDS +aLf +aLw +aLR +aMp +aMq +aMq +aMq +aDS +aEQ +aOd +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (73,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ts -TL -TV -Ul -Uv -UI -UQ -Vr -UQ -UQ -UQ -UQ -UQ -UQ -cW -dl -dz -dV -cc -eF -eX -ap -fR -ge -gt -gt -gP -gt -iD -lN -ge -il -mx -iU -il -jA -ii -ii -ii -ii -ii -il -il -oA -oY -fG -qr -rc -rH -sC -th -tP -uy -vc -vC -wt -xh -xU -vG -zs -Al -AY -AY -AX -AX -AX -AX -AX -AX -AX -AX -AX -Fc -Fb -zl -Eo -FX -DS -DS -DS -Hi -On -Ig -IJ -Eo -DS -DS -DS -DS -DS -DS -DS -DS -DS -DS -Ey -EQ -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTs +aTL +aTV +aUl +aUv +aUI +aUQ +aVr +aUQ +aUQ +aUQ +aUQ +aUQ +aUQ +acW +adl +adz +adV +acc +aeF +aeX +aap +afR +age +agt +agt +agP +agt +aiD +alN +age +ail +amx +aiU +ail +ajA +aii +aii +aii +aii +aii +aWU +ail +aoA +aoY +afG +aqr +arc +arH +asC +ath +atP +auy +avc +avC +awt +axh +axU +avG +azs +aAl +aAY +aAY +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aFc +aFb +azl +aEo +aFX +aDS +aDS +aDS +aHi +aOn +aIg +aIJ +aEo +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aEy +aEQ +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (74,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tr -TQ -Up -Uk -Uw -UJ -UR -VE -US -ac -ac -ac -ac -ac -ap -dm -dA -cc -cc -eG -eY -ap -fS -ge -ge -ge -ge -he -hH -lO -ge -im -mx -iV -jk -il -il -jO -il -il -il -il -il -dY -oZ -fG -qs -rd -rH -sD -th -tQ -uz -vc -vD -wu -xi -xV -vG -zs -Am -AZ -BD -AW -AX -AX -AX -AX -AX -AX -AX -AX -ES -Fv -zl -Eo -EQ -Ep -Ep -DS -DS -DS -DS -DS -Hm -DS -Jh -Jh -Jh -DS -Mq -Mq -Mq -Mq -Eo -Ep -Ep -DS -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTr +aTQ +aUp +aUk +aUw +afq +aUR +aVE +aUS +aac +aac +aac +aac +aac +aap +adm +adA +acc +acc +aeG +aeY +aap +afS +age +age +age +age +ahe +ahH +alO +age +aim +amx +aiV +ajk +aWQ +amy +aWS +amy +amy +amy +aWR +ail +adY +aoZ +afG +aqs +ard +arH +asD +ath +atQ +auz +avc +avD +awu +axi +axV +avG +azs +aAm +aAZ +aBD +aAW +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aES +aFv +azl +aEo +aEQ +aEp +aEp +aDS +aDS +aDS +aDS +aDS +aHm +aDS +aJh +aJh +aJh +aDS +aMq +aMq +aMq +aMq +aEo +aEp +aEp +aDS +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (75,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tt -Tt -TY -Uk -Ux -UI -UR -VE -US -ac -ac -ac -ac -ac -ap -dn -dA -cc -cc -ap -ap -ap -fT -ge -gu -ge -gQ -hf -iA -lP -ge -il -my -il -jf -il -ii -ii -dY -dY -dY -dY -dY -dY -pa -pI -qt -rd -rH -sE -th -tR -uy -vc -vE -wv -xj -xW -vG -zt -An -Ba -BE -AW -AX -AX -AX -AX -AX -AX -AX -AX -ES -Fb -zl -En -FY -EQ -EQ -GX -Hj -Hj -Ih -DS -Eo -DS -Jh -Jh -Jh -DS -Mq -Mq -Mq -Mq -Eo -EQ -Ep -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTt +aTt +aTY +aUk +aUx +aUI +aUR +aVE +aUS +aac +aac +aac +aac +aac +aap +adn +adA +acc +acc +aap +aap +aap +afT +age +agu +age +agQ +ahf +aiA +alP +age +ail +ajO +amy +aUE +aWR +aii +aii +adY +adY +adY +adY +adY +adY +apa +apI +aqt +ard +arH +asE +ath +atR +auy +avc +avE +awv +axj +axW +avG +azt +aAn +aBa +aBE +aAW +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aES +aFb +azl +aEn +aFY +aEQ +aEQ +aGX +aHj +aHj +aIh +aDS +aEo +aDS +aJh +aJh +aJh +aDS +aMq +aMq +aMq +aMq +aEo +aEQ +aEp +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (76,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tt -TI -TZ -Uk -Uy -UK -UR -VO -US -ap -ap -ap -ap -ap -ap -dn -dB -dW -ej -eH -eZ -fA -fU -ge -gu -ge -gQ -hf -iA -ly -md -mn -mz -il -jf -il -ii -jG -mK -dY -en -dY -en -eK -pb -pJ -qs -rd -rI -sF -th -tS -uA -vc -vF -ww -xk -xX -vG -zu -Ao -Bb -Bb -Bc -Bc -Bc -Bc -AX -AX -AX -AX -AX -ES -Fb -zl -FJ -Ep -Ep -EQ -EQ -EQ -EQ -Ii -DS -En -JL -JL -JL -JL -JL -JL -JL -JL -JL -JL -JL -JL -DS -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTt +aTI +aTZ +aUk +aUy +aPg +aUR +aVO +aUS +aap +aap +aap +aap +aap +aap +adn +adB +adW +aej +aeH +aeZ +afA +afU +age +agu +age +agQ +aTM +aiA +aly +amd +amn +amz +ail +ajf +ail +aii +ajG +amK +adY +aen +adY +aen +aeK +apb +apJ +aqs +ard +arI +asF +ath +atS +auA +avc +avF +aww +axk +axX +avG +azu +aAo +aBb +aBb +aBc +aBc +aBc +aBc +aAX +aAX +aAX +aAX +aAX +aES +aFb +azl +aFJ +aEp +aEp +aEQ +aEQ +aEQ +aEQ +aIi +aDS +aEn +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aDS +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (77,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tt -TJ -Ua -Uk -Uk -Uk -UR -VE -US -bD -ca -ca -ca -ca -cX -do -dC -cc -ek -dY -dY -dY -dY -dY -dY -dY -dY -hg -ht -hJ -hY -dY -dY -iF -jl -dY -dY -dY -dY -dY -nr -dY -dY -dY -pc -pK -qu -rc -rJ -sF -th -tS -uB -vc -vG -vG -xl -vG -yI -zv -Ap -Bb -BF -Cd -CB -Dd -Bc -Bc -AX -AX -AX -AX -ES -Fb -zl -FJ -FZ -DS -DS -DS -DS -DS -DS -DS -Eo -JL -Kx -Kx -Lx -Kx -JL -MF -Lh -MH -LU -MF -JL -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTt +aTJ +aTT +aUk +aUk +aUk +aUR +aPk +aUS +abD +aca +aca +aca +aca +acX +ado +adC +acc +aek +adY +adY +adY +adY +adY +adY +adY +adY +ahg +aht +ahJ +ahY +adY +adY +aiF +ajl +adY +adY +adY +adY +adY +anr +adY +adY +adY +apc +apK +aqu +arc +arJ +asF +ath +atS +auB +avc +avG +avG +axl +avG +ayI +azv +aAp +aBb +aGS +aCd +aCB +aDd +aBc +aBc +aAX +aAX +aAX +aAX +aES +aFb +azl +aFJ +aFZ +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aEo +aJL +aKx +aKx +aLx +aKx +aJL +aMF +aLh +aMH +aLU +aMF +aJL +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (78,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tt -TK -Ub -aS -WG -Uq -US -VX -US -Vs -cb -cr -cr -cr -cY -dp -dD -cc -el -dY -fa -fB -fV -gf -fV -gG -fV -hh -hu -hK -hZ -fV -fV -fV -jm -fV -gG -fB -jQ -nc -ns -gG -fV -fV -pd -pJ -fG -re -rK -sF -ti -tT -uC -vd -vH -wx -xm -xY -yJ -zw -Aq -Bc -BG -Ce -CC -De -Dw -Bc -AX -AX -AX -AX -ES -Fw -zl -FK -Ga -Go -DS -En -Hk -Hm -En -IK -En -JL -Ky -Ky -Lh -LU -Mr -MG -LU -Ky -Lh -Lh -JL -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTt +aPm +acN +aaS +aWG +aUq +aUS +aVX +aUS +aVs +acb +acr +acr +acr +acY +adp +adD +acc +ael +adY +afa +afB +afV +agf +aRV +agG +afV +amf +ahu +ahK +ahZ +afV +aSU +afV +ajm +afV +agG +afB +ajQ +afV +ans +agG +afV +aRV +apd +apJ +afG +are +arK +asF +ati +atT +auC +avd +avH +awx +axm +axY +ayJ +azw +aAq +aBc +aBG +aCe +aCC +aDe +aDw +aBc +aAX +aAX +aAX +aAX +aES +aFb +azl +aFK +aGa +aGo +aDS +aEn +aHk +aHm +aEn +aIK +aEn +aJL +aKy +aKy +aLh +aLU +aMr +aMG +aLU +aKy +aLh +aLh +aJL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (79,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Tt -Tt -Tt -aS -Uq -Uq -US -VY -Wp -Vt -VA -cc -cc -cc -cZ -cc -dE -cc -em -eI -fb -fC -fW -gg -gg -gg -gg -gg -gg -hL -gm -gm -gm -gm -jn -jB -jB -jB -jB -jB -jB -jB -jB -jB -jB -pL -qv -rd -rL -sF -tj -tU -uD -rd -vI -wy -xn -xZ -yK -zx -Ar -Bd -BH -Cf -CD -Df -Dx -Bc -AX -AX -AX -AX -ES -Fx -zl -FL -EQ -Gp -DS -Eo -Eo -HG -Ij -DS -DS -JL -Kz -Lg -Ly -LV -JL -MH -Lh -MF -Lh -NH -JL -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aTt +aTt +aTt +aaS +aUq +aUq +aUS +aVY +aWp +aVt +aVA +acc +acc +acc +acZ +acc +adE +acc +aem +aeI +afb +afC +afW +agg +agg +agg +agg +agg +agg +ahL +agm +agm +agm +agm +ajn +ajB +ajB +ajB +ajB +ajB +ajB +ajB +ajB +ajB +ajB +apL +aqv +ard +arL +asF +atj +atU +auD +ard +avI +awy +axn +axZ +ayK +azx +aAr +aBd +aBH +aCf +aCD +aDf +aOW +aBc +aAX +aAX +aAX +aAX +aES +aFx +azl +aFL +aEQ +aGp +aDS +aEo +aEo +aHG +aIj +aDS +aDS +aJL +aKz +aLg +aLy +aLV +aJL +aMH +aLh +aMF +aLh +aNH +aJL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (80,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -cD -an -an -an -UT -ap -bG -VB -cs -cG -cs -da -dq -dF -dX -dq -eJ -fc -fD -fX -gh -gh -gh -gh -gh -gh -hM -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -ia -pe -pM -qw -rf -rM -sG -tk -tV -uE -ve -vJ -wz -xo -ya -yL -zy -As -Bc -BI -Cg -CE -Dg -Dy -Bc -AX -AX -AX -AX -ES -Fb -zl -FM -Ga -Gq -DS -GY -Hl -HI -Ik -DS -Jh -JL -KA -KB -Lh -LW -JL -Lh -Lh -LU -LU -Lh -JL -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +acD +aan +aan +aan +aUT +aap +abG +aVB +acs +acG +acs +ada +adq +adF +adX +adq +aeJ +afc +afD +afX +agh +agh +agh +agh +agh +agh +ahM +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +aia +ape +apM +aqw +arf +arM +asG +atk +atV +auE +ave +avJ +awz +axo +aCI +ayL +azy +aAs +aBc +aBI +aCg +aCE +aDg +aDy +aBc +aAX +aAX +aAX +aAX +aES +aFb +azl +aFM +aGa +aGq +aDS +aGY +aHl +aHI +aIk +aDS +aJh +aJL +aKA +aKB +aLh +aLW +aJL +aLh +aLh +aLU +aLU +aLh +aJL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (81,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -an -aw -aL -UU -an -bH -ce -ap -ap -ap -ap -ap -ap -ap -ap -dY -fd -fE -fY -gi -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -gv -oB -pf -pN -qx -rc -rN -sH -tl -tW -uF -vc -vK -wA -xp -vK -vK -zz -At -Bb -BJ -Ch -CF -Dh -Bc -Bc -AX -AX -AX -AX -ES -Fb -zl -FM -Ga -FZ -Gj -Eo -Hm -HJ -Eo -DS -Jh -JL -KB -Lh -Lh -LX -Ms -MI -MI -Ly -MI -NI -JL -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aan +aaw +aaL +aUU +aan +abH +ace +aap +aap +aap +aap +aap +aap +aap +aap +adY +alv +afE +afY +agi +agv +agv +aXR +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +agv +aXR +agv +agv +aoB +apf +apN +aqx +arc +arN +asH +atl +atW +auF +avc +avK +awA +axp +avK +avK +azz +aAt +aBb +aBJ +aCh +aCF +aDh +aBc +aBc +aAX +aAX +aAX +aAX +aES +aFb +azl +aFM +aGa +aFZ +aGj +aEo +aHm +aHJ +aEo +aDS +aJh +aJL +aKB +aLh +aLh +aLX +aMs +aMI +aMI +aLy +aMI +aNI +aJL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (82,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Nz -Nz -Nz -an -ax -aM -aT -an -bI -cf -ac -ac -ac -ac -ac -ac -ac -ac -dY -fe -fF -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qy -rg -rh -rh -tm -rh -rh -vf -vL -wB -xq -yb -vK -zA -Au -Bb -Bb -Bc -Bc -Bc -Bc -AX -AX -AX -AX -AX -ES -Fb -zl -FN -Ga -Gr -DS -GZ -Eo -En -En -DS -Jh -JL -KC -Li -Lz -LY -JL -Lh -Ky -No -Lh -KB -JL -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aNz +aNz +aNz +aan +aax +aaM +aaT +aan +abI +acf +aac +aac +aac +aac +aac +aac +aac +aac +adY +afe +afF +afY +agj +agw +agw +aXS +agw +agw +agw +agw +agw +agw +agw +agw +agw +agw +agw +agw +agw +aXS +agw +agw +aoC +apf +apN +aqs +arg +arh +arh +atm +arh +arh +avf +avN +awB +axq +ayb +avK +azA +aAu +aBb +aBb +aBc +aBc +aBc +aBc +aAX +aAX +aAX +aAX +aAX +aES +aFb +azl +aFN +aGa +aGr +aDS +aGZ +aEo +aEn +aEn +aDS +aJh +aJL +aKC +aLi +aLz +aLY +aJL +aLh +aKy +aNo +aLh +aKB +aJL +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (83,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Nz -PW -Qu -an -ay -aN -aU -an -bJ -cg -ac -ac -ac -ac -ac -ac -ac -ac -dY -ff -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qz -rg -rO -sI -tn -tX -uG -vf -vM -wC -xr -yc -vK -zB -Av -Be -BK -AW -AX -AX -AX -AX -AX -AX -AX -AX -ES -Fb -zl -FL -Gb -DS -DS -DS -DS -DS -DS -DS -DS -JL -JL -JL -JL -JL -JL -JL -JL -JL -JL -JL -JL -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aNz +aPW +ahh +aan +ahd +aaN +aaU +aan +abJ +acg +aac +aac +aac +aac +aac +aac +aac +aac +adY +aff +afG +afY +agj +agw +agw +aXS +agw +agw +agw +agw +agw +agw +asc +asc +baN +asc +asc +baN +asc +asc +agw +agw +aoC +apf +apN +aqz +arg +arO +asI +atn +atX +auG +avf +avM +awC +axr +ayc +avK +azB +aAv +aBe +aBK +aAW +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aES +aFb +azl +aFL +aGb +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aDS +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aJL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (84,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Nz -PX -Qv -an -az -an -aV -an -ap -ch -ac -ac -ac -ac -ac -ac -dY -dY -dY -fg -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qs -rg -rP -sJ -to -tY -uH -vf -vN -wD -xs -yd -vK -zC -Aw -AZ -BL -AW -AX -AX -AX -AX -AX -AX -AX -AX -ES -Fb -zl -FO -Gc -DS -GB -vp -vp -vp -vp -vp -vp -JM -KD -rZ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aNz +aPX +aQv +aan +aaz +aan +aaV +aan +aap +ach +aac +aac +aac +aac +aac +aac +adY +adY +adY +afg +afG +afY +agj +agw +agw +aXS +agw +agw +agw +agw +agw +agw +asc +asO +aSx +aXd +aYX +aSx +aXW +asc +asc +aXS +aXV +apf +apN +aqs +arg +arP +asJ +ato +atY +auH +avf +avN +awD +axs +ayd +avK +azC +aAw +aAZ +aBL +aAW +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aES +aFb +azl +aFO +aGc +aDS +aGB +avp +avp +avp +avp +avp +avp +aJM +aKD +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (85,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -Nz -PY -Qw -ap -Rm -aO -RW -br -ap -ci -ct -cH -cP -db -ac -ac -dY -en -eK -fh -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qs -rh -rQ -sK -tp -tZ -uI -vf -vN -wD -xt -ye -vK -zC -Ax -Bf -Bf -AX -AX -AX -AX -AX -AX -AX -AX -AX -Fd -Fb -zl -FP -Gd -DT -GC -Ha -Hn -HK -Il -IL -Ji -JN -KE -rZ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aNz +aPY +aQw +aap +aRm +aaO +aRW +abr +aap +aci +act +acH +acP +adb +aac +aac +adY +aen +aeK +afh +afG +agk +agl +agl +agl +agl +aob +aob +aob +aob +aob +aob +asc +asP +aWV +aXe +aXm +aXO +aSx +aYc +baN +aXS +aoC +apf +apN +aqs +arh +arQ +asK +atp +atZ +auI +avf +avN +awD +axt +aye +avK +azC +aAx +aBf +aBf +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aFd +aFb +azl +aFP +aGd +aDT +aGC +aHa +aHn +aHK +aIl +aIL +aJi +aJN +aKE +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (86,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -af -Nz -Nz -Qx -ap -aB -aP -RX -aP -bK -cj -cu -bK -bK -dc -ac -ac -dY -dY -dY -fi -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qs -rh -rR -sL -tq -ua -uJ -vf -vO -wE -xu -yf -vK -zC -Ax -AX -AX -AX -AX -AX -AX -AX -AX -AX -AX -ES -Fb -Fb -zl -DS -DS -DS -GD -vp -rZ -rZ -rZ -IM -Jj -JO -KF -IM -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +aaf +aNz +aNz +aQx +aap +aaB +aaP +aRX +aaP +abK +acj +acu +abK +abK +adc +aac +aac +adY +adY +adY +afi +afG +agk +agl +anz +apV +aXJ +aob +apT +aXU +atu +aOw +aXU +asd +asQ +aWW +aXf +aXn +aXP +aSx +aYf +baN +aXS +aoC +apf +apN +aqs +arh +arR +asL +atq +aua +auJ +avf +avO +awE +axu +ayf +avK +azC +aAx +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aES +aFb +aFb +azl +aDS +aDS +aDS +aGD +avp +arZ +arZ +arZ +aIM +aJj +aJO +aKF +aIM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (87,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -aj -Ox -PZ -Qy -ap -Rn -RD -RY -ap -ap -ap -ap -ap -cQ -ch -ac -ac -ac -ac -dY -fj -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qs -rh -rS -sK -tp -tZ -uK -vf -vK -vK -vK -vK -vK -zD -Ay -AW -AX -AX -AX -AX -AX -AX -AX -AX -AX -ET -Fb -Fb -zl -ac -ac -rZ -GE -vp -rZ -ac -ac -IM -Jk -JP -KG -IM -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +aaj +aOx +aPZ +aQy +aap +aRn +aRD +aRY +aap +aap +aap +aap +aap +acQ +ach +aac +aac +aac +aac +adY +afj +afG +agk +agl +apg +apW +aXL +aob +aXl +aXU +aYz +apS +avq +asf +aYA +aWX +aXg +aXx +aXQ +aXX +aYh +baN +aXS +aoC +apf +apN +aqs +arh +arS +asK +atp +atZ +arS +avf +avK +avK +avK +avK +avK +azD +aAy +aOY +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aAX +aET +aFb +aFb +azl +aac +aac +arZ +aGE +avp +arZ +aac +aac +aIM +aJk +aJP +aKG +aIM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (88,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -ao -ao -ao -Qz -ap -Rp -ap -ap -Sr -SF -SM -SU -Sr -cQ -dd -ac -ac -ac -ac -dY -fk -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qA -rg -rT -rS -tr -rS -rS -vf -vP -wF -xv -vP -yM -zE -Az -zl -zl -zl -zl -zl -zl -zl -zl -zl -zl -zl -zl -zl -zl -ac -ac -rZ -GE -vp -rZ -ac -ac -IM -Jl -JQ -KH -IM -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +acT +aao +aao +aQz +aap +aRp +aap +aap +aSr +aPr +aSM +alt +aSr +acQ +add +aac +aac +aac +aac +adY +afk +afG +agk +agl +apl +aXw +aob +aob +aXo +aXY +aqy +aob +aZb +asc +avj +aWY +aXh +aXz +aWY +aXZ +aON +baN +aXS +aXV +apf +apN +aqA +arg +arT +arS +atr +arS +arS +avf +avP +awF +aDx +avP +ayM +azE +aAz +azl +azl +azl +azl +azl +azl +azl +azl +azl +azl +azl +azl +azl +azl +aac +aac +arZ +aGE +avp +arZ +aac +aac +aIM +aJl +aJQ +aKH +aIM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (89,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -ao -ao -Qa -Ro -ap -Rq -ap -RZ -Sr -SG -SN -SV -Sr -cQ -ch -ac -ac -ac -ac -dY -ff -fH -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qs -rg -rU -sM -ts -ub -uL -vf -vQ -wG -xw -yg -yN -zF -AA -zl -BM -Ci -CG -CH -Dz -DM -DN -rZ -EE -EU -Fe -Fy -rZ -ac -ac -rZ -GF -vp -rZ -ac -ac -IM -Jm -JR -KI -IM -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +aao +aao +aQa +aRo +aap +aRq +aap +aRZ +aSr +aSG +aSN +aSV +aSr +acQ +ach +aac +aac +aac +aac +adY +aff +afH +aiW +anx +apU +arp +apQ +apS +aXG +aYa +aYs +aob +aXN +asc +aYN +aWZ +aXj +aXM +aSx +aYb +asc +asc +aXS +aoC +apf +apN +aqs +arg +arU +asM +ats +aub +auL +avf +avQ +awG +axw +ayg +ayN +azF +aFw +azl +aBM +aCi +aCG +aCH +aDz +aDM +aDN +arZ +aEE +aEU +aFe +aFy +arZ +aac +aac +arZ +aGF +avp +arZ +aac +aac +aIM +aJm +aJR +aKI +aIM +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (90,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -aq -OS -Qb -QA -ap -RO -ap -cD -Sr -SH -SO -SW -Sr -cQ -ch -ac -ac -ac -ac -dY -fl -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qB -rg -rg -rg -rg -rg -rg -vf -vR -wH -xx -yh -yO -zG -AB -Bg -BN -Cj -BO -BO -DA -DN -DN -rZ -EF -EV -BO -BO -rZ -ac -ac -rZ -GG -vp -Ho -Hr -Hr -Ir -Ir -JS -Ir -Ir -LA -LA -LA -LA -LA -LA -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +aaq +aOS +aQb +aQA +aap +aRO +aap +acD +aSr +aSH +aSO +aSW +aSr +acQ +ach +aac +aac +aac +aac +adY +afl +afG +apB +anK +anK +anK +anK +anK +anK +aYn +aYL +aob +aXN +asc +asc +asc +asc +asc +asc +asc +asc +aXS +aXS +aXV +apf +apN +aqB +arg +arg +arg +arg +arg +arg +avf +avR +awH +axx +ayh +ayO +azG +aAB +aBg +aBN +aCj +aBO +aBO +aDA +aDN +aDN +arZ +aEF +aEV +aBO +aBO +arZ +aac +aac +arZ +aGG +avp +aHo +aHr +aHr +aIr +aIr +aJS +aIr +aIr +aLA +aLA +aLA +aLA +aLA +aLA +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (91,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -af -af -Qc -QB -QS -Rr -RE -Sa -Ss -SI -SP -SX -Sr -cR -de -ad -ad -ad -ad -dY -fm -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qC -ri -en -dY -ac -ac -ac -vg -vS -wI -xy -xy -yM -zH -AC -zl -BO -Ck -CH -CH -DB -DN -DY -rZ -BO -CH -Ff -Fz -rZ -ac -ac -rZ -GH -Hb -Hp -HL -Im -Ir -Jn -JT -KJ -Lj -LB -LZ -Mt -MJ -MW -LA -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +aaf +aaf +aQc +aQB +aQS +aRr +aPp +aSa +aSs +aSI +aSP +aSX +aSr +acR +ade +aad +aad +aad +aad +adY +afm +afG +agk +anK +aoa +apm +aqH +aqH +anK +aOo +aYJ +aob +aZe +aZh +baH +aZg +aXS +aXS +aXS +aXS +aXS +aXS +agw +aoC +apf +apN +aqC +ari +aen +adY +aac +aac +aac +avg +avS +awI +axy +axy +ayM +azH +aAC +azl +aBO +aCk +aCH +aCH +aDB +aDN +aDY +arZ +aBO +aCH +aFf +aFz +arZ +aac +aac +arZ +aGH +aHb +aHp +aHL +aIm +aIr +aJn +aJT +aKJ +aLj +aLB +aLZ +aMt +aMJ +aMW +aLA +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (92,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -af -ar -Pz -Qd -QC -QT -Rs -RF -Sb -Ss -SJ -SQ -SY -Sr -cy -df -dr -aG -aG -eo -dY -fn -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qD -dY -dY -dY -ac -ac -ac -vg -vg -vg -vg -vg -yP -yP -yP -yP -rl -Cl -rl -rl -rl -DN -DZ -rZ -rZ -CH -rZ -rZ -rZ -ac -ac -rZ -GI -vp -Hq -HM -In -Ir -Jo -JU -Js -Lk -LB -Ma -Mu -MK -MX -LA -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaf +aar +aPz +aQd +aQC +aQT +aRs +aRF +aSb +aSs +aSJ +aSQ +aSY +aSr +acy +adf +adr +aaG +aaG +aeo +adY +afn +afG +agk +anK +aoc +apn +aqI +aXH +asb +aYr +aYT +aob +aXv +aXw +baI +aZg +aXS +agw +agw +agw +aXS +aXS +agw +aoC +apf +apN +aTq +adY +adY +adY +aac +aac +aac +avg +avg +avg +avg +avg +ayP +ayP +ayP +ayP +arl +aCl +arl +arl +arl +aDN +aDZ +arZ +arZ +aCH +arZ +arZ +arZ +aac +aac +arZ +aGI +avp +aHq +aHM +aIn +aIr +aJo +aJU +aJs +aLk +aLB +aMa +aMu +aMK +aMX +aLA +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (93,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -af -ar -PC -af -QD -QU -Rt -RG -Sb -Sr -Sr -SR -Sr -Sr -cy -df -dr -aG -aG -aG -dY -fo -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qE -dY -rV -rl -ac -ac -ac -ac -ac -ac -ac -ac -rl -zI -zI -zI -BP -Cm -CI -Di -rl -DN -Ea -rZ -EG -CH -Fg -FA -rZ -ac -ac -rZ -GJ -vp -Hr -HN -Io -IN -Jp -JV -KK -Ll -LC -Mb -Mv -MK -MY -LA -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaf +aar +aPC +aaf +aQD +aQU +aRt +aRG +aSb +aSr +aSr +aSR +aSr +aSr +acy +adf +adr +aaG +aaG +aaG +adY +afo +afG +agk +anK +aoe +apo +aqK +amA +anK +aob +aob +aob +aZg +aZf +baI +aZg +baP +agw +agw +agw +adY +aXS +agw +aoC +apf +apN +aqE +adY +arV +arl +aac +aac +aac +aac +aac +aac +aac +aac +arl +azI +azI +azI +aRR +aCm +aCK +aDi +arl +aDN +aEa +arZ +aEG +aCH +aFg +aFA +arZ +aac +aac +arZ +aGJ +avp +aHr +aHN +aIo +aIN +aJp +aJV +aKK +aLl +aLC +aMb +aMv +aMK +aMY +aLA +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (94,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ag -ag -ag -ag -ag -ag -RH -Sc -St -SK -Tl -SZ -Tc -Td -Tf -ds -dG -dG -aG -dY -cU -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pN -qq -dY -rW -rl -rl -rl -rl -rl -rl -rl -rl -rl -rl -zI -zI -zI -BP -Cn -CJ -Dj -rl -DO -Ea -rZ -EH -BO -CH -CH -rZ -ac -ac -rZ -GK -vp -Hr -HO -Ip -IO -Jq -JW -Js -Lj -LB -Mc -Mw -ML -LA -LA -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aag +aag +aag +aag +aag +aag +aRH +aSc +aSt +aSK +aTl +aPs +aTc +aTd +aTf +ads +adG +adG +aaG +adY +acU +afG +agk +anK +aof +apR +arm +arr +anK +anv +aXs +aVu +aYg +aXt +baI +baO +aXS +agw +agw +agw +adY +aXS +aXS +aXV +apf +apN +aqD +adY +arW +arl +arl +arl +arl +arl +arl +arl +arl +arl +arl +azI +azI +azI +aBP +aCn +aCJ +aDj +arl +aDO +aEa +arZ +aEH +aBO +aCH +aCH +arZ +aac +aac +arZ +aGK +avp +aHr +aHV +aIp +aIO +aJq +aJW +aJs +aLj +aLB +aMc +aMw +aML +aLA +aLA +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (95,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -as -PD -Qe -QE -QV -Ru -RI -ao -ao -ao -Tm -Ta -af -Te -dg -dt -dt -dZ -ep -dY -fp -fG -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pO -qF -rj -rX -sN -tt -uc -uM -vh -vT -wJ -xz -xz -yQ -zJ -zJ -Bh -BQ -Co -CK -Dk -rl -DN -Ea -Er -CH -EV -Fh -BO -rZ -ac -ac -rZ -GL -rZ -Hr -Hr -Iq -Ir -Jr -JX -KL -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aav +aPD +aQe +aQE +aQV +aRu +aRI +aao +aao +aao +aTm +aTa +aaf +aTe +adg +adt +adt +adZ +aep +adY +afp +afG +agk +anK +aph +apY +apY +aOL +anK +apX +aXE +aZl +aXr +apW +baI +baL +aXS +aXS +aXS +aXS +adY +agw +agw +aoC +apf +apO +aqF +arj +arX +asN +att +auc +auM +avh +avT +awJ +axz +axz +ayQ +azJ +azJ +aBh +aBQ +aCo +aCK +aDk +arl +aDN +aEa +aEr +aCH +aEV +aFh +aBO +arZ +aac +aac +arZ +aGL +arZ +aHr +aHr +aIq +aIr +aJr +aJX +aKL +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (96,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -aA -PE -Qf -QF -QW -Ru -RJ -ao -Su -SL -ST -Tn -af -cy -dh -cy -cy -df -eq -dY -fq -fI -fY -gj -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -gw -oC -pf -pP -qp -rk -rY -rY -rY -rY -uN -vi -vU -wK -xA -rY -rk -rY -AD -Bi -BR -Cp -CL -CL -rl -DM -Eb -rZ -EI -CH -BO -BO -rZ -rZ -rZ -rZ -GL -rZ -ac -ac -Ir -IP -Js -JY -KM -Kh -LD -LD -LD -MM -MZ -LD -NB -LD -LI -Kh -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aaA +aPE +aQf +aQF +aPt +aRu +aRJ +aao +aSu +ahO +aST +aTn +aaf +acy +adh +acy +acy +adf +aeq +adY +alG +afI +agk +anK +apk +apZ +arn +asa +anK +aXp +baU +aXF +aZd +aZQ +baJ +baO +agw +agw +agw +agw +adY +agw +agw +aoC +apf +apP +aqp +ark +arY +arY +arY +arY +auN +aAA +avU +awK +axA +arY +ark +arY +aAD +aBi +aBR +aCp +aCL +aCL +arl +aDM +aEb +arZ +aEI +aCH +aBO +aBO +arZ +arZ +arZ +arZ +aGL +arZ +aac +aac +aIr +aIP +aJs +aJY +aKM +aKh +aLD +aLD +aLD +aMM +aMZ +aLD +aNB +aLD +aLI +aKh +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (97,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -aC -PF -Qg -QG -QX -Rv -RK -ao -Sv -ad -ad -ad -ad -ad -ad -ad -cS -ea -er -eL -fr -fJ -fY -gk -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -gx -oD -pf -pP -qD -rl -rl -rl -rl -rl -rl -rl -rl -rl -xB -xB -xB -zK -xB -Bj -xB -xB -CK -CK -rl -DM -Ec -rZ -rZ -rZ -rZ -rZ -rZ -FQ -vp -Gs -GM -rZ -ac -ac -Ir -IQ -Js -JZ -KN -Kh -LD -LM -Mx -LM -Na -Np -LM -NJ -Oe -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aaC +aPF +aQg +aQG +aQX +aRv +aRK +aao +aSv +aad +aad +aad +aad +aad +aad +aad +acS +aea +aer +aeL +afr +afJ +agk +anK +anK +anK +anK +anK +anK +aXr +aXr +aXr +aXr +aZg +baK +aZg +adY +adY +adY +adY +adY +agx +agx +aoD +apf +apP +aqD +arl +arl +arl +arl +arl +arl +arl +arl +arl +axB +axB +axB +azK +axB +aBj +axB +axB +aCK +aCK +arl +aDM +aEc +arZ +arZ +arZ +arZ +arZ +arZ +aFQ +avp +aGs +aGM +arZ +aac +aac +aIr +aIQ +aJs +aJZ +aKN +aKh +aLD +aLM +aMx +aLM +aNa +aNp +aLM +aNJ +aOe +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (98,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -aD -PG -Qh -QH -QY -Ru -RL -Sd -Sb -ad -aY -bs -bL -ck -cv -ad -dH -eb -es -eM -fs -fK -fZ -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -gl -pg -pP -qE -dY -ac -ac -ac -ac -ac -ac -ac -ac -xB -yi -yR -zL -AE -Bk -BS -xB -CM -CM -rl -DM -DM -Es -DN -DM -DM -DN -Es -vp -Ge -Gt -GN -rZ -ac -ac -Ir -IR -Jt -Ka -KO -Kh -LD -LM -My -LM -Nb -Nq -LM -NK -LD -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aaD +aPG +aQh +aQH +aQY +aRu +aRL +aSd +aPq +aad +aaY +abs +abL +ack +acv +aad +adH +aeb +aes +aeM +afs +afK +afZ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aqJ +aSZ +bbl +baM +aXA +aXA +aXA +aXA +aXA +aXB +aXB +aXB +aXC +aXD +aqE +adY +aac +aac +aac +aac +aac +aac +aac +aac +axB +ayi +ayR +azL +aAE +aBk +aBS +axB +aCM +aCM +arl +aDM +aDM +aEs +aDN +aDM +aDM +aDN +aEs +avp +aGe +aGt +aZC +arZ +aac +aac +aIr +aIR +aJt +aKa +aKO +aKh +aLD +aLM +aMy +aLM +aNb +aNq +aLM +aNK +aLD +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (99,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -aE -PH -Qi -QI -QZ -Ru -RM -Se -Sw -ad -aZ -ai -aG -ai -bN -ad -dI -df -et -dY -ft -fL -ga -gm -gy -gm -gm -gm -gm -gm -gm -gm -gm -iW -jo -jo -jo -jR -fG -nd -nt -nt -nt -nt -nt -pQ -qD -dY -ac -ac -ac -ac -ac -ac -ac -ac -xB -yj -yS -zM -yS -Bl -Ia -xB -rl -rl -rl -DN -Ed -rZ -EJ -EW -Fi -Om -rZ -FR -zS -Gu -GO -rZ -ac -HP -HP -HP -HP -Kb -HP -Kh -LE -LM -Mz -LM -Nc -LM -LM -NL -Of -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aay +aPH +aQi +aQI +aQZ +aRu +aRM +aSe +aSw +aad +aaZ +aai +aaG +aai +abN +aad +adI +adf +aet +adY +aft +afL +aga +agm +agy +agm +agm +agm +agm +agm +agm +agm +agm +aZR +baW +ajo +ajo +ajR +afG +and +ant +ant +ant +ant +ant +anw +aqD +adY +aZw +aZy +aac +aac +aac +aac +aac +aac +axB +ayj +ayS +azM +ayS +aBl +aIa +axB +arl +arl +arl +aDN +aEd +arZ +aEJ +aEW +aFi +aOm +arZ +aFR +azS +aGu +aGO +arZ +aac +aHP +aHP +aHP +aHP +aKb +aHP +aKh +aLE +aLM +aMz +aLM +aNc +aLM +aLM +aNL +aOf +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (100,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -ah -ah -ah -ah -ah -ah -Sf -Tb -Ti -ad -ba -ai -bM -bu -cw -ad -Tg -df -bt -dY -fu -fM -fM -fM -gz -gH -gR -hi -fM -hN -ib -fM -iE -iX -jp -ib -jH -jS -mL -fM -ib -fM -fM -iE -ph -pR -qG -dY -ac -ac -ac -ac -ac -ac -ac -ac -xB -yk -yT -yS -AF -Bm -BT -xB -ac -rZ -DC -DM -Ee -rZ -rZ -rZ -rZ -rZ -rZ -vp -Gf -Gu -GO -rZ -ac -HP -Is -IS -Ju -Kc -KP -Lm -LF -Md -Md -Md -LJ -Md -Md -NM -LD -Kh -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aah +aah +aah +aah +aah +aah +aSf +aTb +aTi +aad +aba +aai +abM +abu +acw +aad +aTg +adf +abt +adY +afu +afM +afM +aqG +agz +agH +agR +anc +afM +ahN +aib +afM +aiE +aja +ajS +aZN +aZP +ajC +ajI +asB +afG +anu +afM +afM +aiE +apP +aSL +adY +aZx +aZz +aZA +aac +aac +aac +aac +aac +axB +ayk +ayT +ayS +aAF +aBm +aBT +axB +aac +arZ +aDC +aDM +aEe +arZ +arZ +arZ +arZ +arZ +arZ +avp +aGf +aGu +aGO +arZ +aac +aHP +aIs +aIS +aJu +aKc +aKP +aLm +aLF +aMd +aMd +aMd +aLJ +aMd +aMd +aNM +aLD +aKh +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (101,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -aF -PI -Qj -QJ -Ra -ah -RN -ao -Sb -ad -bb -aG -bN -ad -ad -ad -dK -df -ad -dY -dY -dY -dY -dY -gA -dY -gS -dY -dY -dY -dY -dY -iF -iY -dY -dY -dY -dY -dY -dY -dY -dY -dY -dY -pi -pS -dY -rl -rZ -rZ -rZ -rZ -rZ -ac -ac -ac -xB -yl -yU -zN -AG -Bn -BU -xB -ac -rZ -DD -DM -Ef -rZ -ac -ac -ac -ac -rZ -vp -Gg -Gv -GP -rZ -ac -HP -It -IT -Jv -Kd -KQ -Ln -LG -LM -LM -LM -Nd -LM -LM -LM -LD -Kh -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aaF +aPI +aQj +aQJ +aPn +aah +aRN +aao +aSb +aad +abb +aaG +abN +aad +aad +aad +adK +adf +aad +adY +adY +adY +adY +adY +agA +adY +agS +adY +adY +adY +adY +adY +aiF +ajd +aYd +aYd +aYd +aYd +aYQ +agY +anj +aYd +aYd +aYd +aYd +ajL +adY +adY +arZ +arZ +arZ +arZ +arZ +aac +aac +aac +axB +ayl +ayU +azN +aAG +aBn +aBU +axB +aac +arZ +aDD +aDM +aEf +arZ +aac +aac +aac +aac +arZ +avp +aGg +aGv +aGP +arZ +aac +aHP +aIt +aIT +aJv +aKd +aKQ +aLn +aLG +aLM +aLM +aLM +aNd +aLM +aLM +aLM +aLD +aKh +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (102,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ah -aH -PJ -Qk -QK -Rb -Rw -SS -ao -Sb -ad -bc -bt -bO -ad -cx -cy -dJ -df -ad -Th -ac -ny -ny -dY -en -du -gT -du -hv -hO -hO -in -du -iZ -ee -jC -jI -jT -id -id -id -id -oa -du -pj -pT -du -rm -sa -sO -sO -ud -rZ -rZ -rZ -rZ -xB -ym -yU -zO -xB -xB -xB -xB -ac -rZ -DE -DM -Ee -rZ -ac -ac -ac -ac -rZ -vp -vp -Gw -GQ -rZ -ac -HP -Iu -IU -Jw -Ke -KR -Lo -LH -Me -MA -MN -Ne -Nr -NC -NN -Og -Kh -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aah +aaH +aPJ +aQk +aQK +aRb +aRw +aSS +aao +aSb +aad +abc +abt +abO +aad +acx +acy +adJ +adf +aad +aTh +aac +any +any +adY +aen +adu +agT +adu +ahv +aau +aau +ahR +adu +ajp +aYd +ajZ +aYt +aYG +aYR +ajY +ajY +aXi +aXk +ame +aYd +aZZ +arZ +baj +bam +bap +bap +aud +arZ +arZ +arZ +arZ +axB +aym +ayU +azO +axB +axB +axB +axB +aac +arZ +aDE +aDM +aEe +arZ +aac +aac +aac +aac +arZ +avp +avp +aGw +aGQ +arZ +aac +aHP +aIu +aIU +aJw +aKe +aKR +aLo +aLH +aMe +aMA +aMN +aNe +aNr +aNC +aNN +aOg +aKh +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (103,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -aQ -PK -Ql -QL -Rc -Rx -RP -Sg -Sb -ad -bd -ai -bP -ad -cy -ad -dJ -df -ad -Th -Zt -ny -ny -dY -dY -du -gT -du -hw -hP -hP -io -du -iZ -ee -du -du -du -du -du -du -du -ob -du -pk -pT -du -rn -sb -sb -sb -ue -rZ -vj -vV -wL -xB -yn -yV -zP -xB -ac -ac -ac -ac -rZ -DF -DN -Ee -rZ -ac -ac -ac -rZ -rZ -rZ -rZ -rZ -GL -rZ -ac -HP -Iv -IT -Jx -Kf -Jw -Lp -LI -LM -LM -LM -Nf -LM -LM -LM -LD -Kh -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aaQ +aPK +aQl +aQL +aRc +aRx +aRP +aSg +aSb +aad +abd +aai +abP +aad +acy +aad +adJ +adf +aad +aTh +aZt +any +any +adY +adY +adu +agT +adu +ahw +ahP +ahP +ain +adu +ajp +aYd +aqT +aYu +aYH +aYS +amM +aro +aZE +aZJ +bba +aYd +baa +arZ +bak +avX +avX +avX +baw +arZ +aZB +avV +awL +axB +ayn +ayV +azP +axB +aac +aac +aac +aac +arZ +aDF +aDN +aEe +arZ +aac +aac +aac +arZ +arZ +arZ +arZ +arZ +aGL +arZ +aac +aHP +aIv +aIT +aJx +aKf +aJw +aLp +aLI +aLM +aLM +aLM +aNf +aLM +aLM +aLM +aLD +aKh +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (104,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -aW -PL -Qm -QM -Rd -Rw -Qa -Sh -Sx -ad -be -ai -bQ -ad -cy -ad -dJ -df -ad -Th -Th -eN -ny -ny -ny -du -gU -du -hx -hP -me -ip -iG -ja -ee -du -jJ -jU -jU -ne -nu -nJ -oc -du -pl -pU -du -pk -ee -ee -gY -gY -du -vk -vW -vW -xB -xB -yW -xB -xB -rZ -rZ -rZ -rZ -rZ -rZ -DP -rZ -rZ -rZ -rZ -rZ -rZ -FH -FS -EV -Er -GL -rZ -ac -HP -Iw -IV -Jy -Kg -KS -Lq -LJ -Md -Md -Md -LJ -Md -Md -NO -LD -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aaW +aPL +aQm +aQM +aRd +aRw +aQa +aSh +aSb +aad +abe +aai +abQ +aad +acy +aad +adJ +adf +aad +aTh +aTh +aeN +any +any +any +adu +agU +adu +ahx +aju +aju +aip +aiI +ajq +aYd +aYj +aXu +aro +aro +ang +aro +aro +aXq +aZX +aYd +avi +arZ +aFR +avp +avp +axC +axC +arZ +avk +avW +avW +axB +axB +ayW +axB +axB +arZ +arZ +arZ +arZ +arZ +arZ +aDP +arZ +arZ +arZ +arZ +arZ +arZ +aFH +aFS +aEV +aEr +aGL +arZ +aac +aHP +aIw +aIV +aJy +aKg +aKS +aLq +aLJ +aMd +aMd +aMd +aLJ +aMd +aMd +aNO +aLD +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (105,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -aX -PM -Qn -QN -Re -ah -Qb -Sh -Tj -ad -bf -ai -bR -ad -cy -du -dL -ec -du -du -du -Za -XK -du -du -du -gV -du -hy -hQ -ic -iq -du -jb -ee -du -jK -jV -mM -mM -mM -mM -od -du -pm -pT -du -ee -jK -ee -ee -gY -du -vl -vW -vW -xC -yo -yX -OT -zQ -Bo -zQ -zQ -zQ -zQ -zQ -zQ -Eg -Eg -Eg -zQ -Fj -rZ -rZ -rZ -rZ -rZ -GL -rZ -ac -HP -Ix -IW -Jz -Kh -KT -Kh -LK -LM -LM -LM -Ng -LM -LM -NP -Oh -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aaE +aPM +aQn +aQN +aRe +aah +aQb +aSh +aTj +aad +abf +aai +abR +aad +acy +adu +adL +aec +adu +adu +adu +aZa +aXK +adu +adu +adu +agV +adu +aSF +aju +aju +ais +adu +ajb +aYd +aQW +aYv +aXy +aro +anh +aro +aXy +aZK +aRa +aYd +bac +arZ +avp +ban +avp +avp +axC +arZ +avl +avW +avW +axC +ayo +ayX +aOT +azQ +aBo +azQ +azQ +azQ +azQ +azQ +azQ +aEg +aEg +aEg +azQ +aFj +arZ +arZ +arZ +arZ +arZ +aGL +arZ +aac +aHP +aIx +aIW +aJz +aKh +aKT +aKh +aLK +aLM +aLM +aLM +aNg +aLM +aLM +aNP +aOh +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (106,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -ah -ah -Qo -ah -ah -ah -Qb -Sh -Tk -ad -bg -ai -bS -ad -cy -du -dL -ec -ev -eO -fv -fv -gb -gn -gB -du -gT -du -hz -hR -id -ir -du -jb -ee -du -ee -jW -gY -ee -ee -ee -jb -du -ee -pT -du -ro -ee -ee -ee -rZ -rZ -vm -vW -wM -xD -yp -yY -vp -vp -ug -vp -rZ -rZ -rZ -rZ -DQ -Eh -xC -EK -vp -Fk -zQ -zQ -zQ -zQ -zQ -GR -rZ -ac -HP -HP -HP -HP -Kh -KU -Kh -LL -LM -MB -LM -Nh -Ns -LM -NQ -LD -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aah +aah +aQo +aah +aah +aah +aQb +aSh +aTk +aad +abg +aai +abS +aad +acy +adu +adL +aec +aev +aeO +afv +afv +agb +agn +agB +adu +agT +adu +ahz +ahQ +aid +aiq +adu +ajb +aYd +aYe +aYw +aXk +aro +ang +aro +aXi +aZL +ajV +aYd +bad +arZ +bal +avp +avp +avp +arZ +arZ +avm +avW +awM +axD +ayp +ayY +avp +avp +aug +avp +arZ +arZ +arZ +arZ +aDQ +aEh +axC +aEK +avp +aFk +azQ +azQ +azQ +azQ +azQ +aGR +arZ +aac +aHP +aHP +aHP +aHP +aKh +aKU +aKh +aLL +aLM +aMB +aLM +aNh +aNs +aLM +aNQ +aLD +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (107,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -cT -PN -Qp -QO -Rf -ah -RQ -Sh -Sv -ad -bh -aG -bT -ad -cz -du -dL -ec -ew -eP -fw -fw -fw -go -gC -du -gW -du -du -du -du -du -du -jc -du -du -ee -jX -mN -nf -nv -nK -oe -du -pn -pV -du -du -sc -du -du -rZ -uO -vn -vX -vX -xE -yp -yZ -zR -AH -rZ -rZ -rZ -ac -ac -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -ac -ac -ac -ac -ac -Kh -KV -Lr -LM -LM -MC -LM -Ni -Nt -LM -NR -Oe -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aaI +aPN +aQp +aQO +aRf +aah +aRQ +aSh +aSv +aad +abh +aaG +abT +aad +acz +adu +adL +aec +aew +aeP +afw +afw +afw +ago +agC +adu +agW +adu +adu +aie +aiu +adu +adu +ajc +aYd +aXy +aYx +aYH +aro +ang +aro +aZE +aZM +aXy +aYd +bae +arZ +arZ +bao +arZ +arZ +arZ +auO +avn +avX +avX +axE +ayp +ayZ +azR +aAH +arZ +arZ +arZ +aac +aac +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +arZ +aac +aac +aac +aac +aac +aKh +aKV +aLr +aLM +aLM +aMC +aLM +aNi +aNt +aLM +aNR +aOe +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (108,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -eu -PO -Qq -QP -Rg -ah -RR -Si -Sy -ad -bi -ai -bN -ad -cy -du -dL -ed -ex -eQ -fx -fN -gc -gp -gD -gD -lL -hj -hA -hS -ie -is -iH -jd -jq -jq -jq -jY -mO -ng -nw -hB -of -oE -oE -pW -qH -qH -qH -qH -qH -uf -uP -vo -vY -wN -wN -yq -za -zS -AI -rZ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Kh -Kh -Kh -LN -LD -LD -MO -Nj -LD -LD -LD -LI -Kh -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aeu +aPO +aQq +aQP +aRg +aah +aPo +aSi +aSy +aad +abi +aai +abN +aad +acy +adu +adL +aed +aex +aeQ +afx +afN +agc +agp +agD +agD +alL +ahj +ahA +ahS +aic +aif +aiH +aiX +ajs +aYl +aYy +aYl +aYU +ani +aZq +aZF +aZS +aYl +aZY +baf +bai +bai +bai +bai +bai +auf +auP +avo +avY +awN +awN +ayq +aza +azS +aAI +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aKh +aKh +aKh +aLN +aLD +aLD +aMO +aNj +aLD +aLD +aLD +aLI +aKh +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (109,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ah -ah -ah -ah -ah -ah -ah -Kv -Sj -Kv -ad -bj -bu -bU -ad -cy -du -dL -ee -ey -eR -fw -fw -fw -gq -gX -gX -mc -hk -hB -ef -if -ef -iI -ef -ef -ef -ef -jZ -mP -id -nx -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -ug -uQ -vp -vp -wO -vp -vp -vp -zT -AJ -rZ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -Kh -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aah +aah +aah +aah +aah +aah +aah +aKv +aSj +aKv +aad +abj +abu +abU +aad +acy +adu +adL +aee +aey +aeR +afw +afw +afw +agq +agX +agX +amc +ahk +ahB +ahT +ahU +ahT +ahT +aiY +ajJ +aro +aro +aro +aYV +aZi +aZr +aZG +aro +aro +aYd +avp +avp +avp +avp +avp +avp +aug +auQ +avp +avp +awO +avp +avp +avp +azT +aAJ +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aKh +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (110,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ki -PP -Qr -QQ -Rh -Ry -RS -Sk -Sz -ad -ad -bv -ad -ad -cA -du -dM -ee -ez -eS -fy -fy -fy -gr -gE -gI -ee -dL -du -hT -ig -ig -iJ -du -du -du -jL -du -du -du -du -du -du -jL -du -du -du -du -du -du -du -rZ -uR -vq -vZ -vZ -vZ -vZ -vZ -zU -rZ -rZ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKi +aPP +aQr +aQQ +aRh +aRy +aRS +aSk +aSz +aad +aad +abv +aad +aad +acA +adu +adM +aee +aez +aeS +afy +aXT +afy +agr +agE +agI +aee +adL +adu +amP +aoE +aiL +aiL +aoE +aoE +api +api +aoE +aZV +aZj +baX +aZG +aro +aro +aYd +arZ +arZ +arZ +arZ +arZ +arZ +arZ +auR +aod +avZ +apj +avZ +avZ +avZ +azU +arZ +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (111,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ki -PQ -Qs -Qs -Qs -Qs -Qs -Sl -SA -ad -bk -bw -bV -bV -cB -du -dL -ee -eA -eT -fz -fO -fO -fz -fO -gJ -ee -dL -du -hU -id -it -iK -du -jr -du -ee -du -mQ -nh -ny -ny -du -ee -du -pX -qI -rp -sd -sP -pX -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -rZ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKi +aPQ +aQs +aQs +aQs +aQs +aQs +aSl +aSA +aad +abk +abw +abV +abV +acB +adu +adL +aee +aeA +aeT +afz +afO +afO +afz +afO +agJ +aee +adL +adu +ahP +aiL +ahW +ahW +amR +aoE +aYm +amS +aoE +aoE +aZk +aoE +aZG +aro +aro +aGN +bag +aYd +aac +aac +aac +aac +arZ +anJ +anJ +anJ +arZ +arZ +arZ +arZ +arZ +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (112,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ki -PR -Qs -Qs -Ri -Rz -RT -Sm -SB -ad -bl -bx -bV -bW -bV -du -dL -ee -ee -ee -ee -ee -ee -ee -ee -ee -ee -dL -du -du -du -du -iL -du -js -du -ee -du -mR -ni -nz -ny -du -ee -du -pX -qJ -rp -se -sQ -pX -du -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKi +aPR +aQs +aQs +aRi +aRz +aRT +aSm +aSB +aad +abl +abx +abV +abW +abV +adu +adL +aee +aee +aee +aee +aee +aee +aee +aee +aee +aee +adL +adu +ahV +aoE +air +aiK +ait +aiG +aih +aYB +aPT +aZW +aZp +api +aZG +aro +baY +aYd +aue +aYd +aac +arZ +arZ +arZ +arZ +arZ +baD +arZ +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (113,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ki -PS -Qs -Qs -Rj -RA -Qs -Sn -SC -ad -bm -by -bW -cl -cC -du -dN -ef -ef -ef -ef -ef -ef -ef -ef -ef -ef -hl -du -hV -hP -hP -hP -du -jt -jD -ee -du -du -du -du -du -du -ee -po -pY -iu -rq -rq -iu -tu -du -ac -ac -ac -oF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKi +aPS +aQs +aQs +aRj +aRA +aQs +aSn +aSC +aad +abm +aby +abW +acl +acC +adu +adN +aef +aef +aef +aef +aef +aef +aef +aef +aef +aef +ahl +adu +ahX +aiL +ait +amN +ane +aiZ +aiv +ajH +ajX +aZc +baG +api +aZG +aro +aro +ase +bah +aYd +aac +arZ +baq +bat +bax +baA +avk +baq +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (114,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Kv -PT -Qs -Qs -Rk -RB -RU -So -SB -ad -ad -ad -ad -ad -ad -du -du -du -du -du -du -du -du -du -du -du -du -du -du -hW -hP -iu -iM -du -ju -du -ee -jK -mS -nj -ee -ee -ee -ee -du -pX -qJ -rr -rr -sQ -pX -du -pp -ac -oF -oF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aKv +aaJ +aQs +aQs +aRk +aRB +aRU +aSo +aTK +aad +aad +aad +aad +aad +aad +adu +adu +adu +adu +adu +adu +adu +adu +adu +adu +adu +adu +adu +adu +aig +aoE +aiL +aiL +aiL +aoE +aqY +anf +aYK +amL +aZm +api +aZH +aZT +aro +aYd +aYd +aYd +aac +arZ +baq +bau +bax +baB +baE +baq +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (115,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Kv -PU -Qs -Qs -Qs -Qs -Qs -Qs -SD -Kv -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -du -hX -ih -hP -hP -du -du -du -du -du -du -du -du -du -du -du -du -pX -qK -pY -sf -sQ -pX -du -pp -pp -pp -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aKv +aPU +aQs +aQs +aQs +aQs +aQs +aQs +aSD +aKv +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adu +aiJ +aiM +ahP +ajt +ajt +aoE +aoE +aoE +ajW +aoE +aoE +aoE +ajT +aZG +aro +aYd +aac +aac +aac +arZ +bar +avW +bay +bay +avW +baF +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (116,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -Kv -PV -Qt -QR -Rl -RC -RV -Sp -SE -Kv -ac -ac -ac -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -du -du -du -iv -iN -du -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -du -pZ -du -pZ -pZ -du -pZ -du -pp -pp -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aKv +aPV +aQt +aQR +aRl +aRC +ahi +aSp +aSE +aKv +aac +aac +aac +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adu +adu +adu +ahP +ahP +ahP +ajT +arq +aPu +aYY +aYZ +baZ +aZs +ajT +aZG +aro +aYd +aoF +aoF +aac +arZ +baq +bau +baz +baz +baE +baq +arZ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (117,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Kv -Kv -Kv -Kv -Kv -Kv -Kv -Sq -Sq -Kv -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -du -du -du -du -ac -ac -ac -ac -ac -ac -ac -ac -ac -oF -oF -pp -pp -pp -pp -pq -pq -pp -pp -pq -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aKv +aKv +aKv +aKv +aKv +aKv +aKv +aSq +aSq +aKv +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +adu +aio +amQ +ahP +amO +aYp +aYp +aYM +aYZ +aZn +aZu +aZI +aZU +ajD +aYd +app +app +aoF +arZ +baq +bav +bar +baC +baE +baq +arZ +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (118,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -pq -pq -pq -pq -pq -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -jM -jM -jM -jM -jM -jM -jM -jM -pp -pq -pq -pq -pq -pq -pq -pq -pq -pq -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +apq +apq +apq +apq +apq +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +adu +adu +adu +adu +ajT +aYq +aYE +aYO +aYZ +aZn +aZv +ajT +aiN +aQu +aYd +apq +apq +apq +arZ +bas +arZ +bas +bas +arZ +bas +arZ +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (119,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -pq -pq -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -jM -jM -jM -jM -jM -jM -jM -jM -pq -pq -pq -pq -pq -pq -jM -pq -pq -pq -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +apq +apq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +ajT +aYW +aYF +aYP +aYZ +aZo +aZD +ajT +ajr +ajr +aYd +apq +apq +apq +apq +apq +ajM +apq +apq +apq +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (120,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -pq -pq -pq -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajT +ajT +ajT +ajT +ajT +ajT +ajT +ajT +ajM +ajM +apq +apq +apq +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (121,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +aUa +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (122,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (123,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (124,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (125,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (126,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (127,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (128,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (129,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -jM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +ajM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (130,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (131,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (132,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (133,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (134,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (135,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (136,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (137,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (138,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (139,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} diff --git a/maps/tether/tether-03-surface3.dmm b/maps/tether/tether-03-surface3.dmm index 6f5c59e475..e543c61fc2 100644 --- a/maps/tether/tether-03-surface3.dmm +++ b/maps/tether/tether-03-surface3.dmm @@ -1,20 +1,23 @@ //MAP CONVERTED BY dmm2tgm.py THIS HEADER COMMENT PREVENTS RECONVERSION, DO NOT REMOVE -"aa" = ( +"aaa" = ( /turf/unsimulated/wall/planetary/virgo3b, /area/tether/surfacebase/outside/outside3) -"ab" = ( +"aab" = ( /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"ac" = ( +"aac" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"ad" = ( -/obj/machinery/camera/network/outside{ +"aad" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"ae" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"aae" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/machinery/light{ dir = 8; @@ -23,13 +26,13 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"af" = ( +"aaf" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/upperhall) -"ag" = ( +"aag" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/triage) -"ah" = ( +"aah" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -38,7 +41,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/triage) -"ai" = ( +"aai" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -47,7 +50,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/breakroom) -"aj" = ( +"aaj" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -67,21 +70,21 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"ak" = ( +"aak" = ( /obj/structure/bed/chair, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"al" = ( +"aal" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"am" = ( +"aam" = ( /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"an" = ( +"aan" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -98,7 +101,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/upperhall) -"ao" = ( +"aao" = ( /obj/structure/closet/secure_closet/paramedic, /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -108,26 +111,38 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ap" = ( +"aap" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, /obj/effect/floor_decal/borderfloorwhite{ - dir = 1 + dir = 4 }, /obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 }, -/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aq" = ( +"aaq" = ( /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"ar" = ( +"aar" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/open, /area/tether/surfacebase/medical/triage) -"as" = ( +"aas" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 5 }, @@ -145,10 +160,10 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"at" = ( +"aat" = ( /turf/simulated/open, /area/tether/surfacebase/medical/triage) -"au" = ( +"aau" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -158,7 +173,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/breakroom) -"av" = ( +"aav" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -167,44 +182,44 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aw" = ( +"aaw" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"ax" = ( +"aax" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"ay" = ( +"aay" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"az" = ( +"aaz" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/patient_a) -"aA" = ( +"aaA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aB" = ( +"aaB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aC" = ( +"aaC" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aD" = ( +"aaD" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -213,10 +228,10 @@ }, /turf/simulated/open, /area/tether/surfacebase/medical/triage) -"aE" = ( +"aaE" = ( /turf/simulated/wall, /area/vacant/vacant_site2) -"aF" = ( +"aaF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -225,7 +240,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"aG" = ( +"aaG" = ( /obj/item/device/radio/intercom/department/security{ dir = 4; icon_state = "secintercom"; @@ -240,7 +255,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"aH" = ( +"aaH" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -251,12 +266,12 @@ /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aI" = ( +"aaI" = ( /obj/effect/floor_decal/steeldecal/steel_decals10, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aJ" = ( +"aaJ" = ( /obj/machinery/sleeper{ dir = 8 }, @@ -265,14 +280,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aK" = ( +"aaK" = ( /obj/machinery/sleep_console, /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aL" = ( +"aaL" = ( /obj/machinery/light{ dir = 1 }, @@ -284,7 +299,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aM" = ( +"aaM" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -294,18 +309,18 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aN" = ( +"aaN" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aO" = ( +"aaO" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/donut, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aP" = ( +"aaP" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -314,7 +329,7 @@ }, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"aQ" = ( +"aaQ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -327,7 +342,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aR" = ( +"aaR" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 }, @@ -337,20 +352,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aS" = ( +"aaS" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aT" = ( +"aaT" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aU" = ( +"aaU" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -368,7 +383,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"aV" = ( +"aaV" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -384,7 +399,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"aW" = ( +"aaW" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 @@ -400,10 +415,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"aX" = ( +"aaX" = ( /turf/simulated/open, /area/tether/surfacebase/security/upperhall) -"aY" = ( +"aaY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -412,14 +427,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"aZ" = ( +"aaZ" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ba" = ( +"aba" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"bb" = ( +"abb" = ( /obj/machinery/bodyscanner{ dir = 8 }, @@ -428,14 +443,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"bc" = ( +"abc" = ( /obj/machinery/body_scanconsole, /obj/effect/floor_decal/corner_steel_grid{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"bd" = ( +"abd" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -443,10 +458,10 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_a) -"be" = ( +"abe" = ( /turf/simulated/wall, /area/tether/surfacebase/reading_room) -"bf" = ( +"abf" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -455,7 +470,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"bg" = ( +"abg" = ( /obj/machinery/door/blast/shutters{ id = "hangarsurface"; name = "Engine Repair Bay" @@ -463,10 +478,14 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"bh" = ( -/turf/simulated/wall/r_wall, -/area/bridge/secondary) -"bi" = ( +"abh" = ( +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/tether/surfacebase/medical/triage) +"abi" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -484,7 +503,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bj" = ( +"abj" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -497,7 +516,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bk" = ( +"abk" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -509,7 +528,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bl" = ( +"abl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -518,7 +537,7 @@ }, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bm" = ( +"abm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -535,14 +554,14 @@ /obj/random/cigarettes, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bn" = ( +"abn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bo" = ( +"abo" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -552,7 +571,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bp" = ( +"abp" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 @@ -572,12 +591,12 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"bq" = ( +"abq" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"br" = ( +"abr" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -606,7 +625,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"bs" = ( +"abs" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -630,26 +649,52 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"bt" = ( +"abt" = ( /obj/structure/table/glass, /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"bu" = ( +"abu" = ( /obj/structure/table/glass, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"bv" = ( -/turf/simulated/open, -/area/bridge/secondary) -"bw" = ( -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/corner/blue/full{ - dir = 8 +"abv" = ( +/obj/structure/table/glass, +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bx" = ( +/obj/item/roller{ + pixel_y = 16 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "surfmed"; + name = "Medical Shutters"; + pixel_x = 0; + pixel_y = -24; + req_access = list(5) + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abw" = ( +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"abx" = ( /obj/structure/table, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -661,14 +706,26 @@ /obj/random/cigarettes, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"by" = ( -/obj/machinery/ai_status_display{ - pixel_y = 32 +"aby" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/computer/security, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bz" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 0; + pixel_y = 26 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"abz" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/zpipe/down/supply, @@ -679,17 +736,24 @@ icon_state = "32-2" }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"bA" = ( -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() +/area/tether/surfacebase/surface_three_hall) +"abA" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/computer/communications, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bB" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/light{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"abB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/railing, @@ -700,29 +764,32 @@ icon_state = "1-2" }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"bC" = ( -/obj/machinery/status_display{ - pixel_y = 32 +/area/tether/surfacebase/surface_three_hall) +"abC" = ( +/obj/machinery/vending/snack, +/obj/effect/floor_decal/borderfloor{ + dir = 10 }, -/obj/machinery/computer/supplycomp, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"bD" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/breakroom) +"abD" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"bE" = ( +"abE" = ( /obj/structure/bed/chair{ dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/carpet/blue, /area/tether/surfacebase/security/breakroom) -"bF" = ( +"abF" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 0 @@ -735,7 +802,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bG" = ( +"abG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -746,7 +813,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bH" = ( +"abH" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 4 @@ -760,11 +827,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bI" = ( +"abI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bJ" = ( +"abJ" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -778,7 +845,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bK" = ( +"abK" = ( /obj/machinery/light{ dir = 1 }, @@ -786,14 +853,14 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bL" = ( +"abL" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/taser, /obj/item/weapon/gun/energy/taser, /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bM" = ( +"abM" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/stunrevolver, /obj/machinery/firealarm{ @@ -806,7 +873,7 @@ /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bN" = ( +"abN" = ( /obj/structure/closet/bombclosetsecurity, /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/light{ @@ -814,12 +881,12 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"bO" = ( +"abO" = ( /obj/effect/decal/cleanable/dirt, /obj/random/trash, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bP" = ( +"abP" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -829,19 +896,19 @@ /obj/random/junk, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bQ" = ( +"abQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"bR" = ( +"abR" = ( /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bS" = ( +"abS" = ( /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bT" = ( +"abT" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/table/rack, /obj/random/maintenance/medical, @@ -851,7 +918,7 @@ /obj/random/toy, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"bU" = ( +"abU" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -878,7 +945,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bV" = ( +"abV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 2; @@ -887,11 +954,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bW" = ( +"abW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bX" = ( +"abX" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -910,7 +977,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"bY" = ( +"abY" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -920,7 +987,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"bZ" = ( +"abZ" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -938,7 +1005,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"ca" = ( +"aca" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -949,7 +1016,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_a) -"cb" = ( +"acb" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -964,7 +1031,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cc" = ( +"acc" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -976,7 +1043,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cd" = ( +"acd" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 4 }, @@ -988,7 +1055,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ce" = ( +"ace" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -1006,7 +1073,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cf" = ( +"acf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1028,10 +1095,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"cg" = ( +"acg" = ( /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ch" = ( +"ach" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -1042,46 +1109,88 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ci" = ( +"aci" = ( /obj/machinery/light/small{ dir = 1 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"cj" = ( +"acj" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"ck" = ( -/obj/structure/flora/pottedplant, -/obj/effect/floor_decal/corner/blue/full{ +"ack" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cl" = ( -/obj/machinery/computer/station_alert/all{ - icon_state = "computer"; +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cm" = ( -/obj/machinery/camera/network/research, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 4; - pixel_y = 26 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"cn" = ( -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"co" = ( +/area/tether/surfacebase/surface_three_hall) +"acl" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acm" = ( +/obj/structure/sink{ + dir = 4; + icon_state = "sink"; + pixel_x = 11; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/public_garden_three) +"acn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aco" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 @@ -1102,7 +1211,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cp" = ( +"acp" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -1124,10 +1233,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cq" = ( +"acq" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cr" = ( +"acr" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -1147,7 +1256,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cs" = ( +"acs" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -1156,21 +1265,21 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"ct" = ( +"act" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cu" = ( +"acu" = ( /obj/structure/table/rack, /obj/random/tetheraid, /obj/random/maintenance/medical, /turf/simulated/floor/wood, /area/vacant/vacant_site2) -"cv" = ( +"acv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"cw" = ( +"acw" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -1180,19 +1289,19 @@ }, /turf/simulated/open, /area/vacant/vacant_site2) -"cx" = ( +"acx" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_x = 30; pixel_y = 0 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cy" = ( +"acy" = ( /obj/effect/decal/cleanable/dirt, /mob/living/simple_mob/vore/aggressive/mimic, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"cz" = ( +"acz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8; icon_state = "borderfloor"; @@ -1203,7 +1312,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cA" = ( +"acA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -1214,7 +1323,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cB" = ( +"acB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -1228,7 +1337,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cC" = ( +"acC" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -1246,7 +1355,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cD" = ( +"acD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1267,7 +1376,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cE" = ( +"acE" = ( /obj/machinery/door/airlock/glass_security{ name = "Break Room"; req_access = list(1) @@ -1289,7 +1398,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"cF" = ( +"acF" = ( /obj/structure/table/rack, /obj/item/weapon/gun/energy/taser, /obj/item/weapon/gun/energy/taser, @@ -1306,7 +1415,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cG" = ( +"acG" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1314,7 +1423,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"cH" = ( +"acH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1337,7 +1446,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cI" = ( +"acI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1352,7 +1461,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cJ" = ( +"acJ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1369,7 +1478,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cK" = ( +"acK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -1386,7 +1495,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cL" = ( +"acL" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -1407,7 +1516,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"cM" = ( +"acM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/decal/cleanable/dirt, @@ -1418,20 +1527,20 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"cN" = ( +"acN" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cO" = ( +"acO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cP" = ( +"acP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1444,14 +1553,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cQ" = ( +"acQ" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"cR" = ( +"acR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1470,60 +1579,86 @@ /obj/machinery/light_switch{ dir = 1; on = 0; - pixel_x = -14; + pixel_x = -10; pixel_y = -24 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"cS" = ( +"acS" = ( /obj/machinery/door/airlock{ name = "Room 1" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/reading_room) -"cT" = ( +"acT" = ( /obj/machinery/door/airlock{ name = "Room 2" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/reading_room) -"cU" = ( +"acU" = ( /obj/machinery/door/airlock{ name = "Room 3" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/reading_room) -"cV" = ( -/obj/structure/bed/chair/office/dark{ +"acV" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cW" = ( -/obj/machinery/computer/transhuman/resleeving{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cX" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/machinery/computer/power_monitor{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cY" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"cZ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atm{ + pixel_y = 31 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acW" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acX" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass/hidden/steel, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"acY" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 5 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"acZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -1534,8 +1669,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"da" = ( +/area/tether/surfacebase/surface_three_hall) +"ada" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -1543,7 +1678,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"db" = ( +"adb" = ( /obj/machinery/light_switch{ pixel_x = 25 }, @@ -1554,7 +1689,7 @@ }, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dc" = ( +"adc" = ( /obj/machinery/vending/medical, /obj/effect/floor_decal/borderfloorwhite{ dir = 9 @@ -1564,7 +1699,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dd" = ( +"add" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1582,7 +1717,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"de" = ( +"ade" = ( /obj/machinery/door/airlock/security{ name = "Equipment Storage" }, @@ -1600,7 +1735,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/armory) -"df" = ( +"adf" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -1608,35 +1743,43 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dg" = ( -/obj/machinery/vending/snack, +"adg" = ( +/obj/structure/table/steel, /obj/effect/floor_decal/borderfloor{ - dir = 10 + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, /obj/effect/floor_decal/corner/red/border{ - dir = 10 + dir = 1 }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/breakroom) -"dh" = ( +/area/tether/surfacebase/security/processing) +"adh" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"di" = ( +"adi" = ( /obj/machinery/vending/coffee, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"dj" = ( +"adj" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dk" = ( +"adk" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -1647,12 +1790,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dl" = ( +"adl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dm" = ( +"adm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -1672,7 +1815,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dn" = ( +"adn" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -1697,7 +1840,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"do" = ( +"ado" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -1712,7 +1855,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dp" = ( +"adp" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -1721,7 +1864,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"dq" = ( +"adq" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -1737,7 +1880,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/breakroom) -"dr" = ( +"adr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/wardrobe/red, /obj/item/device/radio/intercom{ @@ -1746,13 +1889,13 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"ds" = ( +"ads" = ( /obj/structure/closet, /obj/item/weapon/reagent_containers/food/drinks/bottle/tequilla, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dt" = ( +"adt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1763,7 +1906,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"du" = ( +"adu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -1782,7 +1925,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"dv" = ( +"adv" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -1803,7 +1946,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_a) -"dw" = ( +"adw" = ( /obj/effect/floor_decal/borderfloorwhite/corner{ dir = 1 }, @@ -1812,32 +1955,20 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dx" = ( -/obj/machinery/camera/network/medbay{ +"adx" = ( +/obj/structure/table/steel, +/obj/item/weapon/storage/box/evidence, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/border{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"dy" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/processing) +"ady" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -1850,24 +1981,19 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dz" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - desc = "A remote control-switch for shutters."; - id = "surfmed"; - name = "Medical Shutters"; - pixel_x = -24; - pixel_y = 0; - req_access = list(5) +"adz" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for the medbay foyer."; + id = "SurfMedbayFoyer"; + name = "Medbay Doors Control"; + pixel_x = 20; + pixel_y = -26 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dA" = ( +"adA" = ( /obj/structure/table/glass, /obj/item/weapon/storage/firstaid/regular, /obj/effect/floor_decal/borderfloorwhite{ @@ -1885,7 +2011,7 @@ /obj/random/tetheraid, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dB" = ( +"adB" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -1894,7 +2020,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dC" = ( +"adC" = ( /obj/structure/table/glass, /obj/item/weapon/book/codex, /obj/machinery/recharger, @@ -1903,13 +2029,13 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dD" = ( +"adD" = ( /obj/machinery/light_switch{ pixel_y = 25 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dE" = ( +"adE" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -1922,7 +2048,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dF" = ( +"adF" = ( /obj/structure/table/glass, /obj/machinery/photocopier/faxmachine{ department = "Reading Room" @@ -1931,53 +2057,59 @@ /obj/machinery/status_display{ pixel_y = 30 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"dG" = ( +"adG" = ( /obj/structure/catwalk, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"dH" = ( +"adH" = ( /obj/effect/floor_decal/corner_oldtile/green/full{ dir = 8 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"dI" = ( +"adI" = ( /obj/effect/floor_decal/corner_oldtile/green{ dir = 5 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"dJ" = ( +"adJ" = ( /obj/effect/floor_decal/corner_oldtile/green/full{ dir = 1 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"dK" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" +"adK" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/cable/green{ - d1 = 1; + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"dL" = ( +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"adL" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dM" = ( +"adM" = ( /obj/structure/table/glass, /obj/item/weapon/reagent_containers/spray/cleaner{ pixel_x = -1; @@ -1996,23 +2128,23 @@ /obj/item/device/defib_kit/loaded, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"dN" = ( +"adN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dO" = ( +"adO" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/armory) -"dP" = ( +"adP" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/common) -"dQ" = ( +"adQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tether/surfacebase/security/upperhall) -"dR" = ( +"adR" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "SurfaceBrigAccess"; layer = 2.8; @@ -2024,7 +2156,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dS" = ( +"adS" = ( /obj/machinery/door/airlock/glass_security{ id_tag = "SurfaceBrigAccess"; layer = 2.8; @@ -2040,38 +2172,38 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"dT" = ( +"adT" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/breakroom) -"dU" = ( +"adU" = ( /obj/structure/table/reinforced, /obj/effect/landmark{ name = "lightsout" }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dV" = ( +"adV" = ( /obj/item/weapon/tool/screwdriver, /obj/effect/decal/remains/human, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"dW" = ( +"adW" = ( /turf/simulated/wall, /area/tether/surfacebase/security/processing) -"dX" = ( +"adX" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/security, /obj/item/device/holowarrant, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dY" = ( +"adY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"dZ" = ( +"adZ" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -2083,7 +2215,7 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ea" = ( +"aea" = ( /obj/structure/table/glass, /obj/item/bodybag/cryobag, /obj/item/bodybag/cryobag, @@ -2106,7 +2238,7 @@ /obj/item/weapon/tool/screwdriver, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"eb" = ( +"aeb" = ( /obj/structure/table/reinforced, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -2114,15 +2246,23 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"ec" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/steeldecal/steel_decals6, +"aec" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ed" = ( +"aed" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/patient_b) -"ee" = ( +"aee" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -2149,13 +2289,19 @@ dir = 8 }, /area/tether/surfacebase/medical/triage) -"ef" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 +"aef" = ( +/obj/machinery/papershredder, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/turf/simulated/floor/wood, -/area/tether/surfacebase/reading_room) -"eg" = ( +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/frontdesk) +"aeg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -2169,7 +2315,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eh" = ( +"aeh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2183,7 +2329,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ei" = ( +"aei" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -2197,7 +2343,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ej" = ( +"aej" = ( /obj/structure/bed/chair/office/light{ dir = 4 }, @@ -2209,7 +2355,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"ek" = ( +"aek" = ( /obj/structure/table/glass, /obj/item/weapon/pen, /obj/machinery/alarm{ @@ -2225,34 +2371,37 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"el" = ( +"ael" = ( /obj/effect/floor_decal/corner_oldtile/green{ dir = 9 }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"em" = ( +"aem" = ( /obj/structure/railing, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"en" = ( +"aen" = ( /obj/effect/floor_decal/corner_oldtile/green{ dir = 6 }, /obj/effect/floor_decal/rust, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"eo" = ( -/obj/structure/bed/chair/office/dark{ +"aeo" = ( +/obj/effect/floor_decal/spline/plain{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"ep" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aep" = ( /turf/simulated/wall/r_wall, /area/vacant/vacant_site2) -"eq" = ( +"aeq" = ( /obj/structure/table/steel, /obj/item/weapon/folder/red{ pixel_x = 2; @@ -2272,7 +2421,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"er" = ( +"aer" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -2288,7 +2437,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"es" = ( +"aes" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp, /obj/effect/floor_decal/borderfloor{ @@ -2304,7 +2453,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"et" = ( +"aet" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -2321,7 +2470,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"eu" = ( +"aeu" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -2341,7 +2490,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"ev" = ( +"aev" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -2363,7 +2512,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ew" = ( +"aew" = ( /obj/structure/reagent_dispensers/peppertank{ pixel_y = 30 }, @@ -2375,7 +2524,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ex" = ( +"aex" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2390,12 +2539,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ey" = ( +"aey" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ez" = ( +"aez" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -2404,54 +2553,41 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"eA" = ( +"aeA" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aeB" = ( /obj/effect/floor_decal/borderfloor{ - dir = 5 + dir = 4 }, /obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 - }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"eB" = ( -/obj/structure/table/steel, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"eC" = ( +"aeC" = ( /obj/machinery/light_switch{ dir = 8; pixel_x = 28 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"eD" = ( +"aeD" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -2460,7 +2596,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"eE" = ( +"aeE" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2475,7 +2611,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"eF" = ( +"aeF" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2487,10 +2623,10 @@ /obj/random/junk, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"eG" = ( +"aeG" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"eH" = ( +"aeH" = ( /obj/structure/closet/secure_closet/medical3, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -2506,14 +2642,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"eI" = ( +"aeI" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/secure_closet/security, /obj/item/device/holowarrant, /obj/machinery/light, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"eJ" = ( +"aeJ" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -2533,7 +2669,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"eK" = ( +"aeK" = ( /obj/structure/table/reinforced, /obj/machinery/button/remote/airlock{ id = "SurfaceFoyer"; @@ -2556,7 +2692,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"eL" = ( +"aeL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -2572,7 +2708,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"eM" = ( +"aeM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2584,7 +2720,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"eN" = ( +"aeN" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -2611,14 +2747,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"eO" = ( +"aeO" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eP" = ( +"aeP" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -2632,20 +2768,20 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eQ" = ( +"aeQ" = ( /obj/structure/closet/firecloset, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eR" = ( +"aeR" = ( /obj/structure/bookcase, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eS" = ( +"aeS" = ( /obj/structure/bookcase, /obj/machinery/light/small, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eT" = ( +"aeT" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/device/radio/intercom{ @@ -2654,7 +2790,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eU" = ( +"aeU" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -2675,8 +2811,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"eV" = ( +/area/tether/surfacebase/surface_three_hall) +"aeV" = ( /obj/structure/table/glass, /obj/item/device/flashlight/lamp/green, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -2684,7 +2820,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/reading_room) -"eW" = ( +"aeW" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -2693,7 +2829,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"eX" = ( +"aeX" = ( /obj/structure/railing{ dir = 4 }, @@ -2702,7 +2838,7 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"eY" = ( +"aeY" = ( /obj/structure/railing{ dir = 8 }, @@ -2711,7 +2847,7 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"eZ" = ( +"aeZ" = ( /obj/effect/floor_decal/techfloor/corner, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -2732,7 +2868,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fa" = ( +"afa" = ( /obj/machinery/door/airlock/maintenance/medical{ name = "Medical Maintenance Access"; req_access = list(5) @@ -2751,7 +2887,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/medical/triage) -"fb" = ( +"afb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -2776,19 +2912,33 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"fc" = ( +"afc" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/processing) -"fd" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Library"; - sortType = "Library" +"afd" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"fe" = ( +/area/tether/surfacebase/surface_three_hall) +"afe" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 1 }, @@ -2796,8 +2946,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ff" = ( +/area/tether/surfacebase/surface_three_hall) +"aff" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -2813,61 +2963,60 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"fg" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +"afg" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"fh" = ( +/area/tether/surfacebase/surface_three_hall) +"afh" = ( /turf/simulated/wall/r_wall, /area/rnd/research_storage) -"fi" = ( +"afi" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"fj" = ( +"afj" = ( /turf/simulated/wall, /area/crew_quarters/recreation_area_restroom) -"fk" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 8 +"afk" = ( +/obj/structure/cable{ + icon_state = "32-4" }, -/obj/structure/disposalpipe/segment{ +/obj/structure/lattice, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/down{ dir = 4 }, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"fl" = ( +/turf/simulated/open, +/area/tether/surfacebase/surface_three_hall) +"afl" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 30; pixel_y = -4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"fm" = ( +"afm" = ( /obj/random/maintenance/security, /obj/random/maintenance/security, /obj/random/maintenance/security, /mob/living/simple_mob/vore/aggressive/mimic, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"fn" = ( +"afn" = ( /obj/structure/table/steel, /obj/item/device/camera, /obj/effect/floor_decal/borderfloor{ @@ -2887,7 +3036,7 @@ /obj/item/device/retail_scanner/security, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fo" = ( +"afo" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -2896,14 +3045,14 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fp" = ( +"afp" = ( /obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fq" = ( +"afq" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -2912,7 +3061,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fr" = ( +"afr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -2923,7 +3072,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fs" = ( +"afs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2943,7 +3092,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"ft" = ( +"aft" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2962,7 +3111,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fu" = ( +"afu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2976,7 +3125,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fv" = ( +"afv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -2990,7 +3139,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fw" = ( +"afw" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "2-8" @@ -3002,7 +3151,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"fx" = ( +"afx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -3024,7 +3173,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"fy" = ( +"afy" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -3032,7 +3181,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_b) -"fz" = ( +"afz" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/effect/landmark/start{ @@ -3040,7 +3189,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"fA" = ( +"afA" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 @@ -3060,16 +3209,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"fB" = ( +"afB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"fC" = ( +"afC" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"fD" = ( +"afD" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -3098,7 +3247,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"fE" = ( +"afE" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -3122,19 +3271,33 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"fF" = ( -/obj/machinery/camera/network/outside{ - dir = 8 +"afF" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"fG" = ( +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 9 + }, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"afG" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"fH" = ( +"afH" = ( /obj/machinery/door/airlock{ name = "Reading Room" }, @@ -3149,14 +3312,14 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/reading_room) -"fI" = ( +"afI" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"fJ" = ( +"afJ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -3166,10 +3329,10 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/reading_room) -"fK" = ( +"afK" = ( /turf/simulated/wall, /area/rnd/staircase/thirdfloor) -"fL" = ( +"afL" = ( /obj/machinery/atmospherics/pipe/zpipe/up, /obj/machinery/atmospherics/pipe/zpipe/up/scrubbers, /obj/machinery/atmospherics/pipe/zpipe/up/supply, @@ -3189,44 +3352,51 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"fM" = ( +"afM" = ( /turf/simulated/wall, /area/rnd/research_storage) -"fN" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 +"afN" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/plating, -/area/rnd/research_storage) -"fO" = ( +/area/tether/surfacebase/surface_three_hall) +"afO" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"fP" = ( +"afP" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"fQ" = ( +"afQ" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"fR" = ( -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 +"afR" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, +/obj/structure/bed/chair{ + dir = 4 + }, +/obj/machinery/flasher{ + id = "Drunk Tank"; + pixel_x = -28; + pixel_y = 0 + }, +/turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"fS" = ( +"afS" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -3238,7 +3408,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fT" = ( +"afT" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -3259,7 +3429,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"fU" = ( +"afU" = ( /obj/machinery/door/airlock/security{ name = "Security Processing"; req_access = list(1) @@ -3278,13 +3448,13 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/security/processing) -"fV" = ( +"afV" = ( /obj/structure/table/reinforced, /obj/item/device/radio/headset/headset_sec, /obj/item/device/radio/headset/headset_sec, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"fW" = ( +"afW" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -3295,7 +3465,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fX" = ( +"afX" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3309,7 +3479,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fY" = ( +"afY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -3318,7 +3488,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"fZ" = ( +"afZ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -3330,7 +3500,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ga" = ( +"aga" = ( /obj/structure/table/glass, /obj/item/weapon/backup_implanter{ pixel_y = 8 @@ -3354,7 +3524,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"gb" = ( +"agb" = ( /obj/structure/table/reinforced, /obj/item/weapon/cell/device/weapon, /obj/item/weapon/cell/device/weapon, @@ -3366,29 +3536,37 @@ /obj/item/clothing/accessory/badge/holo/cord, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"gc" = ( +"agc" = ( /obj/structure/table/reinforced, /obj/item/device/radio/headset/headset_sec/alt, /obj/item/device/radio/headset/headset_sec/alt, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"gd" = ( -/obj/structure/table/steel, -/obj/item/weapon/storage/box/evidence, +"agd" = ( /obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 + dir = 5 }, /obj/effect/floor_decal/corner/red/border{ - dir = 8 + dir = 5 }, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 + }, +/obj/structure/flora/pottedplant/stoutbush, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/common) +"age" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"ge" = ( -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/processing) -"gf" = ( +"agf" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3401,9 +3579,13 @@ /obj/effect/floor_decal/corner/red/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gg" = ( +"agg" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3411,13 +3593,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gh" = ( +"agh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gi" = ( +"agi" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -3428,7 +3610,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_b) -"gj" = ( +"agj" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -3438,7 +3620,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gk" = ( +"agk" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -3452,7 +3634,7 @@ /obj/item/weapon/backup_implanter, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gl" = ( +"agl" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -3466,7 +3648,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gm" = ( +"agm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -3475,7 +3657,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gn" = ( +"agn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -3487,7 +3669,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/triage) -"go" = ( +"ago" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -3496,7 +3678,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"gp" = ( +"agp" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -3513,8 +3695,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gq" = ( +/area/tether/surfacebase/surface_three_hall) +"agq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3530,8 +3712,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gr" = ( +/area/tether/surfacebase/surface_three_hall) +"agr" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -3548,8 +3730,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"gs" = ( +/area/tether/surfacebase/surface_three_hall) +"ags" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -3557,15 +3739,15 @@ dir = 4 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"gt" = ( +/area/tether/surfacebase/surface_three_hall) +"agt" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 4 }, /obj/effect/floor_decal/corner_oldtile/green/full, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"gu" = ( +"agu" = ( /obj/effect/floor_decal/steeldecal/steel_decals5{ dir = 1 }, @@ -3574,7 +3756,7 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"gv" = ( +"agv" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, @@ -3583,20 +3765,21 @@ }, /turf/simulated/floor/tiled/steel_dirty/virgo3b, /area/tether/surfacebase/outside/outside3) -"gw" = ( +"agw" = ( /turf/simulated/wall, -/area/tether/surfacebase/atrium_three) -"gx" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/obj/structure/window/reinforced{ - dir = 1 +/area/tether/surfacebase/surface_three_hall) +"agx" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, -/area/rnd/research_storage) -"gy" = ( +/area/tether/surfacebase/surface_three_hall) +"agy" = ( /obj/machinery/atmospherics/pipe/simple/visible/supply, /obj/machinery/atmospherics/pipe/simple/visible/scrubbers, /obj/machinery/atmospherics/pipe/simple/visible, @@ -3607,42 +3790,68 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"gz" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" +"agz" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/table/steel, -/obj/item/weapon/implantcase/chem, -/obj/machinery/light/small{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"gA" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, -/obj/structure/table/steel, -/obj/random/tech_supply, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"gB" = ( /obj/structure/disposalpipe/segment{ - dir = 8; + dir = 2; icon_state = "pipe-c" }, -/obj/structure/table/steel, -/obj/item/weapon/locator, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"gC" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agA" = ( +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agB" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/lobby) +"agC" = ( /obj/structure/lattice, /obj/machinery/atmospherics/pipe/zpipe/down{ dir = 1 @@ -3660,7 +3869,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/rnd/research_storage) -"gD" = ( +"agD" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/steel, /obj/item/weapon/storage/bag/circuits/basic, @@ -3674,23 +3883,37 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"gE" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/obj/effect/floor_decal/rust, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"gF" = ( +"agE" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agF" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"gG" = ( +"agG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gH" = ( +"agH" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3699,34 +3922,23 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gI" = ( +"agI" = ( /obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 5 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/common) -"gJ" = ( +/area/tether/surfacebase/surface_three_hall) +"agJ" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -3743,7 +3955,7 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gK" = ( +"agK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3758,7 +3970,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gL" = ( +"agL" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -3773,7 +3985,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gM" = ( +"agM" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -3782,29 +3994,19 @@ /obj/random/tech_supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"gN" = ( -/obj/structure/table/glass, -/obj/item/weapon/storage/box/syringes, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 10 +"agN" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 10 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 6 }, -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Medical Department"; - departmentType = 3; - name = "Medical RC"; - pixel_x = -30; - pixel_y = 0 +/obj/machinery/camera/network/tether{ + dir = 9 }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"gO" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"agO" = ( /obj/structure/table/steel, /obj/item/weapon/paper_bin{ pixel_x = -3; @@ -3813,7 +4015,7 @@ /obj/item/weapon/pen, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gP" = ( +"agP" = ( /obj/machinery/computer/secure_data, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -3828,7 +4030,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"gQ" = ( +"agQ" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -3838,12 +4040,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gR" = ( +"agR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gS" = ( +"agS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -3853,7 +4055,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"gT" = ( +"agT" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3869,21 +4071,21 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gU" = ( +"agU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gV" = ( +"agV" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gW" = ( +"agW" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3897,17 +4099,17 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"gX" = ( +"agX" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gY" = ( +"agY" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 2 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"gZ" = ( +"agZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, @@ -3926,7 +4128,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ha" = ( +"aha" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -3940,8 +4142,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hb" = ( +/area/tether/surfacebase/surface_three_hall) +"ahb" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -3951,8 +4153,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hc" = ( +/area/tether/surfacebase/surface_three_hall) +"ahc" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -3966,32 +4168,43 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hd" = ( +/area/tether/surfacebase/surface_three_hall) +"ahd" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"he" = ( -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"hf" = ( +/area/tether/surfacebase/surface_three_hall) +"ahe" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahf" = ( /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"hg" = ( +"ahg" = ( /obj/effect/decal/cleanable/dirt, /obj/effect/floor_decal/rust, /obj/structure/railing, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hh" = ( +"ahh" = ( /turf/simulated/wall, /area/rnd/workshop) -"hi" = ( +"ahi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 4; @@ -4012,7 +4225,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"hj" = ( +"ahj" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4021,7 +4234,7 @@ }, /turf/simulated/floor/plating, /area/rnd/workshop) -"hk" = ( +"ahk" = ( /obj/structure/disposalpipe/segment, /obj/structure/table/steel, /obj/random/tech_supply, @@ -4036,21 +4249,20 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hl" = ( +"ahl" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" + dir = 4 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/decal/cleanable/dirt, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/rnd/research_storage) -"hm" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"ahm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -4059,7 +4271,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hn" = ( +"ahn" = ( /obj/machinery/door/airlock/maintenance/rnd{ name = "Elavator Maintenance Access" }, @@ -4070,7 +4282,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"ho" = ( +"aho" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/segment{ dir = 8; @@ -4078,7 +4290,7 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"hp" = ( +"ahp" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4087,23 +4299,22 @@ }, /turf/simulated/floor/plating, /area/rnd/workshop) -"hq" = ( -/obj/machinery/light{ - dir = 4 +"ahq" = ( +/obj/structure/closet/secure_closet/personal, +/obj/effect/floor_decal/spline/plain{ + dir = 1 }, -/obj/machinery/computer/crew{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"hr" = ( +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"ahr" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/techfloor{ dir = 9 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"hs" = ( +"ahs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4121,21 +4332,13 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ht" = ( -/obj/machinery/requests_console{ - announcementConsole = 1; - department = "Secondary Bridge"; - departmentType = 5; - name = "Secondary Bridge RC"; - pixel_x = -32; - pixel_y = 0 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/book/codex, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"hu" = ( +/area/tether/surfacebase/surface_three_hall) +"aht" = ( +/obj/machinery/space_heater, +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/crew_quarters/panic_shelter) +"ahu" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4145,7 +4348,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"hv" = ( +"ahv" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; @@ -4158,7 +4361,7 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"hw" = ( +"ahw" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4177,10 +4380,10 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/processing) -"hx" = ( +"ahx" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/frontdesk) -"hy" = ( +"ahy" = ( /obj/machinery/door/airlock/glass_security{ name = "Front Desk"; req_access = list(1) @@ -4191,7 +4394,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hz" = ( +"ahz" = ( /obj/structure/table/steel, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -4211,7 +4414,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"hA" = ( +"ahA" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -4239,19 +4442,28 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hB" = ( -/obj/machinery/papershredder, +"ahB" = ( /obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 + dir = 8 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/security/frontdesk) -"hC" = ( +/area/tether/surfacebase/surface_three_hall) +"ahC" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4263,7 +4475,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hD" = ( +"ahD" = ( /obj/structure/closet/crate, /obj/random/maintenance/medical, /obj/random/maintenance/medical, @@ -4280,7 +4492,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"hE" = ( +"ahE" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -4294,7 +4506,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"hF" = ( +"ahF" = ( /obj/machinery/photocopier, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -4306,7 +4518,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hG" = ( +"ahG" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4325,7 +4537,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"hH" = ( +"ahH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -4341,7 +4553,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"hI" = ( +"ahI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/hologram/holopad, @@ -4351,7 +4563,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"hJ" = ( +"ahJ" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -4372,7 +4584,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"hK" = ( +"ahK" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -4380,7 +4592,7 @@ /obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hL" = ( +"ahL" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -4394,18 +4606,18 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hM" = ( +"ahM" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hN" = ( +"ahN" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"hO" = ( +"ahO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4424,7 +4636,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"hP" = ( +"ahP" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4443,8 +4655,8 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hQ" = ( +/area/tether/surfacebase/surface_three_hall) +"ahQ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -4455,8 +4667,8 @@ /obj/structure/disposalpipe/segment, /obj/item/device/radio/beacon, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hR" = ( +/area/tether/surfacebase/surface_three_hall) +"ahR" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -4475,19 +4687,19 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"hS" = ( +/area/tether/surfacebase/surface_three_hall) +"ahS" = ( /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"hT" = ( +/area/tether/surfacebase/surface_three_hall) +"ahT" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"hU" = ( +"ahU" = ( /obj/machinery/media/jukebox, /obj/machinery/firealarm{ dir = 2; @@ -4500,7 +4712,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"hV" = ( +"ahV" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -4520,38 +4732,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"hW" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 9 - }, -/obj/structure/disposalpipe/trunk{ - dir = 4 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"hX" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 - }, -/obj/item/weapon/storage/box/donut, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/frontdesk) -"hY" = ( +"ahW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -4567,8 +4748,38 @@ req_access = list() }, /turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"hZ" = ( +/area/tether/surfacebase/medical/lobby) +"ahX" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 5 + }, +/obj/item/weapon/storage/box/donut, +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/frontdesk) +"ahY" = ( +/obj/effect/floor_decal/borderfloorwhite{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/lobby) +"ahZ" = ( /obj/structure/cable/green{ icon_state = "1-4" }, @@ -4577,7 +4788,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"ia" = ( +"aia" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -4593,30 +4804,18 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"ib" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/obj/machinery/camera/network/medbay, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"ic" = ( +"aib" = ( +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"aic" = ( /obj/random/trash_pile, /obj/effect/floor_decal/techfloor{ dir = 10 }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"id" = ( +"aid" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/techfloor/corner{ @@ -4627,7 +4826,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ie" = ( +"aie" = ( /obj/structure/closet, /obj/random/maintenance/medical, /obj/random/maintenance/clean, @@ -4635,7 +4834,7 @@ /obj/random/maintenance/medical, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"if" = ( +"aif" = ( /obj/effect/floor_decal/techfloor{ dir = 5 }, @@ -4645,7 +4844,7 @@ /obj/random/maintenance/medical, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ig" = ( +"aig" = ( /obj/structure/bed/chair/office/light, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/landmark/start{ @@ -4661,7 +4860,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"ih" = ( +"aih" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -4680,12 +4879,12 @@ /obj/machinery/light_switch{ dir = 1; on = 0; - pixel_x = -14; + pixel_x = -10; pixel_y = -24 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"ii" = ( +"aii" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -4695,11 +4894,11 @@ dir = 4 }, /area/tether/surfacebase/medical/lobby) -"ij" = ( +"aij" = ( /obj/structure/sign/greencross, /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"ik" = ( +"aik" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -4707,8 +4906,8 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"il" = ( +/area/tether/surfacebase/surface_three_hall) +"ail" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -4730,8 +4929,8 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"im" = ( +/area/tether/surfacebase/surface_three_hall) +"aim" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -4745,8 +4944,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"in" = ( +/area/tether/surfacebase/surface_three_hall) +"ain" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -4766,11 +4965,11 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"io" = ( +/area/tether/surfacebase/surface_three_hall) +"aio" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/panic_shelter) -"ip" = ( +"aip" = ( /obj/machinery/vending/snack, /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -4789,8 +4988,8 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"iq" = ( +/area/tether/surfacebase/surface_three_hall) +"aiq" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -4799,8 +4998,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ir" = ( +/area/tether/surfacebase/surface_three_hall) +"air" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4812,8 +5011,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"is" = ( +/area/tether/surfacebase/surface_three_hall) +"ais" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4831,8 +5030,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"it" = ( +/area/tether/surfacebase/surface_three_hall) +"ait" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4847,8 +5046,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iu" = ( +/area/tether/surfacebase/surface_three_hall) +"aiu" = ( /obj/structure/table/steel, /obj/item/device/integrated_electronics/debugger{ pixel_x = -5; @@ -4864,14 +5063,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"iv" = ( +"aiv" = ( /obj/random/junk, /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"iw" = ( +/area/tether/surfacebase/surface_three_hall) +"aiw" = ( /obj/structure/table/steel, /obj/item/device/integrated_circuit_printer, /obj/effect/floor_decal/techfloor{ @@ -4879,7 +5078,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ix" = ( +"aix" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -4891,8 +5090,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iy" = ( +/area/tether/surfacebase/surface_three_hall) +"aiy" = ( /obj/structure/table/steel, /obj/item/device/electronic_assembly/large/default, /obj/machinery/light{ @@ -4904,7 +5103,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"iz" = ( +"aiz" = ( /obj/structure/disposalpipe/segment, /obj/machinery/firealarm{ dir = 8; @@ -4915,7 +5114,7 @@ /obj/machinery/vending/assist, /turf/simulated/floor/plating, /area/rnd/research_storage) -"iA" = ( +"aiA" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -4926,7 +5125,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/rnd/research_storage) -"iB" = ( +"aiB" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -4946,8 +5145,8 @@ req_access = list(5) }, /turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"iC" = ( +/area/tether/surfacebase/medical/lobby) +"aiC" = ( /obj/structure/disposalpipe/junction{ icon_state = "pipe-j2"; dir = 4 @@ -4965,8 +5164,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iD" = ( +/area/tether/surfacebase/surface_three_hall) +"aiD" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -4981,12 +5180,15 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner2{ dir = 9 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iE" = ( +/area/tether/surfacebase/surface_three_hall) +"aiE" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"iF" = ( +"aiF" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /obj/item/device/radio/intercom{ dir = 8; @@ -4994,7 +5196,7 @@ }, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"iG" = ( +"aiG" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -5007,8 +5209,8 @@ /obj/effect/floor_decal/borderfloor/corner2, /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iH" = ( +/area/tether/surfacebase/surface_three_hall) +"aiH" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -5022,7 +5224,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area_restroom) -"iI" = ( +"aiI" = ( /obj/structure/sink{ dir = 8; icon_state = "sink"; @@ -5035,37 +5237,23 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"iJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/photocopier/faxmachine{ - department = "Secondary Command Office" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"iK" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"aiJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aiK" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iL" = ( +/area/crew_quarters/pool) +"aiL" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/atrium_three) -"iM" = ( +/area/tether/surfacebase/surface_three_hall) +"aiM" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -5074,13 +5262,13 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"iN" = ( +"aiN" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"iO" = ( +"aiO" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -5101,7 +5289,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"iP" = ( +"aiP" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -5115,7 +5303,7 @@ /obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"iQ" = ( +"aiQ" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -5124,7 +5312,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iR" = ( +"aiR" = ( /obj/structure/cable/green{ icon_state = "1-8" }, @@ -5135,7 +5323,7 @@ /obj/effect/floor_decal/corner/red/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iS" = ( +"aiS" = ( /obj/structure/table/reinforced, /obj/item/device/radio{ pixel_x = 4; @@ -5164,7 +5352,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iT" = ( +"aiT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -5190,7 +5378,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iU" = ( +"aiU" = ( /obj/machinery/computer/security{ dir = 4 }, @@ -5198,14 +5386,14 @@ /obj/effect/floor_decal/corner/red/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iV" = ( +"aiV" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"iW" = ( +/area/tether/surfacebase/surface_three_hall) +"aiW" = ( /obj/structure/bed/chair/office/dark, /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -5217,7 +5405,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"iX" = ( +"aiX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -5232,7 +5420,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"iY" = ( +"aiY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -5241,7 +5429,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"iZ" = ( +"aiZ" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -5250,7 +5438,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"ja" = ( +"aja" = ( /obj/machinery/computer/crew{ dir = 4 }, @@ -5270,27 +5458,23 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"jb" = ( -/obj/machinery/light{ - dir = 4 - }, -/obj/machinery/photocopier, +"ajb" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 + dir = 8 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 + dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 5 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/bridge/secondary) -"jc" = ( -/obj/machinery/camera/network/tether, +/area/tether/surfacebase/surface_three_hall) +"ajc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5305,8 +5489,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jd" = ( +/area/tether/surfacebase/surface_three_hall) +"ajd" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5321,8 +5505,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"je" = ( +/area/tether/surfacebase/surface_three_hall) +"aje" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5340,14 +5524,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jf" = ( +/area/tether/surfacebase/surface_three_hall) +"ajf" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jg" = ( +/area/tether/surfacebase/surface_three_hall) +"ajg" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5365,8 +5549,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jh" = ( +/area/tether/surfacebase/surface_three_hall) +"ajh" = ( /obj/machinery/light{ dir = 1 }, @@ -5381,8 +5565,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ji" = ( +/area/tether/surfacebase/surface_three_hall) +"aji" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5397,8 +5581,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jj" = ( +/area/tether/surfacebase/surface_three_hall) +"ajj" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -5412,8 +5596,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jk" = ( +/area/tether/surfacebase/surface_three_hall) +"ajk" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -5427,8 +5611,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jl" = ( +/area/tether/surfacebase/surface_three_hall) +"ajl" = ( /obj/structure/bed/padded, /obj/effect/floor_decal/techfloor{ dir = 9 @@ -5442,7 +5626,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jm" = ( +"ajm" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -5451,7 +5635,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jn" = ( +"ajn" = ( /obj/machinery/light/small{ dir = 1 }, @@ -5465,7 +5649,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jo" = ( +"ajo" = ( /obj/structure/sign/nosmoking_2{ pixel_y = 29 }, @@ -5474,14 +5658,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jp" = ( +"ajp" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/techfloor{ dir = 1 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jq" = ( +"ajq" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /obj/effect/floor_decal/techfloor{ dir = 1 @@ -5492,7 +5676,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jr" = ( +"ajr" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -5513,14 +5697,14 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"js" = ( +"ajs" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary, /obj/effect/floor_decal/techfloor{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"jt" = ( +"ajt" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -5535,8 +5719,8 @@ }, /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"ju" = ( +/area/tether/surfacebase/surface_three_hall) +"aju" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -5544,27 +5728,27 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jv" = ( +/area/tether/surfacebase/surface_three_hall) +"ajv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jw" = ( +/area/tether/surfacebase/surface_three_hall) +"ajw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jx" = ( +/area/tether/surfacebase/surface_three_hall) +"ajx" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jy" = ( +/area/tether/surfacebase/surface_three_hall) +"ajy" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -5576,11 +5760,11 @@ /obj/item/device/gps/science, /turf/simulated/floor/plating, /area/rnd/research_storage) -"jz" = ( +"ajz" = ( /obj/structure/flora/tree/sif, /turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/atrium_three) -"jA" = ( +/area/tether/surfacebase/surface_three_hall) +"ajA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5594,60 +5778,50 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jB" = ( +/area/tether/surfacebase/surface_three_hall) +"ajB" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"ajC" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 + dir = 10 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/machinery/door/firedoor/glass/hidden/steel, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ +/area/tether/surfacebase/surface_three_hall) +"ajD" = ( +/obj/effect/floor_decal/corner/grey/diagonal, +/obj/structure/closet/secure_closet/freezer/kitchen, +/obj/item/device/radio/intercom{ dir = 4; - icon_state = "pipe-c" + pixel_x = 24 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jE" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/kitchen) +"ajE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5664,7 +5838,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research_storage) -"jF" = ( +"ajF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -5673,31 +5847,18 @@ pixel_y = 0 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jG" = ( +/area/tether/surfacebase/surface_three_hall) +"ajG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jH" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 4 - }, -/obj/structure/bed/chair{ - dir = 4 - }, -/obj/machinery/flasher{ - id = "Drunk Tank"; - pixel_x = -28; - pixel_y = 0 - }, +/area/tether/surfacebase/surface_three_hall) +"ajH" = ( +/obj/machinery/computer/secure_data, /turf/simulated/floor/tiled/dark, -/area/tether/surfacebase/security/common) -"jI" = ( +/area/bridge) +"ajI" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/disposalpipe/up{ dir = 8 @@ -5708,13 +5869,13 @@ }, /turf/simulated/floor/plating, /area/rnd/research_storage) -"jJ" = ( +"ajJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"jK" = ( +"ajK" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -5723,7 +5884,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"jL" = ( +"ajL" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -5743,7 +5904,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"jM" = ( +"ajM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5751,8 +5912,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jN" = ( +/area/tether/surfacebase/surface_three_hall) +"ajN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -5764,7 +5925,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jO" = ( +"ajO" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5783,7 +5944,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jP" = ( +"ajP" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -5804,7 +5965,7 @@ /obj/machinery/vending/security, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jQ" = ( +"ajQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5827,7 +5988,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"jR" = ( +"ajR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -5838,8 +5999,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jS" = ( +/area/tether/surfacebase/surface_three_hall) +"ajS" = ( /obj/structure/bed/chair/office/dark, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -5848,10 +6009,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"jT" = ( +"ajT" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"jU" = ( +"ajU" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -5859,8 +6020,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jV" = ( +/area/tether/surfacebase/surface_three_hall) +"ajV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5868,8 +6029,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jW" = ( +/area/tether/surfacebase/surface_three_hall) +"ajW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -5877,20 +6038,20 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jX" = ( +/area/tether/surfacebase/surface_three_hall) +"ajX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jY" = ( +/area/tether/surfacebase/surface_three_hall) +"ajY" = ( /obj/structure/disposalpipe/junction{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"jZ" = ( +/area/tether/surfacebase/surface_three_hall) +"ajZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -5903,8 +6064,8 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ka" = ( +/area/tether/surfacebase/surface_three_hall) +"aka" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5915,8 +6076,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kb" = ( +/area/tether/surfacebase/surface_three_hall) +"akb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -5929,8 +6090,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kc" = ( +/area/tether/surfacebase/surface_three_hall) +"akc" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -5947,8 +6108,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kd" = ( +/area/tether/surfacebase/surface_three_hall) +"akd" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 0 @@ -5966,26 +6127,26 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ke" = ( +/area/tether/surfacebase/surface_three_hall) +"ake" = ( /obj/structure/bed/padded, /obj/effect/floor_decal/techfloor{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kf" = ( +"akf" = ( /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kg" = ( +"akg" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kh" = ( +"akh" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"ki" = ( +"aki" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 }, @@ -5996,7 +6157,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kj" = ( +"akj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -6008,13 +6169,21 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kk" = ( -/obj/machinery/camera/network/outside{ +"akk" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"kl" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"akl" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/corner/lightgrey{ dir = 10 @@ -6033,8 +6202,8 @@ dir = 8 }, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"km" = ( +/area/tether/surfacebase/surface_three_hall) +"akm" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -6046,8 +6215,8 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kn" = ( +/area/tether/surfacebase/surface_three_hall) +"akn" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6057,22 +6226,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ko" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/area/tether/surfacebase/surface_three_hall) +"ako" = ( +/obj/structure/table/marble, +/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ + pixel_x = -3; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ + pixel_x = 3 }, -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kp" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/bar) +"akp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -6088,14 +6254,14 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kq" = ( +/area/tether/surfacebase/surface_three_hall) +"akq" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kr" = ( +/area/tether/surfacebase/surface_three_hall) +"akr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals6, @@ -6105,8 +6271,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ks" = ( +/area/tether/surfacebase/surface_three_hall) +"aks" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -6121,20 +6287,21 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kt" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/area/tether/surfacebase/surface_three_hall) +"akt" = ( +/obj/structure/table/steel, +/obj/item/device/integrated_electronics/debugger{ + pixel_x = -5; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/item/device/integrated_electronics/wirer{ + pixel_x = 5; + pixel_y = 0 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ku" = ( +/obj/effect/floor_decal/techfloor, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"aku" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6148,8 +6315,8 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kv" = ( +/area/tether/surfacebase/surface_three_hall) +"akv" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -6160,8 +6327,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kw" = ( +/area/tether/surfacebase/surface_three_hall) +"akw" = ( /obj/machinery/computer/security{ dir = 8 }, @@ -6171,9 +6338,13 @@ /obj/effect/floor_decal/corner/red/border{ dir = 6 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kx" = ( +"akx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6183,8 +6354,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ky" = ( +/area/tether/surfacebase/surface_three_hall) +"aky" = ( /obj/machinery/light{ dir = 1 }, @@ -6193,7 +6364,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"kz" = ( +"akz" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 @@ -6211,7 +6382,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kA" = ( +"akA" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -6226,7 +6397,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/frontdesk) -"kB" = ( +"akB" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/eastleft{ dir = 1 @@ -6249,7 +6420,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kC" = ( +"akC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6261,8 +6432,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kD" = ( +/area/tether/surfacebase/surface_three_hall) +"akD" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -6276,14 +6447,14 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kE" = ( +/area/tether/surfacebase/surface_three_hall) +"akE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kF" = ( +/area/tether/surfacebase/surface_three_hall) +"akF" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced{ @@ -6305,25 +6476,25 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"kG" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"akG" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/structure/window/basic, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kH" = ( +/area/tether/surfacebase/surface_three_hall) +"akH" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kI" = ( +/area/tether/surfacebase/surface_three_hall) +"akI" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6338,8 +6509,8 @@ icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kJ" = ( +/area/tether/surfacebase/surface_three_hall) +"akJ" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -6356,8 +6527,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kK" = ( +/area/tether/surfacebase/surface_three_hall) +"akK" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -6372,8 +6543,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kL" = ( +/area/tether/surfacebase/surface_three_hall) +"akL" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -6388,20 +6559,15 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kM" = ( -/obj/machinery/camera/network/tether{ - dir = 9 +/area/tether/surfacebase/surface_three_hall) +"akM" = ( +/obj/machinery/door/window/southleft{ + name = "Library Desk Door"; + req_access = list(37) }, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"kN" = ( +/turf/simulated/floor/carpet, +/area/library) +"akN" = ( /obj/structure/closet, /obj/item/clothing/mask/gas, /obj/item/clothing/mask/gas, @@ -6412,19 +6578,19 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kO" = ( +"akO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kP" = ( +"akP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kQ" = ( +"akQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -6435,7 +6601,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kR" = ( +"akR" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -6454,16 +6620,16 @@ /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"kS" = ( +"akS" = ( /turf/simulated/wall, /area/crew_quarters/pool) -"kT" = ( +"akT" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"kU" = ( +"akU" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Pool" }, @@ -6475,7 +6641,7 @@ dir = 8 }, /area/crew_quarters/pool) -"kV" = ( +"akV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -6491,7 +6657,7 @@ dir = 4 }, /area/crew_quarters/pool) -"kW" = ( +"akW" = ( /obj/structure/sign/biohazard{ pixel_y = 32 }, @@ -6502,23 +6668,30 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"kX" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/machinery/door/firedoor, -/turf/simulated/floor/plating, -/area/crew_quarters/pool) -"kY" = ( +"akX" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/hydroponics) +"akY" = ( /turf/simulated/wall, /area/crew_quarters/recreation_area) -"kZ" = ( +"akZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"la" = ( +"ala" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -6529,8 +6702,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lb" = ( +/area/tether/surfacebase/surface_three_hall) +"alb" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -6544,16 +6717,16 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lc" = ( +/area/tether/surfacebase/surface_three_hall) +"alc" = ( /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"ld" = ( +"ald" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"le" = ( +"ale" = ( /obj/structure/sign/directions/engineering{ dir = 10; icon_state = "direction_eng"; @@ -6561,7 +6734,7 @@ }, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"lf" = ( +"alf" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -6578,7 +6751,7 @@ }, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"lg" = ( +"alg" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -6601,14 +6774,14 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lh" = ( +/area/tether/surfacebase/surface_three_hall) +"alh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"li" = ( +/area/tether/surfacebase/surface_three_hall) +"ali" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -6621,80 +6794,85 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 10 }, -/obj/structure/window/basic{ - dir = 4 +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"alj" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/captain) +"alk" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lj" = ( -/obj/structure/railing{ - dir = 8 +/area/tether/surfacebase/surface_three_hall) +"all" = ( +/obj/machinery/shower{ + pixel_y = 8 }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lk" = ( -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"ll" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lm" = ( +/obj/item/weapon/soap/deluxe, +/obj/structure/curtain/open/shower, +/obj/item/weapon/bikehorn/rubberducky, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"alm" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/corner/blue/border{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ln" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor/corner2{ dir = 10 }, -/obj/machinery/camera/network/tether{ - dir = 9 +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/obj/machinery/computer/id_restorer{ + dir = 4; + icon_state = "restorer"; + pixel_x = -30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lo" = ( +/area/tether/surfacebase/surface_three_hall) +"aln" = ( +/obj/structure/table/reinforced, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/window/northleft{ + dir = 4; + icon_state = "right"; + name = "Reception Window" + }, +/obj/machinery/door/window/brigdoor/eastright{ + dir = 8; + name = "Head of Personnel's Desk"; + req_access = list(57) + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "hop_office_desk"; + layer = 3.1; + name = "HoP's Shutters" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"alo" = ( /turf/simulated/wall/r_wall, -/area/tether/surfacebase/atrium_three) -"lp" = ( +/area/tether/surfacebase/surface_three_hall) +"alp" = ( /obj/machinery/vending/coffee, /obj/machinery/alarm{ dir = 4; @@ -6703,30 +6881,33 @@ pixel_y = 0 }, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"lq" = ( +/area/tether/surfacebase/surface_three_hall) +"alq" = ( /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"lr" = ( +/area/tether/surfacebase/surface_three_hall) +"alr" = ( /obj/structure/bed/chair/wood{ dir = 8 }, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"ls" = ( +/area/tether/surfacebase/surface_three_hall) +"als" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/techfloor{ dir = 8 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lt" = ( +"alt" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lu" = ( +"alu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -6738,7 +6919,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lv" = ( +"alv" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -6747,7 +6928,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"lw" = ( +"alw" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -6756,7 +6937,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"lx" = ( +"alx" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/spline/plain{ dir = 9 @@ -6764,7 +6945,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ly" = ( +"aly" = ( /obj/structure/closet/secure_closet/personal, /obj/effect/floor_decal/spline/plain{ dir = 1 @@ -6774,16 +6955,28 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lz" = ( -/obj/structure/closet/secure_closet/personal, -/obj/effect/floor_decal/spline/plain{ - dir = 1 +"alz" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"lA" = ( +/obj/effect/floor_decal/corner/lime/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/lime/bordercorner2{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"alA" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6793,9 +6986,10 @@ icon_state = "cabinet_closed"; name = "Clothing Storage" }, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lB" = ( +"alB" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6807,7 +7001,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lC" = ( +"alC" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6816,7 +7010,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lD" = ( +"alD" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6832,13 +7026,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lE" = ( +"alE" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lF" = ( +"alF" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6847,7 +7041,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lG" = ( +"alG" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -6863,7 +7057,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"lH" = ( +"alH" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -6873,38 +7067,52 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"lI" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 5 +"alI" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/disposalpipe/segment, -/obj/structure/flora/pottedplant/stoutbush, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"lJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/techfloor, +/area/rnd/workshop) +"alJ" = ( /obj/machinery/vending/fitness, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"lK" = ( +"alK" = ( /obj/structure/closet/athletic_mixed, /obj/machinery/status_display{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lL" = ( +"alL" = ( /obj/machinery/fitness/punching_bag/clown, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lM" = ( -/obj/machinery/camera/network/civilian, +"alM" = ( +/obj/structure/bed/chair/wood{ + dir = 4 + }, /turf/simulated/floor/wood, -/area/crew_quarters/recreation_area) -"lN" = ( +/area/crew_quarters/bar) +"alN" = ( /obj/machinery/fitness/heavy/lifter, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lO" = ( +"alO" = ( /obj/structure/closet/athletic_mixed, /obj/structure/extinguisher_cabinet{ pixel_x = 27 @@ -6915,14 +7123,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"lP" = ( +"alP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"lQ" = ( +/area/tether/surfacebase/surface_three_hall) +"alQ" = ( /obj/machinery/light_switch{ pixel_y = 25 }, @@ -6936,7 +7144,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lR" = ( +"alR" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -6945,7 +7153,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lS" = ( +"alS" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -6954,17 +7162,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lT" = ( +"alT" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lU" = ( +"alU" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 10 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"lV" = ( +"alV" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -6976,28 +7184,28 @@ dir = 1 }, /area/tether/surfacebase/north_stairs_three) -"lW" = ( +"alW" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"lX" = ( +/area/tether/surfacebase/surface_three_hall) +"alX" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lY" = ( +/area/tether/surfacebase/surface_three_hall) +"alY" = ( /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"lZ" = ( +/area/tether/surfacebase/surface_three_hall) +"alZ" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"ma" = ( +/area/tether/surfacebase/surface_three_hall) +"ama" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -7016,18 +7224,18 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mb" = ( +/area/tether/surfacebase/surface_three_hall) +"amb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"mc" = ( +/area/tether/surfacebase/surface_three_hall) +"amc" = ( /obj/machinery/vending/cigarette, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"md" = ( +/area/tether/surfacebase/surface_three_hall) +"amd" = ( /obj/structure/table/glass, /obj/item/weapon/material/ashtray/plastic, /obj/item/device/radio/intercom{ @@ -7035,33 +7243,43 @@ pixel_x = 24 }, /turf/simulated/floor/wood, -/area/tether/surfacebase/atrium_three) -"me" = ( +/area/tether/surfacebase/surface_three_hall) +"ame" = ( /obj/machinery/washing_machine, /obj/effect/floor_decal/techfloor{ dir = 10 }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mf" = ( +"amf" = ( /obj/structure/ladder, /obj/effect/floor_decal/industrial/outline/blue, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mg" = ( +"amg" = ( /obj/machinery/light/small, /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mh" = ( -/obj/machinery/space_heater, -/obj/effect/floor_decal/techfloor, -/obj/machinery/camera/network/civilian{ +"amh" = ( +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/crew_quarters/panic_shelter) -"mi" = ( +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals5, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals3{ + dir = 8 + }, +/obj/structure/table/reinforced, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/research_foyer) +"ami" = ( /obj/machinery/space_heater, /obj/effect/floor_decal/techfloor, /obj/machinery/firealarm{ @@ -7071,13 +7289,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mj" = ( +"amj" = ( /obj/machinery/space_heater, /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole/right, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mk" = ( +"amk" = ( /obj/effect/floor_decal/techfloor/corner, /obj/effect/floor_decal/techfloor/corner{ dir = 8 @@ -7091,7 +7309,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"ml" = ( +"aml" = ( /obj/effect/floor_decal/techfloor{ dir = 6 }, @@ -7101,7 +7319,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mm" = ( +"amm" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, @@ -7110,13 +7328,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mn" = ( +"amn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mo" = ( +"amo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7125,7 +7343,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mp" = ( +"amp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7134,7 +7352,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mq" = ( +"amq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7148,7 +7366,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mr" = ( +"amr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7162,7 +7380,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ms" = ( +"ams" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/cable/green{ @@ -7177,7 +7395,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mt" = ( +"amt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -7191,29 +7409,34 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mu" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 +"amu" = ( +/obj/machinery/firealarm{ + dir = 2; + layer = 3.3; + pixel_x = 4; + pixel_y = 26 }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"mv" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"amv" = ( /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"mw" = ( +"amw" = ( /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"mx" = ( +"amx" = ( /obj/machinery/light_switch{ pixel_x = 25 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"my" = ( +"amy" = ( /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/north_stairs_three) -"mz" = ( +"amz" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -7222,7 +7445,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/north_stairs_three) -"mA" = ( +"amA" = ( /obj/structure/cable{ icon_state = "0-4" }, @@ -7233,7 +7456,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mB" = ( +"amB" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7248,8 +7471,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mC" = ( -/obj/machinery/light/small, +"amC" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable{ icon_state = "4-8" @@ -7261,9 +7483,12 @@ dir = 2; pixel_y = -24 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mD" = ( +"amD" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ icon_state = "4-8" @@ -7276,7 +7501,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mE" = ( +"amE" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/cable{ icon_state = "4-8" @@ -7292,7 +7517,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"mF" = ( +"amF" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, @@ -7313,7 +7538,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central1, /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/north_stairs_three) -"mG" = ( +"amG" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -7327,8 +7552,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mH" = ( +/area/tether/surfacebase/surface_three_hall) +"amH" = ( /obj/structure/cable{ d1 = 2; d2 = 8; @@ -7342,8 +7567,8 @@ }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mI" = ( +/area/tether/surfacebase/surface_three_hall) +"amI" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -7372,8 +7597,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"mJ" = ( +/area/tether/surfacebase/surface_three_hall) +"amJ" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/maintenance/int{ name = "Fire/Phoron Shelter"; @@ -7381,12 +7606,12 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"mK" = ( +"amK" = ( /obj/effect/wingrille_spawn/reinforced_phoron, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/crew_quarters/panic_shelter) -"mL" = ( +"amL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, @@ -7401,40 +7626,40 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"mM" = ( +"amM" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mN" = ( +"amN" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mO" = ( +"amO" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"mP" = ( +"amP" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"mQ" = ( +"amQ" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"mR" = ( +"amR" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"mS" = ( +"amS" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -7448,25 +7673,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"mT" = ( -/obj/effect/floor_decal/spline/plain{ +"amT" = ( +/obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/effect/floor_decal/corner/mauve/bordercorner{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"mU" = ( +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"amU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7480,24 +7696,32 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"mV" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"amV" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/machinery/atmospherics/unary/vent_pump/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ dir = 4 }, -/obj/machinery/camera/network/civilian{ - dir = 9 +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, +/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"mW" = ( +/area/rnd/research/researchdivision) +"amW" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -7514,7 +7738,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"mX" = ( +"amX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7523,7 +7747,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"mY" = ( +"amY" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -7537,7 +7761,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"mZ" = ( +"amZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -7546,7 +7770,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"na" = ( +"ana" = ( /obj/structure/table/woodentable, /obj/item/clothing/glasses/threedglasses, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -7554,7 +7778,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nb" = ( +"anb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -7563,7 +7787,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/recreation_area) -"nc" = ( +"anc" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock{ name = "Secondary Janitorial Closet"; @@ -7571,46 +7795,57 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/north_stairs_three) -"nd" = ( -/obj/machinery/camera/network/tether{ +"and" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -25 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/bar) +"ane" = ( /turf/simulated/open, /area/tether/surfacebase/north_stairs_three) -"ne" = ( -/turf/simulated/open, -/area/tether/surfacebase/north_stairs_three) -"nf" = ( +"anf" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"ng" = ( -/obj/machinery/camera/network/tether{ +"ang" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/item/device/radio/intercom{ + pixel_y = -24 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/effect/floor_decal/borderfloorblack, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nh" = ( +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"anh" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -7618,8 +7853,8 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ni" = ( +/area/tether/surfacebase/surface_three_hall) +"ani" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -7628,8 +7863,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nj" = ( +/area/tether/surfacebase/surface_three_hall) +"anj" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -7654,8 +7889,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nk" = ( +/area/tether/surfacebase/surface_three_hall) +"ank" = ( /obj/machinery/door/airlock/maintenance/int{ name = "Fire/Phoron Shelter"; req_one_access = list() @@ -7674,7 +7909,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"nl" = ( +"anl" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7694,7 +7929,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nm" = ( +"anm" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7709,7 +7944,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nn" = ( +"ann" = ( /obj/structure/sign/nosmoking_2{ pixel_x = 29 }, @@ -7727,7 +7962,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"no" = ( +"ano" = ( /obj/machinery/light/small{ dir = 1 }, @@ -7737,7 +7972,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"np" = ( +"anp" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7745,7 +7980,7 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nq" = ( +"anq" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7753,7 +7988,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nr" = ( +"anr" = ( /obj/effect/floor_decal/techfloor{ dir = 1 }, @@ -7763,7 +7998,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"ns" = ( +"ans" = ( /obj/machinery/computer/area_atmos{ range = 8 }, @@ -7772,7 +8007,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nt" = ( +"ant" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 1 }, @@ -7788,7 +8023,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nu" = ( +"anu" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 4 @@ -7798,7 +8033,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nv" = ( +"anv" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -7812,25 +8047,25 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"nw" = ( +"anw" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"nx" = ( +"anx" = ( /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"ny" = ( +"any" = ( /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"nz" = ( +"anz" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"nA" = ( +"anA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -7840,21 +8075,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"nB" = ( +"anB" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"nC" = ( +"anC" = ( /obj/machinery/door/airlock/glass{ name = "Recreation Area" }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/recreation_area) -"nD" = ( +"anD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/hologram/holopad, @@ -7865,13 +8100,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nE" = ( +"anE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nF" = ( +"anF" = ( /obj/structure/table/woodentable, /obj/item/weapon/coin/silver, /obj/machinery/atmospherics/unary/vent_scrubber/on{ @@ -7880,15 +8115,15 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"nG" = ( +"anG" = ( /obj/structure/flora/tree/sif, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/north_stairs_three) -"nH" = ( +"anH" = ( /obj/structure/reagent_dispensers/watertank, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"nI" = ( +"anI" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -7897,11 +8132,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"nJ" = ( +"anJ" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall, /area/tether/surfacebase/north_stairs_three) -"nK" = ( +"anK" = ( /obj/machinery/computer/guestpass{ dir = 4; pixel_x = -28; @@ -7920,12 +8155,12 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nL" = ( +/area/tether/surfacebase/surface_three_hall) +"anL" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nM" = ( +/area/tether/surfacebase/surface_three_hall) +"anM" = ( /obj/structure/sign/fire{ name = "\improper PHORON/FIRE SHELTER"; pixel_x = 33 @@ -7945,8 +8180,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"nN" = ( +/area/tether/surfacebase/surface_three_hall) +"anN" = ( /obj/machinery/light/small{ dir = 8; pixel_x = 0 @@ -7960,7 +8195,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nO" = ( +"anO" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/firealarm{ dir = 1; @@ -7973,7 +8208,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nP" = ( +"anP" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/green{ d1 = 2; @@ -7991,7 +8226,7 @@ /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nQ" = ( +"anQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -8010,7 +8245,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"nR" = ( +"anR" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -8025,7 +8260,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nS" = ( +"anS" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -8038,7 +8273,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nT" = ( +"anT" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor/hole/right, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -8057,7 +8292,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nU" = ( +"anU" = ( /obj/effect/floor_decal/techfloor, /obj/machinery/shower{ dir = 1 @@ -8078,7 +8313,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nV" = ( +"anV" = ( /obj/machinery/door/airlock/hatch{ name = "Fire/Phoron Shelter Secure Hatch"; req_one_access = list() @@ -8097,7 +8332,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/panic_shelter) -"nW" = ( +"anW" = ( /obj/structure/extinguisher_cabinet{ pixel_y = -31 }, @@ -8116,7 +8351,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nX" = ( +"anX" = ( /obj/machinery/light/small, /obj/effect/floor_decal/industrial/warning/corner{ dir = 4 @@ -8124,7 +8359,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nY" = ( +"anY" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -8139,7 +8374,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/panic_shelter) -"nZ" = ( +"anZ" = ( /obj/structure/table/glass, /obj/item/weapon/inflatable_duck, /obj/effect/floor_decal/spline/plain{ @@ -8153,11 +8388,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oa" = ( +"aoa" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ob" = ( +"aob" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -8167,7 +8402,7 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oc" = ( +"aoc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8177,7 +8412,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"od" = ( +"aod" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -8187,7 +8422,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oe" = ( +"aoe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -8199,7 +8434,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"of" = ( +"aof" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 4 @@ -8210,10 +8445,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"og" = ( +"aog" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oh" = ( +"aoh" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -8221,7 +8456,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oi" = ( +"aoi" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -8239,15 +8474,15 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oj" = ( +/area/tether/surfacebase/surface_three_hall) +"aoj" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ok" = ( +/area/tether/surfacebase/surface_three_hall) +"aok" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8266,11 +8501,11 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ol" = ( +/area/tether/surfacebase/surface_three_hall) +"aol" = ( /turf/simulated/wall/r_wall, /area/vacant/vacant_shop) -"om" = ( +"aom" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/door/firedoor/glass, @@ -8284,10 +8519,10 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_shop) -"on" = ( +"aon" = ( /turf/simulated/wall/r_wall, /area/crew_quarters/freezer) -"oo" = ( +"aoo" = ( /obj/machinery/door/airlock/maintenance/common{ name = "Freezer Maintenance Access"; req_access = list(28) @@ -8295,10 +8530,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techfloor/grid, /area/crew_quarters/freezer) -"op" = ( +"aop" = ( /turf/simulated/wall/r_wall, /area/hydroponics/cafegarden) -"oq" = ( +"aoq" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -8307,20 +8542,20 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"or" = ( +"aor" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, /obj/item/weapon/beach_ball, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"os" = ( +"aos" = ( /obj/effect/floor_decal/spline/plain{ dir = 5 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"ot" = ( +"aot" = ( /obj/structure/table/glass, /obj/machinery/light{ dir = 4; @@ -8329,7 +8564,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ou" = ( +"aou" = ( /obj/structure/reagent_dispensers/water_cooler/full, /obj/item/device/radio/intercom{ dir = 2; @@ -8342,7 +8577,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"ov" = ( +"aov" = ( /obj/machinery/scale, /obj/structure/disposalpipe/segment{ dir = 4 @@ -8353,14 +8588,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"ow" = ( +"aow" = ( /obj/machinery/scale, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"ox" = ( +"aox" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -8374,30 +8609,26 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"oy" = ( +"aoy" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/staircase/thirdfloor) -"oz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +"aoz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/light{ - icon_state = "tube1"; dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oA" = ( +/area/tether/surfacebase/surface_three_hall) +"aoA" = ( /obj/machinery/light_switch{ pixel_y = -25 }, @@ -8406,14 +8637,14 @@ /obj/item/weapon/storage/box/lights/mixed, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oB" = ( +"aoB" = ( /obj/machinery/light/small, /obj/structure/mopbucket, /obj/item/weapon/reagent_containers/glass/bucket, /obj/item/weapon/mop, /turf/simulated/floor/tiled, /area/tether/surfacebase/north_stairs_three) -"oC" = ( +"aoC" = ( /obj/machinery/status_display{ pixel_x = -32 }, @@ -8430,8 +8661,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oD" = ( +/area/tether/surfacebase/surface_three_hall) +"aoD" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8446,36 +8677,37 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oE" = ( +/area/tether/surfacebase/surface_three_hall) +"aoE" = ( /obj/structure/sign/directions/evac{ dir = 1 }, -/turf/simulated/wall, +/turf/simulated/wall/r_wall, /area/vacant/vacant_shop) -"oF" = ( -/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, -/obj/effect/decal/cleanable/dirt, -/obj/structure/closet, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"oG" = ( -/obj/structure/table/rack, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/tool, -/obj/effect/floor_decal/techfloor{ +"aoF" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"oH" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoG" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -8485,31 +8717,47 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"oI" = ( -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/structure/lattice, -/obj/structure/disposalpipe/down, -/obj/structure/cable/green{ - d1 = 32; - d2 = 8; - icon_state = "32-8" +"aoI" = ( +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/vacant/vacant_shop) -"oJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aoJ" = ( /turf/simulated/wall, /area/crew_quarters/freezer) -"oK" = ( +"aoK" = ( /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"oL" = ( -/obj/structure/closet/crate/freezer, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/freezer) -"oM" = ( +"aoL" = ( +/obj/structure/table/reinforced, +/obj/effect/floor_decal/borderfloor{ + dir = 9 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 9 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aoM" = ( /obj/structure/kitchenspike, /obj/machinery/alarm{ pixel_y = 22; @@ -8517,25 +8765,32 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"oN" = ( +"aoN" = ( /obj/structure/kitchenspike, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"oO" = ( +"aoO" = ( /obj/structure/flora/ausbushes/grassybush, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"oP" = ( +"aoP" = ( /obj/machinery/light{ dir = 1 }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"oQ" = ( -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/grass, -/area/hydroponics/cafegarden) -"oR" = ( +"aoQ" = ( +/obj/structure/table/reinforced, +/obj/machinery/cell_charger, +/obj/effect/floor_decal/borderfloor{ + dir = 5 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aoR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -8544,24 +8799,24 @@ }, /turf/simulated/floor/plating, /area/hydroponics/cafegarden) -"oS" = ( +"aoS" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oT" = ( +"aoT" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oU" = ( +"aoU" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"oV" = ( +"aoV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -8576,7 +8831,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/recreation_area) -"oW" = ( +"aoW" = ( /obj/machinery/alarm{ pixel_y = 20 }, @@ -8585,12 +8840,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"oX" = ( +"aoX" = ( /turf/simulated/wall, /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"oY" = ( +"aoY" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -8613,8 +8868,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"oZ" = ( +/area/tether/surfacebase/surface_three_hall) +"aoZ" = ( /obj/structure/cable{ icon_state = "1-2" }, @@ -8625,18 +8880,40 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pa" = ( +/area/tether/surfacebase/surface_three_hall) +"apa" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pb" = ( -/obj/machinery/newscaster{ - pixel_x = 25 +/area/tether/surfacebase/surface_three_hall) +"apb" = ( +/obj/structure/cable{ + icon_state = "4-8" }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/computer/guestpass{ + dir = 1; + icon_state = "guest"; + pixel_y = -28 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apc" = ( +/turf/simulated/wall, +/area/vacant/vacant_shop) +"apd" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -8653,66 +8930,83 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pc" = ( -/turf/simulated/wall, -/area/vacant/vacant_shop) -"pd" = ( -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/vacant/vacant_shop) -"pe" = ( -/obj/effect/decal/cleanable/dirt, -/obj/random/junk, -/obj/effect/floor_decal/techfloor{ +/area/tether/surfacebase/surface_three_hall) +"ape" = ( +/obj/structure/cable{ + icon_state = "4-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"pf" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apf" = ( +/obj/structure/cable{ + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/machinery/light, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"pg" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apg" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/effect/floor_decal/techfloor/hole/right{ - dir = 4 +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 +/obj/structure/closet/crate, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/drinkbottle, +/obj/machinery/alarm{ + dir = 1; + pixel_y = -25 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/structure/disposalpipe/segment, +/obj/random/tool, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"ph" = ( +"aph" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pi" = ( +"api" = ( /obj/machinery/light_switch{ pixel_x = 25 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pj" = ( +"apj" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -8721,14 +9015,14 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pk" = ( +"apk" = ( /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pl" = ( +"apl" = ( /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pm" = ( +"apm" = ( /obj/effect/floor_decal/spline/plain{ dir = 8 }, @@ -8738,14 +9032,14 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"pn" = ( +"apn" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"po" = ( +"apo" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -8760,8 +9054,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pp" = ( +/area/tether/surfacebase/surface_three_hall) +"app" = ( /obj/machinery/atm{ pixel_y = 31 }, @@ -8782,8 +9076,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pq" = ( +/area/tether/surfacebase/surface_three_hall) +"apq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -8799,8 +9093,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pr" = ( +/area/tether/surfacebase/surface_three_hall) +"apr" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -8818,8 +9112,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ps" = ( +/area/tether/surfacebase/surface_three_hall) +"aps" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -8841,8 +9135,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pt" = ( +/area/tether/surfacebase/surface_three_hall) +"apt" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -8858,8 +9152,8 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/machinery/vending/nifsoft_shop, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pu" = ( +/area/tether/surfacebase/surface_three_hall) +"apu" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 @@ -8871,8 +9165,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pv" = ( +/area/tether/surfacebase/surface_three_hall) +"apv" = ( /obj/machinery/shower{ dir = 4; icon_state = "shower"; @@ -8884,12 +9178,12 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pw" = ( +"apw" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"px" = ( +"apx" = ( /obj/machinery/light_switch{ pixel_y = 25 }, @@ -8897,7 +9191,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"py" = ( +"apy" = ( /obj/machinery/shower{ dir = 8; icon_state = "shower"; @@ -8909,15 +9203,15 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pz" = ( +"apz" = ( /obj/structure/table/rack, /obj/random/maintenance/research, /obj/random/maintenance/medical, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"pA" = ( +/area/tether/surfacebase/surface_three_hall) +"apA" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel, /obj/effect/floor_decal/techfloor{ @@ -8925,7 +9219,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"pB" = ( +"apB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -8939,8 +9233,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pC" = ( +/area/tether/surfacebase/surface_three_hall) +"apC" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -8962,75 +9256,96 @@ pixel_x = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pD" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/area/tether/surfacebase/surface_three_hall) +"apD" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"pE" = ( -/obj/machinery/light/small{ - dir = 4; - pixel_y = 0 +/obj/structure/cable{ + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"pF" = ( +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "Library"; + sortType = "Library" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apF" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pG" = ( +"apG" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"pH" = ( +"apH" = ( /obj/structure/flora/ausbushes/lavendergrass, /obj/structure/flora/ausbushes/ppflowers, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"pI" = ( +"apI" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"pJ" = ( +"apJ" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"pK" = ( -/obj/effect/floor_decal/spline/plain{ +"apK" = ( +/obj/structure/sign/department/robo{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; +/obj/effect/floor_decal/corner/mauve/border{ dir = 4 }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"pL" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"apL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -9039,7 +9354,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"pM" = ( +"apM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9055,7 +9370,7 @@ }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"pN" = ( +"apN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9071,7 +9386,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/pool) -"pO" = ( +"apO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9088,8 +9403,8 @@ dir = 6 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pP" = ( +/area/tether/surfacebase/surface_three_hall) +"apP" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -9107,7 +9422,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"pQ" = ( +"apQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9123,8 +9438,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pR" = ( +/area/tether/surfacebase/surface_three_hall) +"apR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -9138,11 +9453,11 @@ icon_state = "2-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pS" = ( +/area/tether/surfacebase/surface_three_hall) +"apS" = ( /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pT" = ( +/area/tether/surfacebase/surface_three_hall) +"apT" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -9162,8 +9477,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"pU" = ( +/area/tether/surfacebase/surface_three_hall) +"apU" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -9181,7 +9496,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pV" = ( +"apV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -9189,7 +9504,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pW" = ( +"apW" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -9197,51 +9512,71 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"pX" = ( -/obj/structure/cable{ - icon_state = "32-4" +"apX" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 }, -/obj/structure/lattice, -/obj/machinery/light/small{ - dir = 8; - pixel_x = 0 - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"pY" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"pZ" = ( -/obj/machinery/door/airlock/maintenance/engi, -/obj/machinery/door/firedoor/glass, -/obj/structure/cable{ - icon_state = "4-8" - }, -/turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"qa" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apY" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/computer/timeclock/premade/south, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"apZ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqa" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qb" = ( +/area/tether/surfacebase/surface_three_hall) +"aqb" = ( /obj/structure/cable{ icon_state = "4-8" }, @@ -9252,60 +9587,29 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qc" = ( -/obj/effect/floor_decal/borderfloor{ +/area/tether/surfacebase/surface_three_hall) +"aqc" = ( +/obj/machinery/light/small{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_pump/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"aqd" = ( +/obj/effect/floor_decal/corner/blue/diagonal, +/obj/effect/floor_decal/corner/blue/diagonal{ dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qd" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/window/basic{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qe" = ( +/area/tether/surfacebase/surface_three_hall) +"aqe" = ( /obj/structure/disposalpipe/segment, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qf" = ( +/area/tether/surfacebase/surface_three_hall) +"aqf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -9322,8 +9626,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qg" = ( +/area/tether/surfacebase/surface_three_hall) +"aqg" = ( /obj/structure/grille, /obj/structure/railing{ dir = 8 @@ -9332,8 +9636,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"qh" = ( +/area/tether/surfacebase/surface_three_hall) +"aqh" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, @@ -9341,8 +9645,8 @@ dir = 4 }, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"qi" = ( +/area/tether/surfacebase/surface_three_hall) +"aqi" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment{ @@ -9350,7 +9654,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/vacant/vacant_shop) -"qj" = ( +"aqj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ d1 = 1; @@ -9370,7 +9674,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"qk" = ( +"aqk" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -9392,7 +9696,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"ql" = ( +"aql" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -9410,7 +9714,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qm" = ( +"aqm" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/structure/cable/green{ d1 = 4; @@ -9419,7 +9723,7 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qn" = ( +"aqn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/cable/green{ d1 = 2; @@ -9428,11 +9732,11 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qo" = ( +"aqo" = ( /obj/machinery/gibber, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qp" = ( +"aqp" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/super; dir = 8; @@ -9444,7 +9748,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"qq" = ( +"aqq" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -9452,7 +9756,7 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"qr" = ( +"aqr" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -9469,27 +9773,27 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"qs" = ( +"aqs" = ( /obj/effect/floor_decal/spline/plain{ dir = 10 }, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"qt" = ( +"aqt" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/deep/pool, /area/crew_quarters/pool) -"qu" = ( +"aqu" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"qv" = ( +"aqv" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /turf/simulated/floor/water/pool, /area/crew_quarters/pool) -"qw" = ( +"aqw" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ frequency = 1392; @@ -9512,7 +9816,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qx" = ( +"aqx" = ( /obj/machinery/alarm{ pixel_y = 20 }, @@ -9521,7 +9825,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qy" = ( +"aqy" = ( /obj/machinery/light{ dir = 1 }, @@ -9539,14 +9843,18 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"qz" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/camera/network/civilian{ - dir = 9 +"aqz" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/crew_quarters/pool) -"qA" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_north_airlock) +"aqA" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -9558,7 +9866,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qB" = ( +"aqB" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -9575,8 +9883,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qC" = ( +/area/tether/surfacebase/surface_three_hall) +"aqC" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; @@ -9590,7 +9898,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qD" = ( +"aqD" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -9602,7 +9910,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"qE" = ( +"aqE" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -9616,8 +9924,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qF" = ( +/area/tether/surfacebase/surface_three_hall) +"aqF" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -9632,7 +9940,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"qG" = ( +"aqG" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -9646,8 +9954,8 @@ icon_state = "1-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qH" = ( +/area/tether/surfacebase/surface_three_hall) +"aqH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9660,8 +9968,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qI" = ( +/area/tether/surfacebase/surface_three_hall) +"aqI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9678,8 +9986,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qJ" = ( +/area/tether/surfacebase/surface_three_hall) +"aqJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9699,7 +10007,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qK" = ( +"aqK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -9721,7 +10029,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qL" = ( +"aqL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -9729,7 +10037,7 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qM" = ( +"aqM" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -9742,96 +10050,69 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"qN" = ( +"aqN" = ( /obj/structure/closet/crate, /obj/random/maintenance/engineering, /obj/random/maintenance/research, /obj/random/maintenance/clean, /obj/random/maintenance/clean, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"qO" = ( +/area/tether/surfacebase/surface_three_hall) +"aqO" = ( /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"qP" = ( -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qQ" = ( -/obj/structure/cable{ - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/structure/window/basic{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qR" = ( +/area/tether/surfacebase/surface_three_hall) +"aqP" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced, /obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/tether/surfacebase/surface_three_hall) +"aqQ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/structure/window/basic{ +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qS" = ( -/obj/machinery/camera/network/tether{ - dir = 9 - }, +/area/tether/surfacebase/surface_three_hall) +"aqR" = ( /obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 + dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"qT" = ( +/area/tether/surfacebase/surface_three_hall) +"aqS" = ( +/obj/effect/floor_decal/industrial/warning/corner{ + icon_state = "warningcorner"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aqT" = ( /obj/structure/sign/directions/medical{ dir = 1; icon_state = "direction_med"; @@ -9853,38 +10134,37 @@ pixel_y = -10 }, /turf/simulated/wall, -/area/tether/surfacebase/atrium_three) -"qU" = ( -/obj/effect/floor_decal/techfloor{ +/area/tether/surfacebase/surface_three_hall) +"aqU" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 }, -/obj/structure/closet/crate, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/maintenance/clean, -/obj/random/drinkbottle, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -25 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"qV" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/newscaster{ + pixel_x = 25 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aqV" = ( /obj/structure/closet/secure_closet/freezer/meat, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qW" = ( +"aqW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /obj/machinery/icecream_vat, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qX" = ( +"aqX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -9896,16 +10176,16 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qY" = ( +"aqY" = ( /obj/machinery/chem_master/condimaster, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"qZ" = ( +"aqZ" = ( /obj/structure/flora/ausbushes/sparsegrass, /obj/structure/flora/ausbushes/ywflowers, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"ra" = ( +"ara" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -9913,11 +10193,11 @@ }, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"rb" = ( +"arb" = ( /obj/structure/flora/ausbushes/pointybush, /turf/simulated/floor/grass, /area/hydroponics/cafegarden) -"rc" = ( +"arc" = ( /obj/structure/table/glass, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -9929,44 +10209,44 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rd" = ( +"ard" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"re" = ( +"are" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rf" = ( +"arf" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rg" = ( +"arg" = ( /obj/effect/floor_decal/spline/plain{ dir = 4 }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rh" = ( +"arh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"ri" = ( +"ari" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"rj" = ( +"arj" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -9989,7 +10269,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"rk" = ( +"ark" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 27 }, @@ -10012,14 +10292,14 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rl" = ( +/area/tether/surfacebase/surface_three_hall) +"arl" = ( /obj/item/weapon/bikehorn/rubberducky, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"rm" = ( +"arm" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -10028,40 +10308,23 @@ /area/crew_quarters/recreation_area_restroom{ name = "\improper Recreation Area Showers" }) -"rn" = ( -/obj/machinery/camera/network/tether{ +"arn" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/borderfloor{ +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aro" = ( +/obj/effect/floor_decal/spline/plain{ + dir = 4 + }, +/obj/effect/floor_decal/spline/plain{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ro" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rp" = ( +/obj/machinery/media/jukebox, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"arp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, @@ -10075,7 +10338,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/vacant/vacant_shop) -"rq" = ( +"arq" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10089,7 +10352,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/freezer) -"rr" = ( +"arr" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10104,13 +10367,13 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/freezer) -"rs" = ( +"ars" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"rt" = ( +"art" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -10123,10 +10386,10 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"ru" = ( +"aru" = ( /turf/simulated/wall, /area/crew_quarters/kitchen) -"rv" = ( +"arv" = ( /obj/structure/bed/chair{ dir = 4 }, @@ -10135,56 +10398,57 @@ }, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rw" = ( +"arw" = ( /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rx" = ( -/obj/effect/floor_decal/spline/plain, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/turf/simulated/floor/tiled/freezer, -/area/crew_quarters/pool) -"ry" = ( +"arx" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_soft/full, +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"ary" = ( /obj/effect/floor_decal/spline/plain, /obj/machinery/light, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rz" = ( +"arz" = ( /obj/effect/floor_decal/spline/plain, /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rA" = ( +"arA" = ( /obj/effect/floor_decal/spline/plain{ dir = 6 }, /obj/structure/undies_wardrobe, /turf/simulated/floor/tiled/freezer, /area/crew_quarters/pool) -"rB" = ( +"arB" = ( /obj/structure/closet/lasertag/red, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"rC" = ( +"arC" = ( /obj/structure/closet/lasertag/blue, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/crew_quarters/pool) -"rD" = ( +"arD" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"rE" = ( +"arE" = ( /obj/machinery/vending/cola, /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -10203,8 +10467,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"rF" = ( +/area/tether/surfacebase/surface_three_hall) +"arF" = ( /obj/machinery/vending/fitness, /obj/effect/floor_decal/corner/lightgrey{ dir = 9 @@ -10223,8 +10487,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals9, /turf/simulated/floor/tiled/monotile, -/area/tether/surfacebase/atrium_three) -"rG" = ( +/area/tether/surfacebase/surface_three_hall) +"arG" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -10235,8 +10499,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rH" = ( +/area/tether/surfacebase/surface_three_hall) +"arH" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -10247,8 +10511,8 @@ dir = 2 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rI" = ( +/area/tether/surfacebase/surface_three_hall) +"arI" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -10270,11 +10534,11 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rJ" = ( +/area/tether/surfacebase/surface_three_hall) +"arJ" = ( /turf/simulated/wall, /area/crew_quarters/bar) -"rK" = ( +"arK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -10295,7 +10559,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rL" = ( +"arL" = ( /obj/structure/table/bench/wooden, /obj/machinery/firealarm{ dir = 2; @@ -10305,14 +10569,17 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rM" = ( +"arM" = ( /obj/structure/table/bench/wooden, /obj/machinery/alarm{ pixel_y = 22 }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"rN" = ( +"arN" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/chefcloset, /obj/item/glass_jar, @@ -10330,7 +10597,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rO" = ( +"arO" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10341,7 +10608,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rP" = ( +"arP" = ( /obj/structure/table/standard, /obj/machinery/microwave, /obj/machinery/newscaster{ @@ -10350,7 +10617,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rQ" = ( +"arQ" = ( /obj/structure/table/standard, /obj/machinery/microwave, /obj/effect/floor_decal/corner/grey/diagonal, @@ -10362,13 +10629,13 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rR" = ( +"arR" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rS" = ( +"arS" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -10377,7 +10644,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rT" = ( +"arT" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/freezer/meat, /obj/machinery/alarm{ @@ -10387,7 +10654,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"rU" = ( +"arU" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10397,17 +10664,17 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"rV" = ( +"arV" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/crew_quarters/pool) -"rW" = ( +"arW" = ( /turf/simulated/wall, /area/tether/surfacebase/public_garden_three) -"rX" = ( +"arX" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -10425,8 +10692,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rY" = ( +/area/tether/surfacebase/surface_three_hall) +"arY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -10444,8 +10711,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"rZ" = ( +/area/tether/surfacebase/surface_three_hall) +"arZ" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -10467,28 +10734,20 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sa" = ( -/obj/machinery/camera/network/tether, +/area/tether/surfacebase/surface_three_hall) +"asa" = ( +/obj/machinery/computer/rdconsole/robotics{ + dir = 8 + }, /obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sb" = ( +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"asb" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -10499,7 +10758,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"sc" = ( +"asc" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -10514,8 +10773,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sd" = ( +/area/tether/surfacebase/surface_three_hall) +"asd" = ( /obj/machinery/light{ dir = 1 }, @@ -10524,22 +10783,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"se" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 +"ase" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sf" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"asf" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -10548,19 +10799,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"sg" = ( +"asg" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 5 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"sh" = ( +"ash" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"si" = ( +/area/tether/surfacebase/surface_three_hall) +"asi" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10578,8 +10829,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sj" = ( +/area/tether/surfacebase/surface_three_hall) +"asj" = ( /obj/machinery/atm{ pixel_x = -30 }, @@ -10594,28 +10845,21 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sk" = ( +"ask" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sl" = ( -/obj/structure/table/woodentable, -/obj/machinery/camera/network/civilian{ - dir = 9 +"asl" = ( +/obj/machinery/recharge_station, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 - }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"sm" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"asm" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/closet/secure_closet/freezer/fridge, /obj/structure/extinguisher_cabinet{ @@ -10625,7 +10869,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sn" = ( +"asn" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -10644,7 +10888,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"so" = ( +"aso" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -10653,7 +10897,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sp" = ( +"asp" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 4; @@ -10663,7 +10907,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sq" = ( +"asq" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/cable/green{ d1 = 1; @@ -10672,19 +10916,13 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sr" = ( -/obj/effect/floor_decal/corner/grey/diagonal, -/obj/structure/closet/secure_closet/freezer/kitchen, -/obj/machinery/camera/network/civilian{ - dir = 9 +"asr" = ( +/obj/structure/bed/chair/comfy{ + dir = 8 }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/kitchen) -"ss" = ( +/turf/simulated/floor/wood, +/area/tether/surfacebase/bar_backroom) +"ass" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -10701,8 +10939,8 @@ pixel_x = -32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"st" = ( +/area/tether/surfacebase/surface_three_hall) +"ast" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -10714,8 +10952,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"su" = ( +/area/tether/surfacebase/surface_three_hall) +"asu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -10727,8 +10965,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sv" = ( +/area/tether/surfacebase/surface_three_hall) +"asv" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -10736,8 +10974,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sw" = ( +/area/tether/surfacebase/surface_three_hall) +"asw" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -10745,8 +10983,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sx" = ( +/area/tether/surfacebase/surface_three_hall) +"asx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -10757,8 +10995,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sy" = ( +/area/tether/surfacebase/surface_three_hall) +"asy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -10771,8 +11009,8 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sz" = ( +/area/tether/surfacebase/surface_three_hall) +"asz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, @@ -10781,27 +11019,32 @@ }, /obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sA" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, +/area/tether/surfacebase/surface_three_hall) +"asA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 + dir = 4 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/light_switch{ + dir = 1; + on = 0; + pixel_x = -10; + pixel_y = -24 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/patient_c) +"asB" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; icon_state = "pipe-j1s"; @@ -10812,8 +11055,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sC" = ( +/area/tether/surfacebase/surface_three_hall) +"asC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10821,8 +11064,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sD" = ( +/area/tether/surfacebase/surface_three_hall) +"asD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -10833,8 +11076,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sE" = ( +/area/tether/surfacebase/surface_three_hall) +"asE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -10861,8 +11104,8 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sF" = ( +/area/tether/surfacebase/surface_three_hall) +"asF" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10871,7 +11114,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"sG" = ( +"asG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -10884,14 +11127,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sH" = ( +"asH" = ( /obj/structure/table/bench/wooden, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sI" = ( +"asI" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10906,7 +11149,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"sJ" = ( +"asJ" = ( /obj/effect/floor_decal/corner/grey/diagonal{ dir = 4 }, @@ -10923,7 +11166,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sK" = ( +"asK" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ @@ -10939,7 +11182,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sL" = ( +"asL" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/book/manual/chef_recipes, @@ -10951,7 +11194,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sM" = ( +"asM" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/reagent_containers/food/condiment/enzyme{ @@ -10963,7 +11206,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sN" = ( +"asN" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/disposalpipe/segment{ @@ -10972,18 +11215,18 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sO" = ( +"asO" = ( /obj/effect/floor_decal/corner/grey/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sP" = ( +"asP" = ( /obj/machinery/cooker/grill, /obj/effect/floor_decal/industrial/warning/dust{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"sQ" = ( +"asQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -10992,7 +11235,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"sR" = ( +"asR" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -11004,8 +11247,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sS" = ( +/area/tether/surfacebase/surface_three_hall) +"asS" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -11019,37 +11262,23 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sT" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sU" = ( +/area/tether/surfacebase/surface_three_hall) +"asT" = ( +/turf/simulated/wall/r_wall, +/area/bridge) +"asU" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"sV" = ( +/area/tether/surfacebase/surface_three_hall) +"asV" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/bar) -"sW" = ( +"asW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -11059,10 +11288,10 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sX" = ( +"asX" = ( /turf/simulated/floor/wood, /area/crew_quarters/bar) -"sY" = ( +"asY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11074,14 +11303,14 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/kitchen) -"sZ" = ( +"asZ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/table/standard, /obj/item/weapon/material/kitchen/rollingpin, /obj/item/weapon/material/knife/butch, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"ta" = ( +"ata" = ( /obj/structure/table/standard, /obj/machinery/reagentgrinder, /obj/machinery/light{ @@ -11091,7 +11320,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tb" = ( +"atb" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/light{ @@ -11101,20 +11330,20 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tc" = ( +"atc" = ( /obj/machinery/cooker/candy, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"td" = ( +"atd" = ( /obj/structure/disposalpipe/junction{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"te" = ( +/area/tether/surfacebase/surface_three_hall) +"ate" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11122,8 +11351,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tf" = ( +/area/tether/surfacebase/surface_three_hall) +"atf" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11146,8 +11375,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tg" = ( +/area/tether/surfacebase/surface_three_hall) +"atg" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11157,26 +11386,26 @@ /obj/structure/sign/department/bar, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"th" = ( +"ath" = ( /obj/structure/disposalpipe/junction{ dir = 8; icon_state = "pipe-j2" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"ti" = ( +"ati" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tj" = ( +"atj" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/vending/dinnerware, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tk" = ( +"atk" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -11192,7 +11421,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tl" = ( +"atl" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/packageWrap, @@ -11201,14 +11430,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tm" = ( +"atm" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/structure/sink/kitchen{ pixel_y = 28 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tn" = ( +"atn" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/grey/diagonal, /obj/item/weapon/reagent_containers/food/snacks/mint, @@ -11221,31 +11450,31 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"to" = ( +"ato" = ( /obj/machinery/cooker/cereal, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tp" = ( +"atp" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Scientist" }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tq" = ( +"atq" = ( /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tr" = ( +"atr" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ts" = ( +"ats" = ( /turf/simulated/wall, /area/hallway/lower/third_south) -"tt" = ( +"att" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -11263,16 +11492,16 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tu" = ( +/area/tether/surfacebase/surface_three_hall) +"atu" = ( /obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tv" = ( +/area/tether/surfacebase/surface_three_hall) +"atv" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11282,8 +11511,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tw" = ( +/area/tether/surfacebase/surface_three_hall) +"atw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11294,8 +11523,8 @@ dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tx" = ( +/area/tether/surfacebase/surface_three_hall) +"atx" = ( /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -11305,7 +11534,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/crew_quarters/bar) -"ty" = ( +"aty" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/cable/green{ @@ -11320,24 +11549,24 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tz" = ( +"atz" = ( /obj/machinery/smartfridge{ req_access = list(28) }, /turf/simulated/wall, /area/crew_quarters/kitchen) -"tA" = ( +"atA" = ( /obj/machinery/cooker/fryer, /obj/effect/floor_decal/industrial/warning/dust{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tB" = ( +"atB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tC" = ( +"atC" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -11346,7 +11575,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tD" = ( +"atD" = ( /obj/structure/table/steel, /obj/fiftyspawner/steel, /obj/effect/floor_decal/techfloor{ @@ -11354,11 +11583,11 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tE" = ( +"atE" = ( /obj/structure/disposalpipe/segment, /turf/simulated/wall, /area/rnd/research_storage) -"tF" = ( +"atF" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -11372,36 +11601,25 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, /area/rnd/research_storage) -"tG" = ( +"atG" = ( /turf/simulated/wall/r_wall, /area/hallway/lower/third_south) -"tH" = ( +"atH" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, /area/hallway/lower/third_south) -"tI" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ +"atI" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/light/small{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tJ" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"atJ" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; icon_state = "pipe-j1s"; @@ -11412,8 +11630,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tK" = ( +/area/tether/surfacebase/surface_three_hall) +"atK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -11426,8 +11644,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tL" = ( +/area/tether/surfacebase/surface_three_hall) +"atL" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -11438,8 +11656,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tM" = ( +/area/tether/surfacebase/surface_three_hall) +"atM" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11466,8 +11684,8 @@ }, /obj/structure/flora/pottedplant, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"tN" = ( +/area/tether/surfacebase/surface_three_hall) +"atN" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -11485,7 +11703,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tO" = ( +"atO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11499,7 +11717,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"tP" = ( +"atP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -11518,7 +11736,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tQ" = ( +"atQ" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -11539,7 +11757,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tR" = ( +"atR" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -11560,22 +11778,25 @@ /obj/structure/cable/green{ icon_state = "0-8" }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tS" = ( +"atS" = ( /obj/machinery/cooker/oven, /obj/effect/floor_decal/industrial/warning/dust{ dir = 10 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"tT" = ( +"atT" = ( /turf/simulated/wall/r_wall, /area/rnd/research) -"tU" = ( +"atU" = ( /turf/simulated/wall, /area/rnd/research) -"tV" = ( +"atV" = ( /obj/structure/table/steel, /obj/item/device/electronic_assembly/large/default, /obj/machinery/light, @@ -11584,7 +11805,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tW" = ( +"atW" = ( /obj/structure/table/steel, /obj/item/device/integrated_circuit_printer, /obj/item/device/radio/intercom{ @@ -11594,23 +11815,24 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tX" = ( -/obj/structure/table/steel, -/obj/item/device/integrated_electronics/debugger{ - pixel_x = -5; - pixel_y = 0 +"atX" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/item/device/integrated_electronics/wirer{ - pixel_x = 5; - pixel_y = 0 +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 }, /obj/machinery/camera/network/research{ - dir = 1 + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/techfloor, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"tY" = ( +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"atY" = ( /obj/structure/table/steel, /obj/machinery/recharger{ pixel_y = 0 @@ -11625,10 +11847,10 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"tZ" = ( +"atZ" = ( /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"ua" = ( +"aua" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -11646,7 +11868,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ub" = ( +"aub" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -11666,29 +11888,35 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"uc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"auc" = ( +/obj/structure/table/glass, +/obj/machinery/recharger{ + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/mauve/bordercorner2, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/obj/effect/floor_decal/techfloor{ - dir = 6 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/rnd/workshop) -"ud" = ( +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/staircase/thirdfloor) +"aud" = ( /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"ue" = ( +"aue" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -11697,38 +11925,30 @@ }, /turf/simulated/floor/plating, /area/hallway/lower/third_south) -"uf" = ( +"auf" = ( /obj/structure/grille, /obj/structure/railing, /turf/simulated/floor/tiled/techmaint, /area/hallway/lower/third_south) -"ug" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ +"aug" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 +/obj/effect/floor_decal/steeldecal/steel_decals5{ + dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uh" = ( +/area/tether/surfacebase/shuttle_pad) +"auh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ui" = ( +/area/tether/surfacebase/surface_three_hall) +"aui" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -11746,8 +11966,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uj" = ( +/area/tether/surfacebase/surface_three_hall) +"auj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/computer/guestpass{ @@ -11758,18 +11978,21 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uk" = ( +"auk" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"ul" = ( -/obj/structure/table/bench/wooden, -/obj/machinery/camera/network/civilian{ - dir = 9 +"aul" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"um" = ( +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_hallway) +"aum" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/blast/shutters{ dir = 2; @@ -11780,7 +12003,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"un" = ( +"aun" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/chemical_dispenser/bar_soft/full, @@ -11793,7 +12016,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"uo" = ( +"auo" = ( /obj/machinery/door/blast/shutters{ dir = 2; id = "kitchen"; @@ -11804,7 +12027,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"up" = ( +"aup" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/corner/grey/diagonal, /obj/machinery/door/blast/shutters{ @@ -11816,7 +12039,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"uq" = ( +"auq" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -11836,7 +12059,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/rnd/workshop) -"ur" = ( +"aur" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/matter_bin, /obj/item/weapon/stock_parts/matter_bin, @@ -11852,9 +12075,10 @@ /obj/effect/floor_decal/corner/mauve/border{ dir = 9 }, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled, /area/rnd/research) -"us" = ( +"aus" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -11875,23 +12099,28 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"ut" = ( -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor{ - dir = 9 +"aut" = ( +/obj/structure/cable/green{ + icon_state = "0-2" }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 +/obj/structure/cable, +/obj/machinery/power/smes/buildable{ + charge = 0; + output_attempt = 0; + outputting = 0; + RCon_tag = "Substation - Surface Civilian" }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 +/obj/machinery/camera/network/engineering{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"uu" = ( +/turf/simulated/floor/plating, +/area/maintenance/substation/bar{ + name = "\improper Surface Civilian Substation" + }) +"auu" = ( /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"uv" = ( +"auv" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -11906,7 +12135,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"uw" = ( +"auw" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -11927,10 +12156,10 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"ux" = ( +"aux" = ( /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) -"uy" = ( +"auy" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -11949,26 +12178,27 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uz" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, +"auz" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; req_access = list() }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"uA" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 24 + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/closet/wardrobe/science_white, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"auA" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -11981,7 +12211,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uB" = ( +"auB" = ( /obj/machinery/light{ dir = 1 }, @@ -11997,7 +12227,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uC" = ( +"auC" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -12016,7 +12246,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uD" = ( +"auD" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12032,7 +12262,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uE" = ( +"auE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -12049,7 +12279,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"uF" = ( +"auF" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -12064,8 +12294,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uG" = ( +/area/tether/surfacebase/surface_three_hall) +"auG" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -12073,26 +12303,26 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uH" = ( +/area/tether/surfacebase/surface_three_hall) +"auH" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"uI" = ( +/area/tether/surfacebase/surface_three_hall) +"auI" = ( /obj/structure/railing, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"uJ" = ( +/area/tether/surfacebase/surface_three_hall) +"auJ" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"uK" = ( +/area/tether/surfacebase/surface_three_hall) +"auK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12104,16 +12334,16 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uL" = ( +/area/tether/surfacebase/surface_three_hall) +"auL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/beige/border, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uM" = ( +/area/tether/surfacebase/surface_three_hall) +"auM" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -12125,8 +12355,8 @@ }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"uN" = ( +/area/tether/surfacebase/surface_three_hall) +"auN" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -12142,14 +12372,14 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uO" = ( +"auO" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uP" = ( +"auP" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ pixel_x = 3 @@ -12160,18 +12390,19 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"uQ" = ( +"auQ" = ( /obj/structure/table/marble, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /obj/machinery/recharger, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uR" = ( +"auR" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uS" = ( +"auS" = ( /obj/machinery/computer/security/telescreen/entertainment{ icon_state = "frame"; pixel_x = 0; @@ -12179,24 +12410,24 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uT" = ( +"auT" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uU" = ( +"auU" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"uV" = ( +"auV" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"uW" = ( +"auW" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -12215,7 +12446,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"uX" = ( +"auX" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/item/weapon/cell/high{ @@ -12243,31 +12474,31 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"uY" = ( +"auY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/rnd/research) -"uZ" = ( +"auZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"va" = ( +"ava" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vb" = ( +"avb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vc" = ( +"avc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -12279,7 +12510,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vd" = ( +"avd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -12291,7 +12522,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"ve" = ( +"ave" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12303,7 +12534,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vf" = ( +"avf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12319,7 +12550,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vg" = ( +"avg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12331,8 +12562,8 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vh" = ( +/area/tether/surfacebase/surface_three_hall) +"avh" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -12344,27 +12575,24 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vi" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 4 +/area/tether/surfacebase/surface_three_hall) +"avi" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/cable{ - icon_state = "1-2" +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vj" = ( +/area/tether/surfacebase/surface_three_hall) +"avj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -12379,53 +12607,56 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vk" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +/area/tether/surfacebase/surface_three_hall) +"avk" = ( +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vl" = ( -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vm" = ( +/area/tether/surfacebase/surface_three_hall) +"avl" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"avm" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vn" = ( +/area/tether/surfacebase/surface_three_hall) +"avn" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12444,45 +12675,44 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vo" = ( +/area/tether/surfacebase/surface_three_hall) +"avo" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, /area/crew_quarters/bar) -"vp" = ( +"avp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"vq" = ( +"avq" = ( /obj/structure/table/marble, /obj/effect/floor_decal/spline/plain{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vr" = ( +"avr" = ( /obj/structure/table/marble, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vs" = ( -/obj/structure/table/marble, -/obj/machinery/camera/network/civilian{ - dir = 9 +"avs" = ( +/obj/effect/floor_decal/borderfloorblack{ + dir = 1 }, -/obj/item/weapon/reagent_containers/food/condiment/small/saltshaker{ - pixel_x = -3; - pixel_y = 0 +/obj/effect/floor_decal/industrial/danger{ + dir = 1 }, -/obj/item/weapon/reagent_containers/food/condiment/small/peppermill{ - pixel_x = 3 +/obj/machinery/alarm{ + dir = 1; + pixel_y = -22 }, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/bar) -"vt" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"avt" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/micro_laser, /obj/item/weapon/stock_parts/micro_laser, @@ -12498,7 +12728,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vu" = ( +"avu" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -12509,27 +12739,27 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vv" = ( +"avv" = ( /obj/machinery/r_n_d/destructive_analyzer, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vw" = ( +"avw" = ( /obj/machinery/computer/rdconsole/core, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vx" = ( +"avx" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vy" = ( +"avy" = ( /obj/structure/disposalpipe/segment, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vz" = ( +"avz" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -12538,7 +12768,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vA" = ( +"avA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -12549,7 +12779,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vB" = ( +"avB" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -12558,20 +12788,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vC" = ( +"avC" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vD" = ( +"avD" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vE" = ( +"avE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -12583,14 +12813,14 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vF" = ( +/area/tether/surfacebase/surface_three_hall) +"avF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"vG" = ( +"avG" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12601,8 +12831,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vH" = ( +/area/tether/surfacebase/surface_three_hall) +"avH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -12616,16 +12846,16 @@ sortType = "Hydroponics" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vI" = ( +/area/tether/surfacebase/surface_three_hall) +"avI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vJ" = ( +/area/tether/surfacebase/surface_three_hall) +"avJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, @@ -12638,28 +12868,28 @@ }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"vK" = ( +/area/tether/surfacebase/surface_three_hall) +"avK" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"vL" = ( +"avL" = ( /obj/structure/table/bench/wooden, /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"vM" = ( +"avM" = ( /obj/structure/table/bench/wooden, /obj/machinery/status_display{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"vN" = ( +"avN" = ( /obj/effect/floor_decal/corner/beige{ dir = 9 }, @@ -12669,11 +12899,11 @@ /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vO" = ( +"avO" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"vP" = ( +"avP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -12682,7 +12912,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"vQ" = ( +"avQ" = ( /obj/structure/table/standard, /obj/machinery/recharger{ pixel_y = 0 @@ -12695,7 +12925,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vR" = ( +"avR" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -12707,7 +12937,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"vS" = ( +"avS" = ( /obj/structure/table/standard, /obj/item/weapon/stock_parts/scanning_module{ pixel_x = 2; @@ -12732,7 +12962,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vT" = ( +"avT" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -12747,13 +12977,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vU" = ( +"avU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vV" = ( +"avV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12763,7 +12993,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"vW" = ( +"avW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12773,7 +13003,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"vX" = ( +"avX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -12788,30 +13018,30 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"vY" = ( +"avY" = ( /obj/structure/sign/deck/third, /turf/simulated/shuttle/wall/voidcraft/green{ hard_corner = 1 }, /area/tether/elevator) -"vZ" = ( +"avZ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wa" = ( +"awa" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wb" = ( +"awb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"wc" = ( +"awc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, @@ -12823,24 +13053,18 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wd" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +"awd" = ( +/obj/machinery/librarycomp{ + pixel_y = 0 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"we" = ( +/obj/structure/table/woodentable, +/turf/simulated/floor/carpet, +/area/library) +"awe" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12855,7 +13079,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wf" = ( +"awf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12866,7 +13090,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wg" = ( +"awg" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -12881,7 +13105,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wh" = ( +"awh" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/structure/cable/green{ d1 = 4; @@ -12891,107 +13115,63 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"wi" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +"awi" = ( +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awj" = ( +/obj/structure/sink{ + icon_state = "sink"; + dir = 8; + pixel_x = -12; + pixel_y = 2 }, -/obj/structure/cable{ - icon_state = "4-8" +/obj/structure/mirror{ + pixel_x = -28; + pixel_y = 0 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wj" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awk" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wk" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wl" = ( -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awl" = ( +/obj/structure/toilet{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"awm" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wn" = ( -/obj/structure/cable{ - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/cable{ - icon_state = "4-8" - }, -/obj/machinery/light, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wo" = ( +"awn" = ( +/turf/simulated/wall/r_wall, +/area/bridge_hallway) +"awo" = ( /obj/machinery/light_switch{ pixel_x = 25 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wp" = ( +"awp" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -13001,8 +13181,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wq" = ( +/area/tether/surfacebase/surface_three_hall) +"awq" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, @@ -13013,8 +13193,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wr" = ( +/area/tether/surfacebase/surface_three_hall) +"awr" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, @@ -13025,8 +13205,8 @@ dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"ws" = ( +/area/tether/surfacebase/surface_three_hall) +"aws" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -13040,19 +13220,19 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wt" = ( +/area/tether/surfacebase/surface_three_hall) +"awt" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wu" = ( +/area/tether/surfacebase/surface_three_hall) +"awu" = ( /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"wv" = ( +"awv" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 }, @@ -13064,14 +13244,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"ww" = ( +"aww" = ( /obj/effect/floor_decal/corner/beige{ dir = 10 }, /obj/effect/floor_decal/spline/plain, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"wx" = ( +"awx" = ( /obj/structure/disposalpipe/segment, /obj/machinery/vending/fitness, /obj/effect/floor_decal/borderfloor{ @@ -13091,7 +13271,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wy" = ( +"awy" = ( /obj/structure/table/reinforced, /obj/structure/disposalpipe/segment{ dir = 4 @@ -13110,7 +13290,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/rnd/research) -"wz" = ( +"awz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13130,7 +13310,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wA" = ( +"awA" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -13157,7 +13337,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wB" = ( +"awB" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13173,7 +13353,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wC" = ( +"awC" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13189,7 +13369,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wD" = ( +"awD" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 2; @@ -13215,7 +13395,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wE" = ( +"awE" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13237,7 +13417,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"wF" = ( +"awF" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -13249,7 +13429,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wG" = ( +"awG" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -13265,7 +13445,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wH" = ( +"awH" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13281,21 +13461,25 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wI" = ( -/obj/structure/cable{ - icon_state = "4-8" +"awI" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) }, -/obj/structure/disposalpipe/segment{ - dir = 2; - icon_state = "pipe-c" +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"wJ" = ( +/turf/simulated/floor, +/area/bridge_hallway) +"awJ" = ( /turf/simulated/wall, /area/maintenance/lower/atrium) -"wK" = ( +"awK" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13318,14 +13502,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"wL" = ( +"awL" = ( /obj/machinery/light/small{ dir = 4 }, /obj/machinery/recharge_station, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wM" = ( +"awM" = ( /obj/machinery/light/small{ dir = 4 }, @@ -13334,7 +13518,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/recreation_area_restroom) -"wN" = ( +"awN" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -13353,7 +13537,7 @@ }, /turf/simulated/wall, /area/maintenance/lower/atrium) -"wO" = ( +"awO" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13368,23 +13552,23 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"wP" = ( +"awP" = ( /turf/simulated/wall, /area/hydroponics) -"wQ" = ( +"awQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/disposalpipe/segment, /turf/simulated/floor/plating, /area/hydroponics) -"wR" = ( +"awR" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/hydroponics) -"wS" = ( +"awS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -13401,13 +13585,13 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wT" = ( +"awT" = ( /obj/structure/disposalpipe/segment, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wU" = ( +"awU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13429,7 +13613,7 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"wV" = ( +"awV" = ( /obj/structure/table/bench/wooden, /obj/machinery/light{ dir = 8; @@ -13438,7 +13622,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"wW" = ( +"awW" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -13462,7 +13646,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"wX" = ( +"awX" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -13483,17 +13667,17 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"wY" = ( +"awY" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"wZ" = ( +"awZ" = ( /obj/machinery/hologram/holopad, /obj/machinery/r_n_d/protolathe, /turf/simulated/floor/tiled/dark, /area/rnd/research) -"xa" = ( +"axa" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -13502,7 +13686,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"xb" = ( +"axb" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -13514,7 +13698,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xc" = ( +"axc" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -13532,14 +13716,14 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xd" = ( +"axd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xe" = ( +"axe" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -13557,53 +13741,34 @@ /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xf" = ( -/obj/structure/cable{ - icon_state = "4-8" +"axf" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/command{ + name = "Private Restroom"; + req_access = newlist(); + req_one_access = newlist() }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/computer/guestpass{ - dir = 1; - icon_state = "guest"; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"xg" = ( +/turf/simulated/floor/tiled/white, +/area/crew_quarters/captain) +"axg" = ( /turf/simulated/wall, /area/library) -"xh" = ( -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 +"axh" = ( +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j2"; + dir = 2 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"xi" = ( +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"axi" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/library) -"xj" = ( +"axj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -13615,11 +13780,11 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xk" = ( +"axk" = ( /obj/structure/sign/department/biblio, /turf/simulated/wall, /area/library) -"xl" = ( +"axl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -13632,7 +13797,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xm" = ( +"axm" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -13645,7 +13810,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"xn" = ( +"axn" = ( /obj/machinery/floodlight, /obj/machinery/alarm{ dir = 8; @@ -13661,7 +13826,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"xo" = ( +"axo" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -13671,7 +13836,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xp" = ( +"axp" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -13682,7 +13847,7 @@ /obj/machinery/smartfridge, /turf/simulated/floor/tiled, /area/hydroponics) -"xq" = ( +"axq" = ( /obj/machinery/honey_extractor, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -13692,7 +13857,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xr" = ( +"axr" = ( /obj/machinery/smartfridge/drying_rack, /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -13702,7 +13867,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xs" = ( +"axs" = ( /obj/item/bee_pack, /obj/item/honey_frame, /obj/item/honey_frame, @@ -13724,7 +13889,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xt" = ( +"axt" = ( /obj/machinery/vending/hydronutrients, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -13734,13 +13899,13 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xu" = ( +"axu" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, /area/hydroponics) -"xv" = ( +"axv" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -13755,7 +13920,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xw" = ( +"axw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -13775,11 +13940,11 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xx" = ( +"axx" = ( /obj/structure/flora/pottedplant, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"xy" = ( +"axy" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -13801,7 +13966,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xz" = ( +"axz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -13811,25 +13976,19 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xA" = ( +"axA" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, /area/rnd/research) -"xB" = ( -/obj/machinery/camera/network/research{ - dir = 8 +"axB" = ( +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research) -"xC" = ( +/turf/simulated/floor/tiled/techmaint, +/area/tether/surfacebase/shuttle_pad) +"axC" = ( /obj/structure/table/standard, /obj/item/stack/cable_coil, /obj/item/stack/cable_coil{ @@ -13852,7 +14011,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"xD" = ( +"axD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -13877,7 +14036,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xE" = ( +"axE" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 8 }, @@ -13886,14 +14045,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"xF" = ( +"axF" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1" }, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"xG" = ( +"axG" = ( /obj/structure/disposalpipe/segment, /obj/machinery/light{ dir = 8; @@ -13915,7 +14074,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xH" = ( +"axH" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -13943,7 +14102,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xI" = ( +"axI" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -13956,7 +14115,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xJ" = ( +"axJ" = ( /obj/structure/table/standard, /obj/item/weapon/storage/toolbox/mechanical{ pixel_x = 2; @@ -13977,7 +14136,7 @@ /obj/effect/floor_decal/corner/mauve/bordercorner2, /turf/simulated/floor/tiled, /area/rnd/research) -"xK" = ( +"axK" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 @@ -13993,7 +14152,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xL" = ( +"axL" = ( /obj/structure/table/standard, /obj/structure/reagent_dispensers/acid{ density = 0; @@ -14011,7 +14170,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/research) -"xM" = ( +"axM" = ( /obj/structure/table/standard, /obj/item/weapon/disk/tech_disk{ pixel_x = 0; @@ -14037,7 +14196,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled, /area/rnd/research) -"xN" = ( +"axN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -14050,45 +14209,29 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"xO" = ( +"axO" = ( /obj/structure/railing, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"xP" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ +"axP" = ( +/obj/machinery/holoplant, +/obj/effect/floor_decal/borderfloorblack{ dir = 8 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"xQ" = ( +/area/rnd/outpost/xenobiology/outpost_hallway) +"axQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xR" = ( +"axR" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -14104,7 +14247,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"xS" = ( +"axS" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Library" }, @@ -14118,7 +14261,7 @@ dir = 8 }, /area/library) -"xT" = ( +"axT" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 4 @@ -14128,7 +14271,7 @@ dir = 4 }, /area/library) -"xU" = ( +"axU" = ( /obj/structure/bookcase{ desc = "There appears to be a shrine to WGW at the back..."; name = "Forbidden Knowledge" @@ -14136,8 +14279,8 @@ /obj/item/weapon/book/manual/engineering_hacking, /obj/item/weapon/book/manual/nuclear, /turf/simulated/floor/carpet, -/area/library) -"xV" = ( +/area/tether/surfacebase/library/study) +"axV" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -14148,8 +14291,8 @@ /obj/item/weapon/pen/invisible, /obj/item/weapon/pen/invisible, /turf/simulated/floor/carpet, -/area/library) -"xW" = ( +/area/tether/surfacebase/library/study) +"axW" = ( /obj/structure/table/rack{ dir = 8; layer = 2.9 @@ -14163,8 +14306,8 @@ pixel_y = 0 }, /turf/simulated/floor/carpet, -/area/library) -"xX" = ( +/area/tether/surfacebase/library/study) +"axX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "1-8" @@ -14179,7 +14322,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"xY" = ( +"axY" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -14203,20 +14346,20 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"xZ" = ( +"axZ" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hydroponics) -"ya" = ( +"aya" = ( /turf/simulated/floor/tiled, /area/hydroponics) -"yb" = ( +"ayb" = ( /obj/effect/landmark/start{ name = "Gardener" }, /turf/simulated/floor/tiled, /area/hydroponics) -"yc" = ( +"ayc" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -14225,14 +14368,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yd" = ( +"ayd" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"ye" = ( +"aye" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -14255,7 +14398,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"yf" = ( +"ayf" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 @@ -14263,42 +14406,27 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yg" = ( +"ayg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yh" = ( +"ayh" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yi" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +"ayi" = ( +/obj/structure/disposalpipe/sortjunction{ + name = "Research"; + sortType = "Research" }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"yj" = ( +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"ayj" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -14307,14 +14435,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"yk" = ( +"ayk" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open, /area/rnd/staircase/thirdfloor) -"yl" = ( +"ayl" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -14339,19 +14467,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"ym" = ( +"aym" = ( /obj/machinery/autolathe{ hacked = 1 }, /turf/simulated/floor/holofloor/tiled/dark, /area/rnd/research) -"yn" = ( +"ayn" = ( /obj/structure/sign/directions/evac{ dir = 1 }, /turf/simulated/wall, /area/rnd/research) -"yo" = ( +"ayo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ name = "Research and Development"; @@ -14359,7 +14487,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research) -"yp" = ( +"ayp" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, /obj/item/weapon/paper{ @@ -14371,13 +14499,13 @@ /obj/item/device/robotanalyzer, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"yq" = ( +"ayq" = ( /obj/machinery/optable{ name = "Robotics Operating Table" }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"yr" = ( +"ayr" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -14405,7 +14533,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"ys" = ( +"ays" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 4 }, @@ -14414,7 +14542,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yt" = ( +"ayt" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 5 @@ -14439,7 +14567,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yu" = ( +"ayu" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -14464,76 +14592,55 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yv" = ( -/obj/structure/disposalpipe/sortjunction{ - name = "Research"; - sortType = "Research" +"ayv" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yw" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/tether{ - dir = 9 +"ayw" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"yx" = ( -/obj/machinery/librarycomp{ - pixel_y = 0 - }, -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 - }, -/turf/simulated/floor/carpet, -/area/library) -"yy" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"ayx" = ( +/turf/simulated/wall/r_wall, +/area/crew_quarters/heads/hop) +"ayy" = ( /obj/structure/table/woodentable, /obj/item/device/camera_film, /obj/item/device/camera_film, /turf/simulated/floor/carpet, /area/library) -"yz" = ( +"ayz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"yA" = ( +"ayA" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/library) -"yB" = ( +"ayB" = ( /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yC" = ( +"ayC" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -14546,7 +14653,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yD" = ( +"ayD" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/corner/green{ @@ -14557,7 +14664,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yE" = ( +"ayE" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, @@ -14566,7 +14673,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yF" = ( +"ayF" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/effect/floor_decal/corner/green{ dir = 10 @@ -14576,29 +14683,35 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"yG" = ( +"ayG" = ( /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"yH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +"ayH" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/effect/floor_decal/corner/mauve/border{ + dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yI" = ( +"ayI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 @@ -14606,20 +14719,20 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yJ" = ( +"ayJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yK" = ( +"ayK" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yL" = ( +"ayL" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -14633,7 +14746,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yM" = ( +"ayM" = ( /obj/structure/table/woodentable, /obj/machinery/computer/security/telescreen/entertainment{ icon_state = "frame"; @@ -14642,7 +14755,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"yN" = ( +"ayN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -14651,7 +14764,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yO" = ( +"ayO" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -14674,7 +14787,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yP" = ( +"ayP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -14683,7 +14796,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yQ" = ( +"ayQ" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -14702,7 +14815,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yR" = ( +"ayR" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14726,7 +14839,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yS" = ( +"ayS" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -14744,13 +14857,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yT" = ( +"ayT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"yU" = ( +"ayU" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14767,7 +14880,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yV" = ( +"ayV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14789,7 +14902,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yW" = ( +"ayW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14810,7 +14923,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"yX" = ( +"ayX" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -14841,7 +14954,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"yY" = ( +"ayY" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -14859,7 +14972,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"yZ" = ( +"ayZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -14881,7 +14994,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"za" = ( +"aza" = ( /obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 @@ -14905,7 +15018,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zb" = ( +"azb" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -14923,60 +15036,48 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zc" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +"azc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/door/firedoor/glass/hidden/steel{ +/turf/simulated/floor/plating, +/area/rnd/research) +"azd" = ( +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 8 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"zd" = ( -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"ze" = ( -/obj/machinery/hologram/holopad, +/area/rnd/research) +"aze" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - icon_state = "map-scrubbers"; - dir = 4 + d2 = 2; + icon_state = "1-2" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zf" = ( +"azf" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/mauve/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -14987,7 +15088,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zg" = ( +"azg" = ( /obj/machinery/newscaster{ pixel_x = 25 }, @@ -15006,7 +15107,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zh" = ( +"azh" = ( /obj/structure/disposalpipe/trunk{ dir = 8 }, @@ -15017,20 +15118,37 @@ }, /turf/simulated/floor/wood, /area/library) -"zi" = ( +"azi" = ( /obj/structure/bed/chair/comfy/brown, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, /turf/simulated/floor/carpet, -/area/library) -"zj" = ( +/area/tether/surfacebase/library/study) +"azj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/carpet, -/area/library) -"zk" = ( +/area/tether/surfacebase/library/study) +"azk" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, @@ -15045,23 +15163,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zl" = ( +"azl" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"zm" = ( +"azm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/carpet, -/area/library) -"zn" = ( +/area/tether/surfacebase/library/study) +"azn" = ( /obj/random/tech_supply, /obj/structure/table/steel, /obj/random/maintenance/engineering, @@ -15074,10 +15197,10 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"zo" = ( +"azo" = ( /turf/simulated/wall, /area/rnd/research/researchdivision) -"zp" = ( +"azp" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -15091,7 +15214,7 @@ /obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"zq" = ( +"azq" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -15108,24 +15231,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ +"azr" = ( +/obj/structure/bed/chair/wood{ dir = 4 }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/structure/cable/green{ + icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/hydroponics) -"zs" = ( +/area/rnd/outpost/xenobiology/outpost_breakroom) +"azs" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -15140,41 +15260,40 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"zt" = ( +"azt" = ( /obj/structure/sign/botany, /turf/simulated/wall, /area/hydroponics) -"zu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +"azu" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/box/syringes, +/obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, -/obj/effect/floor_decal/corner/lime/bordercorner2{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 10 }, -/obj/machinery/camera/network/civilian{ - dir = 4 +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Medical Department"; + departmentType = 3; + name = "Medical RC"; + pixel_x = -30; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"zv" = ( +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/triage) +"azv" = ( /obj/structure/sign/double/barsign{ dir = 8 }, /turf/simulated/wall, /area/crew_quarters/bar) -"zw" = ( +"azw" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -15190,7 +15309,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zx" = ( +"azx" = ( /obj/structure/table/bench/wooden, /obj/machinery/light{ dir = 4; @@ -15203,7 +15322,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"zy" = ( +"azy" = ( /obj/structure/closet/firecloset, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -15224,7 +15343,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zz" = ( +"azz" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -15252,7 +15371,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zA" = ( +"azA" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/machinery/light, @@ -15267,10 +15386,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zB" = ( +"azB" = ( /turf/simulated/wall, /area/rnd/research_foyer) -"zC" = ( +"azC" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -15295,13 +15414,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zD" = ( +"azD" = ( /turf/simulated/wall, /area/assembly/chargebay) -"zE" = ( +"azE" = ( /turf/simulated/wall, /area/assembly/robotics) -"zF" = ( +"azF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -15311,14 +15430,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zG" = ( +"azG" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ name = "Research Staircase" }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"zH" = ( +"azH" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -15327,7 +15446,7 @@ }, /turf/simulated/floor/plating, /area/assembly/robotics) -"zI" = ( +"azI" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -15342,17 +15461,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zJ" = ( +"azJ" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zK" = ( +"azK" = ( /obj/structure/cable/green{ icon_state = "0-8" }, @@ -15375,10 +15498,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"zL" = ( +"azL" = ( /turf/simulated/wall/r_wall, /area/rnd/research/testingrange) -"zM" = ( +"azM" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -15405,14 +15528,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"zN" = ( +"azN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"zO" = ( +"azO" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -15435,7 +15558,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"zP" = ( +"azP" = ( /obj/machinery/door/morgue{ dir = 2; name = "Private Study"; @@ -15448,18 +15571,28 @@ dir = 4 }, /obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/carpet, /area/library) -"zQ" = ( +"azQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/carpet, /area/library) -"zR" = ( +"azR" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -15475,62 +15608,54 @@ pixel_x = 2; pixel_y = 6 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/carpet, /area/library) -"zS" = ( +"azS" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /turf/simulated/floor/wood, /area/library) -"zT" = ( +"azT" = ( /turf/simulated/floor/wood, /area/library) -"zU" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals3{ - dir = 8 - }, -/obj/structure/table/reinforced, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled, -/area/rnd/research_foyer) -"zV" = ( -/obj/machinery/libraryscanner, -/turf/simulated/floor/wood, -/area/library) -"zW" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder{ - pixel_y = 0 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/newscaster{ +"azU" = ( +/obj/machinery/light_switch{ + dir = 1; pixel_x = 0; pixel_y = -28 }, -/obj/item/device/retail_scanner/civilian{ - dir = 1 +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"azV" = ( +/obj/machinery/libraryscanner, +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/obj/item/device/camera, -/obj/item/device/tape, -/turf/simulated/floor/carpet, +/turf/simulated/floor/wood, /area/library) -"zX" = ( +"azW" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/wood, +/area/library) +"azX" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -15553,7 +15678,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"zY" = ( +"azY" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -15566,7 +15691,7 @@ /obj/effect/floor_decal/rust, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"zZ" = ( +"azZ" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -15578,11 +15703,11 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Aa" = ( +"aAa" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hydroponics) -"Ab" = ( +"aAb" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, @@ -15594,7 +15719,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ac" = ( +"aAc" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -15608,7 +15733,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/hydroponics) -"Ad" = ( +"aAd" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15622,7 +15747,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ae" = ( +"aAe" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -15630,7 +15755,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Af" = ( +"aAf" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -15653,9 +15778,12 @@ d2 = 2; icon_state = "1-2" }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ag" = ( +"aAg" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -15675,7 +15803,7 @@ /obj/structure/closet/firecloset, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"Ah" = ( +"aAh" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -15688,7 +15816,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ai" = ( +"aAi" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -15701,18 +15829,23 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Aj" = ( +"aAj" = ( /obj/machinery/light/flamp, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ak" = ( -/obj/machinery/camera/network/civilian{ - dir = 9 +"aAk" = ( +/obj/structure/flora/pottedplant/unusual, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 + }, +/obj/machinery/camera/network/research{ + dir = 1 }, -/obj/structure/flora/pottedplant, /turf/simulated/floor/wood, -/area/crew_quarters/bar) -"Al" = ( +/area/rnd/outpost/xenobiology/outpost_office) +"aAl" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -15722,38 +15855,40 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Am" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/glass_research{ - name = "Weapons Testing Range"; - req_access = list(47) - }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"An" = ( +"aAm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, /obj/effect/floor_decal/corner/mauve/border{ dir = 1 }, -/obj/structure/disposalpipe/trunk, -/obj/machinery/disposal, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ao" = ( +"aAn" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/junction{ + icon_state = "pipe-j1"; + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aAo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ap" = ( +"aAp" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -15775,7 +15910,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Aq" = ( +"aAq" = ( /obj/structure/bed/chair, /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -15793,7 +15928,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ar" = ( +"aAr" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 @@ -15803,21 +15938,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"As" = ( +"aAs" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"At" = ( -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - icon_state = "warningcorner"; - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"Au" = ( +"aAt" = ( +/obj/structure/table/wooden_reinforced, +/obj/item/weapon/paperplane, +/obj/machinery/camera/network/research, +/turf/simulated/floor/wood, +/area/rnd/outpost/xenobiology/outpost_office) +"aAu" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -15838,7 +15969,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Av" = ( +"aAv" = ( /obj/effect/floor_decal/borderfloor, /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -15854,17 +15985,26 @@ /obj/effect/floor_decal/corner/lightgrey/bordercorner2, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Aw" = ( +"aAw" = ( /obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/item/device/taperecorder{ + pixel_y = 0 }, -/obj/item/weapon/pen/invisible, -/obj/machinery/light/small, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/newscaster{ + pixel_x = 0; + pixel_y = -28 + }, +/obj/item/device/retail_scanner/civilian{ + dir = 1 + }, +/obj/item/device/camera, +/obj/item/device/tape, /turf/simulated/floor/carpet, -/area/library) -"Ax" = ( +/area/tether/surfacebase/library/study) +"aAx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -15881,27 +16021,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ay" = ( -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, +"aAy" = ( /obj/structure/table/woodentable, -/obj/item/device/tvcamera, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24; - pixel_y = 6 +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, +/obj/item/weapon/pen/invisible, +/obj/machinery/light/small, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"aAz" = ( /turf/simulated/floor/carpet, /area/library) -"Az" = ( -/turf/simulated/floor/carpet, -/area/library) -"AA" = ( +"aAA" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -15909,12 +16042,12 @@ }, /turf/simulated/floor/carpet, /area/library) -"AB" = ( +"aAB" = ( /turf/simulated/wall, /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"AC" = ( +"aAC" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -15934,7 +16067,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"AD" = ( +"aAD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -15944,7 +16077,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"AE" = ( +"aAE" = ( /obj/machinery/door/airlock/maintenance/common{ name = "Hydroponics Maintenance"; req_access = list(35) @@ -15969,7 +16102,7 @@ }, /turf/simulated/floor/plating, /area/hydroponics) -"AF" = ( +"aAF" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -15989,7 +16122,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AG" = ( +"aAG" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ d1 = 4; @@ -16011,7 +16144,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AH" = ( +"aAH" = ( /obj/effect/floor_decal/corner/green{ dir = 5 }, @@ -16031,7 +16164,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AI" = ( +"aAI" = ( /obj/machinery/portable_atmospherics/hydroponics, /obj/structure/cable/green{ d1 = 4; @@ -16052,7 +16185,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AJ" = ( +"aAJ" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16066,7 +16199,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AK" = ( +"aAK" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -16092,7 +16225,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"AL" = ( +"aAL" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -16123,7 +16256,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"AM" = ( +"aAM" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor/corner{ dir = 4 @@ -16137,23 +16270,19 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AN" = ( +"aAN" = ( /turf/simulated/open, /area/hallway/lower/third_south) -"AO" = ( -/obj/machinery/camera/network/civilian{ - dir = 4 - }, -/obj/structure/bed/chair/wood{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"AP" = ( +"aAO" = ( +/obj/machinery/recharge_station, +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aAP" = ( /obj/structure/bed/chair/wood, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"AQ" = ( +"aAQ" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -16161,11 +16290,14 @@ /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"AR" = ( +"aAR" = ( /obj/machinery/computer/arcade, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"AS" = ( +"aAS" = ( /obj/machinery/light{ dir = 1 }, @@ -16183,17 +16315,23 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AT" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +"aAT" = ( +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/disposalpipe/junction, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AU" = ( +"aAU" = ( /obj/structure/bed/chair, /obj/machinery/firealarm{ dir = 2; @@ -16211,7 +16349,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"AV" = ( +"aAV" = ( /obj/structure/closet{ name = "materials" }, @@ -16240,7 +16378,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"AW" = ( +"aAW" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -16261,7 +16399,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AX" = ( +"aAX" = ( /obj/structure/closet{ name = "mechanical equipment" }, @@ -16304,7 +16442,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"AY" = ( +"aAY" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -16329,7 +16467,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"AZ" = ( +"aAZ" = ( /obj/structure/closet{ name = "robotics parts" }, @@ -16400,20 +16538,26 @@ /obj/effect/floor_decal/corner/mauve/bordercorner2{ dir = 5 }, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ba" = ( -/obj/structure/table/reinforced, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor{ - dir = 9 +"aBa" = ( +/obj/structure/table/standard, +/obj/item/device/lightreplacer, +/obj/item/weapon/storage/box/lights/mixed, +/obj/item/weapon/storage/box/lights/mixed, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/apc; + dir = 8; + name = "west bump"; + pixel_x = -28 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 9 +/obj/structure/cable/green{ + icon_state = "0-4" }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"Bb" = ( +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aBb" = ( /obj/structure/table/reinforced, /obj/machinery/recharger/wallcharger{ pixel_x = 4; @@ -16429,7 +16573,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Bc" = ( +"aBc" = ( /obj/machinery/recharger/wallcharger{ pixel_x = 4; pixel_y = 28 @@ -16450,7 +16594,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Bd" = ( +"aBd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -16458,7 +16602,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Be" = ( +"aBe" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -16478,33 +16622,12 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bf" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Bg" = ( +"aBf" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/camera/network/research/xenobio, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_stairs) +"aBg" = ( /obj/structure/cable/green{ icon_state = "0-4" }, @@ -16529,7 +16652,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bh" = ( +"aBh" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -16540,7 +16663,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bi" = ( +"aBi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16559,7 +16682,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Bj" = ( +"aBj" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -16572,7 +16695,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Bk" = ( +"aBk" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -16593,129 +16716,119 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Bl" = ( +"aBl" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Bm" = ( +"aBm" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/light/small, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Bn" = ( +"aBn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/assembly/robotics) -"Bo" = ( -/obj/structure/cable{ - icon_state = "4-8" +"aBo" = ( +/obj/machinery/door/airlock/command{ + id_tag = "captaindoor"; + name = "Colony Director's Office"; + req_access = list(20) }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Bp" = ( +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ d1 = 1; - d2 = 4; - icon_state = "1-4" + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aBp" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, /turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"Bq" = ( +/area/rnd/research/researchdivision) +"aBq" = ( /obj/structure/table/woodentable, /obj/item/device/taperecorder, /turf/simulated/floor/carpet, /area/library) -"Br" = ( +"aBr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"Bs" = ( +"aBs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"Bt" = ( +"aBt" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/wood, /area/library) -"Bu" = ( -/obj/structure/table/glass, -/obj/machinery/recharger{ - pixel_y = 0 +"aBu" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 }, -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/mauve/bordercorner2, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/rnd/staircase/thirdfloor) -"Bv" = ( +/obj/machinery/camera/network/research, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_autopsy) +"aBv" = ( /obj/structure/bed/chair/office/dark, /turf/simulated/floor/wood, /area/library) -"Bw" = ( +"aBw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 4 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"Bx" = ( +/area/rnd/research/researchdivision) +"aBx" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -16734,20 +16847,20 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"By" = ( +"aBy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, /area/hydroponics) -"Bz" = ( +"aBz" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/hydroponics) -"BA" = ( +"aBA" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass{ name = "Hydroponics"; @@ -16756,7 +16869,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/hydroponics) -"BB" = ( +"aBB" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 1 }, @@ -16765,16 +16878,16 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"BC" = ( +"aBC" = ( /obj/structure/table/gamblingtable, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BD" = ( +"aBD" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/storage/pill_bottle/dice, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BE" = ( +"aBE" = ( /obj/structure/bed/chair/wood{ dir = 8 }, @@ -16785,7 +16898,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BF" = ( +"aBF" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -16799,11 +16912,11 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BG" = ( +"aBG" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"BH" = ( +"aBH" = ( /obj/structure/table/glass, /obj/machinery/recharger{ pixel_y = 0 @@ -16821,7 +16934,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"BI" = ( +"aBI" = ( /obj/structure/table/reinforced, /obj/structure/cable/green{ d2 = 8; @@ -16843,19 +16956,21 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"BJ" = ( -/obj/structure/table/reinforced, -/obj/machinery/cell_charger, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/borderfloor{ - dir = 5 +"aBJ" = ( +/obj/machinery/shower{ + dir = 4; + icon_state = "shower"; + pixel_x = 5; + pixel_y = 0 }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 5 +/obj/structure/curtain/open/shower, +/obj/machinery/camera/network/research{ + dir = 1; + icon_state = "camera" }, -/turf/simulated/floor/tiled, -/area/rnd/research/testingrange) -"BK" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_south_airlock) +"aBK" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/borderfloorblack, /obj/machinery/door/airlock/glass_research{ @@ -16882,37 +16997,27 @@ pixel_y = -24; req_one_access = list(47,55) }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BL" = ( +"aBL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"BM" = ( +"aBM" = ( +/obj/machinery/hologram/holopad, /obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 8 }, -/obj/structure/sign/department/robo{ - pixel_x = 32 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"BN" = ( +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aBN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -16923,13 +17028,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BO" = ( +"aBO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"BP" = ( +"aBP" = ( /obj/structure/lattice, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced{ @@ -16953,16 +17058,16 @@ /obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/open, +/turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BQ" = ( +"aBQ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"BR" = ( +"aBR" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, @@ -16977,7 +17082,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"BS" = ( +"aBS" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17000,7 +17105,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research_foyer) -"BT" = ( +"aBT" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/ai_status_display{ pixel_y = 30 @@ -17012,7 +17117,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"BU" = ( +"aBU" = ( /obj/structure/table/reinforced, /obj/machinery/light{ dir = 8; @@ -17028,7 +17133,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"BV" = ( +"aBV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -17037,23 +17142,30 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"BW" = ( +"aBW" = ( /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"BX" = ( +"aBX" = ( +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"BY" = ( +"aBY" = ( /obj/structure/sign/department/sci{ pixel_x = -32; pixel_y = 0 @@ -17072,7 +17184,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"BZ" = ( +"aBZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 2; @@ -17087,12 +17199,12 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Ca" = ( +"aCa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cb" = ( +"aCb" = ( /obj/structure/table/reinforced, /obj/item/weapon/paper{ desc = ""; @@ -17117,13 +17229,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cc" = ( +"aCc" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Cd" = ( +"aCd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17154,7 +17266,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Ce" = ( +"aCe" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -17175,12 +17287,15 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cf" = ( +"aCf" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, +/obj/machinery/camera/network/research{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cg" = ( +"aCg" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -17201,7 +17316,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ch" = ( +"aCh" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -17217,7 +17332,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"Ci" = ( +"aCi" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17233,7 +17348,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/hydroponics) -"Cj" = ( +"aCj" = ( /obj/machinery/biogenerator, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -17249,7 +17364,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ck" = ( +"aCk" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17273,19 +17388,19 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Cl" = ( +"aCl" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Cm" = ( +"aCm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Cn" = ( +"aCn" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17306,12 +17421,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Co" = ( +"aCo" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/deck/cards, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Cp" = ( +"aCp" = ( /obj/structure/bed/chair/wood{ dir = 8 }, @@ -17322,7 +17437,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Cq" = ( +"aCq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -17330,7 +17445,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cr" = ( +"aCr" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -17341,7 +17456,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cs" = ( +"aCs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17350,28 +17465,24 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Ct" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, +"aCt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 + dir = 5 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Cu" = ( +"aCu" = ( /obj/machinery/r_n_d/circuit_imprinter, /obj/item/weapon/reagent_containers/glass/beaker/sulphuric, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Cv" = ( +"aCv" = ( /obj/machinery/pros_fabricator{ dir = 1 }, @@ -17384,7 +17495,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Cw" = ( +"aCw" = ( /obj/machinery/autolathe{ hacked = 1 }, @@ -17406,7 +17517,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Cx" = ( +"aCx" = ( /obj/structure/table/reinforced, /obj/machinery/light_switch{ pixel_x = -25 @@ -17421,11 +17532,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cy" = ( +"aCy" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Cz" = ( +"aCz" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -17443,7 +17554,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"CA" = ( +"aCA" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -17458,29 +17569,32 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"CB" = ( +"aCB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"CC" = ( +"aCC" = ( /obj/effect/floor_decal/steeldecal/steel_decals4, /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"CD" = ( +"aCD" = ( +/obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 +/obj/machinery/door/airlock/glass_research{ + name = "Weapons Testing Range"; + req_access = list(47) }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"CE" = ( +/area/rnd/research/testingrange) +"aCE" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -17493,16 +17607,19 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CF" = ( +"aCF" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 }, /turf/simulated/floor/wood, /area/library) -"CG" = ( +"aCG" = ( /obj/machinery/bookbinder{ pixel_y = 0 }, @@ -17512,13 +17629,13 @@ }, /turf/simulated/floor/wood, /area/library) -"CH" = ( +"aCH" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, /turf/simulated/floor/wood, /area/library) -"CI" = ( +"aCI" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_research{ name = "Weapons Testing Range"; @@ -17526,11 +17643,11 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"CJ" = ( +"aCJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/wood, /area/library) -"CK" = ( +"aCK" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -25 @@ -17547,7 +17664,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"CL" = ( +"aCL" = ( /obj/machinery/power/breakerbox/activated{ RCon_tag = "Surface Civilian Substation Bypass" }, @@ -17555,13 +17672,24 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"CM" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +"aCM" = ( +/obj/machinery/firealarm{ + dir = 1; + pixel_y = -24 }, -/turf/simulated/floor/wood, -/area/library) -"CN" = ( +/obj/structure/table/woodentable, +/obj/item/device/tvcamera, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 8; + pixel_x = 24; + pixel_y = 6 + }, +/turf/simulated/floor/carpet, +/area/tether/surfacebase/library/study) +"aCN" = ( /obj/structure/noticeboard{ pixel_y = -26 }, @@ -17580,10 +17708,10 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"CO" = ( +"aCO" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_stairs) -"CP" = ( +"aCP" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ icon_state = "1-8" @@ -17602,7 +17730,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"CQ" = ( +"aCQ" = ( /obj/structure/cable{ icon_state = "0-8" }, @@ -17623,7 +17751,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"CR" = ( +"aCR" = ( /obj/machinery/seed_extractor, /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -17633,7 +17761,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"CS" = ( +"aCS" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -17652,13 +17780,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CT" = ( +"aCT" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CU" = ( +"aCU" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -17678,7 +17806,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CV" = ( +"aCV" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -17696,12 +17824,12 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"CW" = ( +"aCW" = ( /obj/structure/table/gamblingtable, /obj/item/weapon/storage/pill_bottle/dice_nerd, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"CX" = ( +"aCX" = ( /obj/structure/bed/chair/wood{ dir = 8 }, @@ -17710,7 +17838,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"CY" = ( +"aCY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17719,7 +17847,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"CZ" = ( +"aCZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17731,11 +17859,11 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Da" = ( +"aDa" = ( /obj/machinery/portable_atmospherics/hydroponics/soil, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Db" = ( +"aDb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17747,27 +17875,27 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Dc" = ( +"aDc" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Dd" = ( +"aDd" = ( /obj/machinery/light{ dir = 1 }, /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"De" = ( +"aDe" = ( /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Df" = ( +"aDf" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Dg" = ( +"aDg" = ( /obj/machinery/atmospherics/unary/vent_pump/on, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -17777,7 +17905,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dh" = ( +"aDh" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -17786,15 +17914,16 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Di" = ( +"aDi" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -24 }, /obj/machinery/portable_atmospherics/hydroponics/soil, +/obj/machinery/camera/network/civilian, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"Dj" = ( +"aDj" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 }, @@ -17803,7 +17932,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dk" = ( +"aDk" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -17822,7 +17951,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dl" = ( +"aDl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -17842,7 +17971,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dm" = ( +"aDm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -17854,7 +17983,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dn" = ( +"aDn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -17863,23 +17992,17 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Do" = ( -/obj/structure/sink{ - dir = 4; - icon_state = "sink"; - pixel_x = 11; - pixel_y = 0 +"aDo" = ( +/obj/structure/table/standard, +/obj/item/device/slime_scanner, +/obj/item/device/slime_scanner, +/obj/item/device/multitool, +/obj/machinery/camera/network/research{ + dir = 1 }, -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/lime/border{ - dir = 5 - }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/public_garden_three) -"Dp" = ( +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aDp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -17898,7 +18021,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"Dq" = ( +"aDq" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -17907,7 +18030,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"Dr" = ( +"aDr" = ( /obj/structure/table/woodentable, /obj/random/maintenance/clean, /obj/effect/floor_decal/borderfloor/corner{ @@ -17925,10 +18048,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Ds" = ( +"aDs" = ( /turf/simulated/open, /area/tether/surfacebase/public_garden_three) -"Dt" = ( +"aDt" = ( /obj/structure/table/woodentable, /obj/item/weapon/material/minihoe, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17945,11 +18068,11 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Du" = ( +"aDu" = ( /obj/structure/table/bench/wooden, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dv" = ( +"aDv" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 4 }, @@ -17959,7 +18082,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dw" = ( +"aDw" = ( /obj/machinery/power/apc{ dir = 1; name = "north bump"; @@ -17978,7 +18101,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dx" = ( +"aDx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -17998,7 +18121,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"Dy" = ( +"aDy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -18023,7 +18146,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/public_garden_three) -"Dz" = ( +"aDz" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18032,7 +18155,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DA" = ( +"aDA" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -18041,7 +18164,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DB" = ( +"aDB" = ( /obj/structure/table/woodentable, /obj/effect/floor_decal/borderfloor/corner{ dir = 8 @@ -18058,7 +18181,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DC" = ( +"aDC" = ( /obj/structure/table/woodentable, /obj/item/weapon/reagent_containers/glass/bucket, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -18078,7 +18201,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DD" = ( +"aDD" = ( /obj/structure/table/bench/wooden, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -18088,7 +18211,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DE" = ( +"aDE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18099,7 +18222,7 @@ /obj/effect/floor_decal/corner/lime/bordercorner, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DF" = ( +"aDF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18111,7 +18234,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DG" = ( +"aDG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18127,7 +18250,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DH" = ( +"aDH" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/zpipe/down/supply{ @@ -18142,7 +18265,7 @@ }, /turf/simulated/open, /area/tether/surfacebase/public_garden_three) -"DI" = ( +"aDI" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 1 }, @@ -18154,7 +18277,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"DJ" = ( +"aDJ" = ( /obj/machinery/hologram/holopad, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -18164,7 +18287,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DK" = ( +"aDK" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 8 }, @@ -18179,7 +18302,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DL" = ( +"aDL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -18196,7 +18319,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DM" = ( +"aDM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -18204,12 +18327,12 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DN" = ( +"aDN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DO" = ( +"aDO" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 25; @@ -18221,16 +18344,19 @@ /obj/effect/floor_decal/corner/lime/border{ dir = 6 }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DP" = ( +"aDP" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DQ" = ( +"aDQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18240,7 +18366,7 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DR" = ( +"aDR" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -18252,7 +18378,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/public_garden_three) -"DS" = ( +"aDS" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18262,16 +18388,21 @@ /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/public_garden_three) -"DT" = ( +"aDT" = ( /obj/machinery/light, /obj/structure/table/bench/wooden, /turf/simulated/floor/grass, /area/tether/surfacebase/public_garden_three) -"DU" = ( -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"DV" = ( +"aDU" = ( +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/xenobiology/outpost_breakroom) +"aDV" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -18288,8 +18419,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"DW" = ( +/area/tether/surfacebase/surface_three_hall) +"aDW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18302,8 +18433,8 @@ icon_state = "4-8" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"DX" = ( +/area/tether/surfacebase/surface_three_hall) +"aDX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18322,7 +18453,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"DY" = ( +"aDY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18336,7 +18467,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"DZ" = ( +"aDZ" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -18344,130 +18475,147 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/recreation_area) -"Ea" = ( +"aEa" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEb" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aEc" = ( +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) }, -/turf/simulated/floor/tiled/techfloor, -/area/vacant/vacant_shop) -"Eb" = ( -/obj/structure/railing{ - dir = 4 - }, -/obj/structure/railing, -/turf/simulated/open, -/area/tether/surfacebase/atrium_three) -"Ec" = ( -/obj/structure/bed/chair/wood, -/obj/structure/window/basic{ - dir = 8 - }, -/obj/structure/window/basic{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ed" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEd" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 5 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ee" = ( -/obj/structure/table/woodentable, -/obj/structure/window/basic{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/corner/blue/border{ dir = 8 }, -/obj/item/weapon/flame/candle, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ef" = ( -/obj/machinery/camera/network/outside, -/turf/simulated/floor/outdoors/grass/sif/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Eg" = ( -/obj/structure/bed/chair/wood{ - dir = 1 +/area/tether/surfacebase/surface_three_hall) +"aEe" = ( +/obj/structure/table/reinforced, +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 }, -/obj/structure/window/basic{ - dir = 8 +/obj/item/weapon/paper_bin, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/blue, +/obj/item/weapon/pen, +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEf" = ( +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aEg" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Eh" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aEh" = ( /obj/effect/floor_decal/corner/grey/diagonal, /obj/effect/landmark/start{ name = "Chef" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/kitchen) -"Ei" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +"aEi" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aEj" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/industrial/warning{ + icon_state = "warning"; dir = 8 }, -/obj/machinery/computer/timeclock/premade/south, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ej" = ( -/obj/structure/bed/chair/wood, -/obj/structure/window/basic{ - dir = 8 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ek" = ( +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aEk" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"El" = ( +"aEl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -18482,12 +18630,12 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Em" = ( +"aEm" = ( /obj/structure/table/bench/wooden, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"En" = ( +"aEn" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -18495,23 +18643,17 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Eo" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +"aEo" = ( +/obj/structure/cable{ + icon_state = "1-2" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 }, +/obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ep" = ( +/area/tether/surfacebase/surface_three_hall) +"aEp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -18522,8 +18664,8 @@ icon_state = "1-2" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Eq" = ( +/area/tether/surfacebase/surface_three_hall) +"aEq" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -18535,13 +18677,13 @@ icon_state = "pipe-c" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Er" = ( +/area/tether/surfacebase/surface_three_hall) +"aEr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Es" = ( +"aEs" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Lab"; req_access = list(); @@ -18550,7 +18692,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"Et" = ( +"aEt" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 8; @@ -18565,7 +18707,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Eu" = ( +"aEu" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 @@ -18577,40 +18719,38 @@ }, /turf/simulated/floor/wood, /area/library) -"Ev" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +"aEv" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/structure/disposalpipe/segment, -/obj/structure/cable{ - d1 = 2; +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ew" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aEw" = ( +/obj/structure/flora/pottedplant/subterranean, +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/camera/network/research{ + icon_state = "camera"; dir = 8 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ex" = ( +/area/rnd/outpost/xenobiology/outpost_hallway) +"aEx" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -18621,8 +18761,8 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ey" = ( +/area/tether/surfacebase/surface_three_hall) +"aEy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -18643,7 +18783,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Ez" = ( +"aEz" = ( /obj/structure/table/woodentable, /obj/item/weapon/packageWrap, /obj/item/weapon/paper_bin{ @@ -18652,14 +18792,14 @@ }, /turf/simulated/floor/wood, /area/library) -"EA" = ( +"aEA" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/atrium_three) -"EB" = ( +/area/tether/surfacebase/surface_three_hall) +"aEB" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18676,20 +18816,20 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EC" = ( +"aEC" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, /turf/simulated/floor/wood, /area/library) -"ED" = ( +"aED" = ( /obj/structure/table/woodentable, /obj/machinery/photocopier/faxmachine{ department = "Library Conference Room" }, /turf/simulated/floor/wood, /area/library) -"EE" = ( +"aEE" = ( /obj/structure/table/woodentable, /obj/item/device/flashlight/lamp/green{ pixel_x = 1; @@ -18697,7 +18837,7 @@ }, /turf/simulated/floor/wood, /area/library) -"EF" = ( +"aEF" = ( /obj/structure/table/rack{ dir = 1 }, @@ -18710,35 +18850,38 @@ /obj/item/weapon/storage/briefcase/inflatable, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EG" = ( +"aEG" = ( /obj/structure/bed/chair/comfy/black{ dir = 4 }, /turf/simulated/floor/carpet, /area/library) -"EH" = ( +"aEH" = ( /obj/structure/table/woodentable, /obj/item/weapon/paper, /obj/item/weapon/pen, /obj/item/weapon/book/codex, /turf/simulated/floor/carpet, /area/library) -"EI" = ( +"aEI" = ( /obj/structure/bed/chair/comfy/black{ dir = 8 }, /turf/simulated/floor/carpet, /area/library) -"EJ" = ( -/obj/structure/bed/chair/office/dark{ +"aEJ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/hologram/holopad, /obj/structure/cable/green{ - icon_state = "2-4" + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/wood, /area/library) -"EK" = ( +"aEK" = ( /obj/structure/table/woodentable, /obj/structure/cable/green{ d1 = 4; @@ -18747,7 +18890,7 @@ }, /turf/simulated/floor/wood, /area/library) -"EL" = ( +"aEL" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; dir = 8; @@ -18763,19 +18906,19 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EM" = ( +"aEM" = ( /obj/machinery/space_heater, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"EN" = ( +"aEN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EO" = ( +"aEO" = ( /obj/item/weapon/dice/d20, /obj/item/weapon/dice, /obj/structure/cable/green{ @@ -18786,18 +18929,16 @@ /obj/structure/table/woodentable, /turf/simulated/floor/wood, /area/library) -"EP" = ( -/obj/structure/bed/chair/office/dark{ - dir = 8 +"aEP" = ( +/obj/structure/bed/chair/comfy/black{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/landmark/start{ + name = "Librarian" }, -/turf/simulated/floor/wood, +/turf/simulated/floor/carpet, /area/library) -"EQ" = ( +"aEQ" = ( /obj/structure/table/woodentable, /obj/machinery/power/apc{ dir = 4; @@ -18810,7 +18951,7 @@ /obj/machinery/recharger, /turf/simulated/floor/wood, /area/library) -"ER" = ( +"aER" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, @@ -18829,18 +18970,18 @@ /obj/item/weapon/book/manual/excavation, /turf/simulated/floor/wood, /area/library) -"ES" = ( +"aES" = ( /obj/machinery/portable_atmospherics/powered/pump/filled, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"ET" = ( +"aET" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EU" = ( +"aEU" = ( /obj/structure/bookcase{ name = "bookcase (Reference)" }, @@ -18860,27 +19001,27 @@ /obj/item/weapon/book/manual/supermatter_engine, /turf/simulated/floor/wood, /area/library) -"EV" = ( +"aEV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, /turf/simulated/floor/wood, /area/library) -"EW" = ( +"aEW" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EX" = ( +"aEX" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EY" = ( +"aEY" = ( /obj/machinery/firealarm{ pixel_x = -30 }, @@ -18890,18 +19031,18 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"EZ" = ( +"aEZ" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Fa" = ( +"aFa" = ( /obj/effect/landmark{ name = "Observer-Start" }, /obj/machinery/light/flamp, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Fb" = ( +"aFb" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -18910,7 +19051,7 @@ }, /turf/simulated/floor/plating, /area/crew_quarters/bar) -"Fc" = ( +"aFc" = ( /obj/structure/bed/chair/office/dark{ dir = 4 }, @@ -18924,7 +19065,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Fd" = ( +"aFd" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -18933,16 +19074,16 @@ /obj/item/weapon/pen, /turf/simulated/floor/wood, /area/library) -"Fe" = ( +"aFe" = ( /obj/structure/table/woodentable, /obj/item/weapon/deck/cards, /turf/simulated/floor/wood, /area/library) -"Ff" = ( +"aFf" = ( /obj/effect/decal/cleanable/blood, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"Fg" = ( +"aFg" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ d1 = 1; @@ -18953,12 +19094,12 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Fh" = ( +"aFh" = ( /obj/effect/decal/cleanable/blood, /obj/effect/decal/remains/deer, /turf/simulated/floor/outdoors/grass/sif/virgo3b, /area/tether/surfacebase/outside/outside3) -"Fi" = ( +"aFi" = ( /obj/structure/table/glass, /obj/machinery/cell_charger, /obj/effect/floor_decal/borderfloor{ @@ -18978,7 +19119,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Fj" = ( +"aFj" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -18998,7 +19139,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Fk" = ( +"aFk" = ( /obj/structure/table/standard, /obj/random/maintenance/clean, /obj/random/maintenance/medical, @@ -19007,7 +19148,7 @@ /obj/random/junk, /turf/simulated/floor/plating, /area/maintenance/lower/atrium) -"Fl" = ( +"aFl" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 1; @@ -19021,7 +19162,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/staircase/thirdfloor) -"Fm" = ( +"aFm" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ dir = 8; @@ -19044,7 +19185,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Fn" = ( +"aFn" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -19056,7 +19197,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Fo" = ( +"aFo" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -19090,7 +19231,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Fp" = ( +"aFp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19103,13 +19244,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Fq" = ( +"aFq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, /turf/simulated/floor/wood, /area/library) -"Fr" = ( +"aFr" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -19117,13 +19258,13 @@ }, /turf/simulated/floor/wood, /area/library) -"Fs" = ( +"aFs" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/wood, /area/library) -"Ft" = ( +"aFt" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, @@ -19133,32 +19274,31 @@ }, /turf/simulated/floor/wood, /area/library) -"Fu" = ( +"aFu" = ( /obj/structure/bookcase{ name = "bookcase (Fiction)" }, /turf/simulated/floor/wood, /area/library) -"Fv" = ( +"aFv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/wood, /area/library) -"Fw" = ( -/obj/structure/cable/green{ - icon_state = "0-2" +"aFw" = ( +/obj/structure/closet/crate, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/item/target, +/obj/structure/window/reinforced, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 }, -/obj/structure/cable, -/obj/machinery/power/smes/buildable{ - charge = 0; - output_attempt = 0; - outputting = 0; - RCon_tag = "Substation - Surface Civilian" - }, -/turf/simulated/floor/plating, -/area/maintenance/substation/bar{ - name = "\improper Surface Civilian Substation" - }) -"Fx" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aFx" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable, /obj/machinery/power/terminal{ @@ -19172,7 +19312,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"Fy" = ( +"aFy" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -19194,7 +19334,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Fz" = ( +"aFz" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -19211,13 +19351,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"FA" = ( +"aFA" = ( /obj/structure/bed/chair/wood{ dir = 1 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FB" = ( +"aFB" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -19232,7 +19372,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FC" = ( +"aFC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19250,7 +19390,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FD" = ( +"aFD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19267,7 +19407,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FE" = ( +"aFE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -19285,32 +19425,28 @@ /obj/machinery/light/flamp, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FF" = ( -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -25 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +"aFF" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + icon_state = "1-2" }, /obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" + icon_state = "1-4" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "1-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/bar) -"FG" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/rnd/outpost/xenobiology/outpost_main) +"aFG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -19328,7 +19464,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FH" = ( +"aFH" = ( /obj/machinery/light, /obj/item/device/radio/intercom{ dir = 2; @@ -19337,7 +19473,7 @@ /obj/structure/table/bench/wooden, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FI" = ( +"aFI" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ dir = 1; @@ -19345,7 +19481,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"FJ" = ( +"aFJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -19360,7 +19496,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"FK" = ( +"aFK" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -19372,7 +19508,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"FL" = ( +"aFL" = ( /obj/structure/window/reinforced/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -19389,53 +19525,42 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"FM" = ( +"aFM" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; icon_state = "4-8" }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, /obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled/steel_dirty, -/area/rnd/research/researchdivision) -"FN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/structure/disposalpipe/junction{ - icon_state = "pipe-j2"; - dir = 4 - }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FO" = ( +"aFN" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/item/weapon/storage/bag/trash, +/obj/item/weapon/storage/bag/trash, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aFO" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19453,7 +19578,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FP" = ( +"aFP" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19468,27 +19593,22 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FQ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, +"aFQ" = ( /obj/structure/cable/green{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 4; + icon_state = "1-4" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"FR" = ( +/area/rnd/research/testingrange) +"aFR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19500,7 +19620,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FS" = ( +"aFS" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -19514,7 +19634,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"FT" = ( +"aFT" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, @@ -19535,13 +19655,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"FU" = ( +"aFU" = ( /obj/structure/bookcase{ name = "bookcase (Religious)" }, /turf/simulated/floor/wood, /area/library) -"FV" = ( +"aFV" = ( /obj/structure/cable/green, /obj/structure/cable/green{ d2 = 4; @@ -19560,7 +19680,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"FW" = ( +"aFW" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 2; @@ -19575,7 +19695,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"FX" = ( +"aFX" = ( /obj/random/tech_supply, /obj/structure/table/steel, /obj/random/maintenance/engineering, @@ -19583,7 +19703,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"FY" = ( +"aFY" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -19593,7 +19713,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"FZ" = ( +"aFZ" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, @@ -19602,14 +19722,14 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ga" = ( +"aGa" = ( /obj/structure/reagent_dispensers/watertank, /obj/item/weapon/reagent_containers/glass/bucket, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) -"Gb" = ( +"aGb" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -19619,7 +19739,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) -"Gc" = ( +"aGc" = ( /obj/structure/table/standard{ name = "plastic table frame" }, @@ -19631,7 +19751,7 @@ /obj/effect/floor_decal/corner/lime/border, /turf/simulated/floor/tiled, /area/hydroponics) -"Gd" = ( +"aGd" = ( /obj/machinery/seed_storage/garden, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -19641,7 +19761,7 @@ }, /turf/simulated/floor/tiled, /area/hydroponics) -"Ge" = ( +"aGe" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -19663,7 +19783,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Gf" = ( +"aGf" = ( /obj/machinery/status_display{ pixel_x = 32; pixel_y = 0 @@ -19687,7 +19807,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Gg" = ( +"aGg" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -19698,13 +19818,13 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gh" = ( +"aGh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gi" = ( +"aGi" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -19716,7 +19836,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gj" = ( +"aGj" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -19734,7 +19854,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Gk" = ( +"aGk" = ( /obj/machinery/door/airlock{ name = "Unisex Restrooms" }, @@ -19749,29 +19869,18 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/crew_quarters/bar) -"Gl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/item/device/radio/intercom{ - pixel_y = -24 - }, +"aGl" = ( +/obj/structure/table/reinforced, +/obj/item/clothing/ears/earmuffs, +/obj/item/clothing/glasses/goggles, +/obj/structure/window/reinforced, /obj/machinery/camera/network/research{ - dir = 1 + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/borderfloorblack, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_north_airlock) -"Gm" = ( +/turf/simulated/floor/tiled/dark, +/area/rnd/research/testingrange) +"aGm" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -19792,7 +19901,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_b) -"Gn" = ( +"aGn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -19807,7 +19916,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Go" = ( +"aGo" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -19829,7 +19938,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Gp" = ( +"aGp" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/effect/floor_decal/borderfloorblack{ dir = 6 @@ -19844,16 +19953,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"Gq" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 10 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, +"aGq" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -19865,9 +19965,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9 }, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/mauve/bordercorner, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Gr" = ( +"aGr" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -19880,7 +19982,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Gs" = ( +"aGs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -19903,7 +20005,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Gt" = ( +"aGt" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -19913,56 +20015,69 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Gu" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/mauve/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +"aGu" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, /obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Gv" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 +"aGv" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/mauve/bordercorner{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/structure/disposalpipe/sortjunction{ + name = "Research"; + sortType = "Research" }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Gw" = ( +"aGw" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /obj/item/weapon/book/codex/lore/robutt, /turf/simulated/floor/wood, /area/library) -"Gx" = ( -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 +"aGx" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/wood, /area/library) -"Gy" = ( +"aGy" = ( /obj/structure/railing, /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, /area/hallway/lower/third_south) -"Gz" = ( +"aGz" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -19977,7 +20092,7 @@ /area/maintenance/substation/bar{ name = "\improper Surface Civilian Substation" }) -"GA" = ( +"aGA" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -19996,7 +20111,7 @@ }, /turf/simulated/wall, /area/hydroponics) -"GB" = ( +"aGB" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 }, @@ -20014,7 +20129,7 @@ /obj/machinery/door/firedoor/glass/hidden/steel, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GC" = ( +"aGC" = ( /obj/machinery/computer/timeclock/premade/east, /obj/structure/cable/green{ d1 = 1; @@ -20044,7 +20159,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GD" = ( +"aGD" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -20058,7 +20173,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"GE" = ( +"aGE" = ( /obj/effect/floor_decal/spline/plain{ dir = 9 }, @@ -20067,7 +20182,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GF" = ( +"aGF" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, @@ -20079,20 +20194,20 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GG" = ( +"aGG" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GH" = ( +"aGH" = ( /obj/effect/floor_decal/spline/plain{ dir = 1 }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"GI" = ( +"aGI" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -20112,24 +20227,24 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"GJ" = ( +"aGJ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"GK" = ( +"aGK" = ( /turf/simulated/wall, /area/crew_quarters/barrestroom) -"GL" = ( +"aGL" = ( /obj/item/device/radio/intercom{ dir = 8; pixel_x = 10 }, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"GM" = ( +"aGM" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -20139,13 +20254,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"GN" = ( +"aGN" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"GO" = ( +"aGO" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic{ @@ -20153,14 +20268,14 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"GP" = ( +"aGP" = ( /obj/structure/sign/nanotrasen, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"GQ" = ( +"aGQ" = ( /turf/simulated/wall/r_wall, /area/rnd/outpost/xenobiology/outpost_north_airlock) -"GR" = ( +"aGR" = ( /obj/structure/disposalpipe/segment, /obj/structure/extinguisher_cabinet{ dir = 4; @@ -20183,7 +20298,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"GS" = ( +"aGS" = ( /obj/machinery/transhuman/resleever, /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -20199,7 +20314,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"GT" = ( +"aGT" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20215,7 +20330,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"GU" = ( +"aGU" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -20244,7 +20359,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GV" = ( +"aGV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment{ @@ -20257,7 +20372,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GW" = ( +"aGW" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20273,7 +20388,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GX" = ( +"aGX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20289,13 +20404,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"GY" = ( +"aGY" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"GZ" = ( +"aGZ" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -20315,7 +20430,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ha" = ( +"aHa" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -20337,7 +20452,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hb" = ( +"aHb" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -20356,27 +20471,27 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hc" = ( +"aHc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/library) -"Hd" = ( +"aHd" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 28 }, /turf/simulated/floor/wood, /area/library) -"He" = ( +"aHe" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/wood, /area/library) -"Hf" = ( +"aHf" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20392,13 +20507,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hg" = ( +"aHg" = ( /obj/structure/bookcase{ name = "bookcase (Non-Fiction)" }, /turf/simulated/floor/wood, /area/library) -"Hh" = ( +"aHh" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20419,7 +20534,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hi" = ( +"aHi" = ( /obj/structure/cable/green{ d2 = 2; icon_state = "0-2" @@ -20445,24 +20560,35 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hj" = ( -/obj/machinery/camera/network/tether, +"aHj" = ( +/obj/structure/disposalpipe/segment, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/corner/mauve/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 5 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/research{ + icon_state = "camera"; + dir = 5 }, /turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"Hk" = ( +/area/rnd/research/researchdivision) +"aHk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20484,7 +20610,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hl" = ( +"aHl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20503,7 +20629,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hm" = ( +"aHm" = ( /obj/machinery/light{ dir = 1 }, @@ -20520,7 +20646,7 @@ /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hn" = ( +"aHn" = ( /obj/structure/extinguisher_cabinet{ pixel_y = 30 }, @@ -20536,7 +20662,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ho" = ( +"aHo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -20549,7 +20675,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hp" = ( +"aHp" = ( /obj/machinery/newscaster{ pixel_x = 0; pixel_y = 30 @@ -20575,7 +20701,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hq" = ( +"aHq" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -20600,7 +20726,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hr" = ( +"aHr" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 }, @@ -20619,13 +20745,13 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hs" = ( +"aHs" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ht" = ( +"aHt" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20636,7 +20762,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Hu" = ( +"aHu" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 1 @@ -20645,7 +20771,7 @@ dir = 1 }, /area/crew_quarters/bar) -"Hv" = ( +"aHv" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20654,7 +20780,7 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Hw" = ( +"aHw" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -20663,7 +20789,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Hx" = ( +"aHx" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ dir = 8; @@ -20678,7 +20804,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Hy" = ( +"aHy" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/drinks/glass2/pint, /obj/machinery/door/blast/shutters{ @@ -20689,7 +20815,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Hz" = ( +"aHz" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ dir = 1; @@ -20699,7 +20825,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"HA" = ( +"aHA" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/food/drinks/glass2/shot, /obj/machinery/door/blast/shutters{ @@ -20710,7 +20836,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"HB" = ( +"aHB" = ( /obj/structure/extinguisher_cabinet{ dir = 8; icon_state = "extinguisher_closed"; @@ -20722,7 +20848,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"HC" = ( +"aHC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -20732,7 +20858,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"HD" = ( +"aHD" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -20744,7 +20870,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"HE" = ( +"aHE" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic{ @@ -20752,7 +20878,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_hallway) -"HF" = ( +"aHF" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -20766,35 +20892,35 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"HG" = ( +"aHG" = ( +/obj/machinery/cryopod/robot, /obj/machinery/camera/network/research{ - dir = 8 + dir = 1 }, -/obj/item/device/radio/intercom{ - dir = 1; - pixel_y = 24; - req_access = list() +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/chargebay) +"aHH" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/machinery/power/apc{ +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/item/device/radio/intercom/department/security{ dir = 4; - name = "east bump"; - pixel_x = 24 + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 5 }, -/obj/structure/closet/wardrobe/science_white, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"HH" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/carry, -/area/shuttle/tether/surface) -"HI" = ( +/turf/simulated/floor/tiled, +/area/tether/surfacebase/security/common) +"aHI" = ( /obj/structure/disposalpipe/segment, /obj/machinery/alarm{ dir = 4; @@ -20821,7 +20947,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"HJ" = ( +"aHJ" = ( /obj/machinery/transhuman/synthprinter, /obj/machinery/light{ dir = 8; @@ -20837,7 +20963,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HK" = ( +"aHK" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -20847,14 +20973,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HL" = ( +"aHL" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HM" = ( +"aHM" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -20869,7 +20995,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"HN" = ( +"aHN" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20878,7 +21004,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HO" = ( +"aHO" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20888,7 +21014,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HP" = ( +"aHP" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -20901,7 +21027,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"HQ" = ( +"aHQ" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -20914,7 +21040,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HR" = ( +"aHR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -20928,14 +21054,14 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HS" = ( +"aHS" = ( /obj/machinery/light{ dir = 4 }, /obj/structure/closet/firecloset, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"HT" = ( +"aHT" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -20952,7 +21078,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HU" = ( +"aHU" = ( /obj/machinery/firealarm{ dir = 4; layer = 3.3; @@ -20964,7 +21090,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"HV" = ( +"aHV" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -20983,7 +21109,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HW" = ( +"aHW" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -20997,7 +21123,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HX" = ( +"aHX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21016,7 +21142,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HY" = ( +"aHY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21033,7 +21159,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"HZ" = ( +"aHZ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -21045,7 +21171,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ia" = ( +"aIa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -21059,7 +21185,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ib" = ( +"aIb" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -21078,7 +21204,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ic" = ( +"aIc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -21092,7 +21218,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Id" = ( +"aId" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, @@ -21103,7 +21229,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ie" = ( +"aIe" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, @@ -21114,7 +21240,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"If" = ( +"aIf" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -21130,7 +21256,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Ig" = ( +"aIg" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 1; name = "Bar" @@ -21144,7 +21270,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals_central1, /turf/simulated/floor/tiled/monofloor, /area/crew_quarters/bar) -"Ih" = ( +"aIh" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -21158,7 +21284,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ii" = ( +"aIi" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -21166,7 +21292,7 @@ }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"Ij" = ( +"aIj" = ( /obj/item/weapon/stool/padded, /obj/effect/floor_decal/spline/plain{ dir = 8 @@ -21184,7 +21310,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Ik" = ( +"aIk" = ( /obj/structure/table/marble, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -21210,7 +21336,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Il" = ( +"aIl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -21224,17 +21350,17 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Im" = ( +"aIm" = ( /turf/simulated/floor/lino, /area/crew_quarters/bar) -"In" = ( +"aIn" = ( /obj/machinery/computer/guestpass{ dir = 8; pixel_x = 25 }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"Io" = ( +"aIo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/alarm{ @@ -21250,24 +21376,34 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Ip" = ( +"aIp" = ( /obj/structure/flora/pottedplant/unusual, /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Iq" = ( -/obj/structure/flora/pottedplant/subterranean, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorblack{ +"aIq" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/machinery/recharge_station, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/research, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"Ir" = ( +/area/rnd/research/researchdivision) +"aIr" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -21290,7 +21426,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Is" = ( +"aIs" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/research{ autoclose = 0; @@ -21313,31 +21449,21 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"It" = ( -/obj/structure/disposalpipe/segment, -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 +"aIt" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ +/obj/machinery/camera/network/security{ + icon_state = "camera"; dir = 10 }, -/obj/effect/floor_decal/corner/mauve/bordercorner2{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, /turf/simulated/floor/tiled, -/area/rnd/research/researchdivision) -"Iu" = ( +/area/tether/surfacebase/security/common) +"aIu" = ( /obj/machinery/computer/transhuman/resleeving{ dir = 4 }, @@ -21359,27 +21485,27 @@ /obj/item/weapon/storage/box/backup_kit, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Iv" = ( +"aIv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Iw" = ( +"aIw" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ix" = ( +"aIx" = ( /obj/effect/floor_decal/industrial/warning, /obj/structure/sign/department/robo{ pixel_x = -32 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Iy" = ( +"aIy" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21393,7 +21519,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Iz" = ( +"aIz" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21404,7 +21530,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IA" = ( +"aIA" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -21416,7 +21542,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IB" = ( +"aIB" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21434,7 +21560,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IC" = ( +"aIC" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21448,7 +21574,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"ID" = ( +"aID" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21466,7 +21592,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IE" = ( +"aIE" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21478,21 +21604,17 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IF" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +"aIF" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/closet/secure_closet/security, +/obj/item/device/holowarrant, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"IG" = ( +/turf/simulated/floor/tiled/dark, +/area/tether/surfacebase/security/armory) +"aIG" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -21506,45 +21628,39 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IH" = ( +"aIH" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"II" = ( +"aII" = ( /obj/structure/sign/department/bar{ pixel_x = 32 }, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"IJ" = ( +"aIJ" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 1 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"IK" = ( +"aIK" = ( /obj/machinery/light, /obj/structure/flora/pottedplant, /turf/simulated/floor/wood, /area/crew_quarters/bar) -"IL" = ( -/obj/effect/floor_decal/spline/plain{ - dir = 4 - }, -/obj/effect/floor_decal/spline/plain{ - dir = 8 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 - }, -/obj/machinery/media/jukebox, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"IM" = ( +"aIL" = ( +/obj/machinery/camera/network/security, +/turf/simulated/open, +/area/tether/surfacebase/security/upperhall) +"aIM" = ( /obj/structure/table/marble, /obj/machinery/door/blast/shutters{ dir = 8; @@ -21554,7 +21670,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IN" = ( +"aIN" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable/green{ @@ -21564,36 +21680,47 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IO" = ( +"aIO" = ( /obj/machinery/vending/boozeomat, /obj/machinery/light, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IP" = ( +"aIP" = ( /obj/machinery/smartfridge/drinks, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IQ" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_alc/full, -/turf/simulated/floor/lino, -/area/crew_quarters/bar) -"IR" = ( -/obj/structure/table/marble, -/obj/machinery/chemical_dispenser/bar_soft/full, +"aIQ" = ( +/obj/structure/flora/pottedplant, /obj/machinery/camera/network/civilian{ - dir = 1 + dir = 9 }, -/turf/simulated/floor/lino, +/turf/simulated/floor/wood, /area/crew_quarters/bar) -"IS" = ( +"aIR" = ( +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aIS" = ( /obj/structure/table/marble, /obj/item/weapon/reagent_containers/glass/rag, /obj/item/weapon/reagent_containers/food/drinks/flask/vacuumflask, /obj/item/weapon/book/manual/barman_recipes, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IT" = ( +"aIT" = ( /obj/structure/table/marble, /obj/item/weapon/flame/lighter/zippo, /obj/item/weapon/tool/screwdriver, @@ -21611,7 +21738,7 @@ }, /turf/simulated/floor/lino, /area/crew_quarters/bar) -"IU" = ( +"aIU" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 8 @@ -21627,7 +21754,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"IV" = ( +"aIV" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -21642,7 +21769,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"IW" = ( +"aIW" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -21653,7 +21780,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"IX" = ( +"aIX" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; dir = 8; @@ -21677,7 +21804,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"IY" = ( +"aIY" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" @@ -21686,7 +21813,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"IZ" = ( +"aIZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -21710,7 +21837,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Ja" = ( +"aJa" = ( /obj/machinery/door/blast/regular{ density = 0; dir = 8; @@ -21733,7 +21860,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Jb" = ( +"aJb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, @@ -21743,7 +21870,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Jc" = ( +"aJc" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -21752,7 +21879,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"Jd" = ( +"aJd" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -21765,13 +21892,13 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Je" = ( +"aJe" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Jf" = ( +"aJf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21781,7 +21908,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals4, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"Jg" = ( +"aJg" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21792,7 +21919,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Jh" = ( +"aJh" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21804,25 +21931,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ji" = ( -/obj/structure/disposalpipe/sortjunction{ - dir = 4; - icon_state = "pipe-j1s"; - name = "Robotics"; - sortType = "Robotics" +"aJi" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 8 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Jj" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aJj" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21831,7 +21946,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Jk" = ( +"aJk" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -21841,22 +21956,17 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Jl" = ( -/obj/machinery/computer/rdconsole/robotics{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ +"aJl" = ( +/obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, -/obj/effect/floor_decal/corner/mauve/border{ +/obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"Jm" = ( +/obj/machinery/chemical_dispenser/full, +/turf/simulated/floor/tiled/white, +/area/tether/surfacebase/medical/chemistry) +"aJm" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/blast/regular{ dir = 4; @@ -21865,18 +21975,18 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Jn" = ( +"aJn" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/hallway/lower/third_south) -"Jo" = ( +"aJo" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Jp" = ( +"aJp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -21888,7 +21998,7 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Jq" = ( +"aJq" = ( /obj/machinery/door/airlock/multi_tile/glass, /obj/effect/floor_decal/industrial/warning/corner{ icon_state = "warningcorner"; @@ -21897,21 +22007,21 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Jr" = ( +"aJr" = ( /obj/machinery/door/firedoor, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Js" = ( +"aJs" = ( /obj/structure/railing{ dir = 1 }, /obj/structure/grille, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/bar) -"Jt" = ( +"aJt" = ( /turf/simulated/wall, /area/tether/surfacebase/bar_backroom) -"Ju" = ( +"aJu" = ( /obj/machinery/door/airlock{ name = "Bar Backroom"; req_access = list(25) @@ -21926,7 +22036,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/lino, /area/tether/surfacebase/bar_backroom) -"Jv" = ( +"aJv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; @@ -21937,7 +22047,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Jw" = ( +"aJw" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -21950,7 +22060,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Jx" = ( +"aJx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -21959,7 +22069,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Jy" = ( +"aJy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 }, @@ -21970,7 +22080,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Jz" = ( +"aJz" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -21979,24 +22089,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"JA" = ( -/obj/machinery/door/firedoor/glass/hidden, -/obj/structure/disposalpipe/segment{ +"aJA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 }, -/obj/machinery/alarm{ - alarm_id = "pen_nine"; - breach_detection = 0; - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"JB" = ( +"aJB" = ( /obj/machinery/light{ dir = 4 }, @@ -22005,7 +22108,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"JC" = ( +"aJC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -22014,21 +22117,16 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"JD" = ( -/obj/structure/disposalpipe/segment{ +"aJD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/cable/green{ - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"JE" = ( +"aJE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -22041,7 +22139,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"JF" = ( +"aJF" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -22059,25 +22157,25 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JG" = ( +"aJG" = ( /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JH" = ( +"aJH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JI" = ( +"aJI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JJ" = ( +"aJJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22088,14 +22186,14 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JK" = ( +"aJK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JL" = ( +"aJL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -22103,7 +22201,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JM" = ( +"aJM" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -22123,7 +22221,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, /area/rnd/research/testingrange) -"JN" = ( +"aJN" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -22142,7 +22240,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"JO" = ( +"aJO" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, @@ -22154,7 +22252,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"JP" = ( +"aJP" = ( /obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -22173,7 +22271,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/research/researchdivision) -"JQ" = ( +"aJQ" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/effect/floor_decal/borderfloor{ @@ -22192,7 +22290,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JR" = ( +"aJR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22203,13 +22301,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JS" = ( +"aJS" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JT" = ( +"aJT" = ( /obj/machinery/mecha_part_fabricator{ dir = 8 }, @@ -22233,7 +22331,7 @@ /obj/effect/floor_decal/industrial/warning/corner, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"JU" = ( +"aJU" = ( /obj/machinery/recharge_station, /obj/machinery/light{ dir = 8; @@ -22245,15 +22343,15 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"JV" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/research, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +"aJV" = ( +/obj/structure/table/marble, +/obj/machinery/chemical_dispenser/bar_alc/full, +/obj/machinery/camera/network/civilian{ + dir = 1 }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"JW" = ( +/turf/simulated/floor/lino, +/area/crew_quarters/bar) +"aJW" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 @@ -22266,14 +22364,14 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"JX" = ( +"aJX" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 1 }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"JY" = ( +"aJY" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -22285,17 +22383,17 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"JZ" = ( +"aJZ" = ( /obj/effect/floor_decal/borderfloorblack/corner, /obj/effect/floor_decal/industrial/danger/corner, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ka" = ( +"aKa" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kb" = ( +"aKb" = ( /obj/effect/floor_decal/borderfloorblack, /obj/effect/floor_decal/industrial/danger, /obj/machinery/light{ @@ -22303,13 +22401,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kc" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/industrial/danger, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"Kd" = ( +"aKc" = ( +/obj/machinery/camera/network/civilian{ + dir = 4 + }, +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/freezer) +"aKd" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 8 @@ -22320,25 +22418,25 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ke" = ( +"aKe" = ( /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Kf" = ( +"aKf" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Kg" = ( +"aKg" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kh" = ( +"aKh" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ki" = ( +"aKi" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -22351,10 +22449,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Kj" = ( +"aKj" = ( /turf/simulated/wall, /area/tether/surfacebase/shuttle_pad) -"Kk" = ( +"aKk" = ( /obj/item/weapon/tank/emergency/oxygen/double, /obj/item/clothing/gloves/fyellow, /obj/item/weapon/book{ @@ -22365,7 +22463,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Kl" = ( +"aKl" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 @@ -22375,7 +22473,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Km" = ( +"aKm" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 4 }, @@ -22386,25 +22484,28 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Kn" = ( +"aKn" = ( /obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ scrub_id = "atrium" }, /turf/simulated/floor/tiled/techmaint, /area/crew_quarters/bar) -"Ko" = ( +"aKo" = ( /obj/structure/closet/secure_closet/bar{ req_access = list(25) }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kp" = ( +"aKp" = ( /obj/structure/sink{ pixel_y = 25 }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kq" = ( +"aKq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -22416,7 +22517,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kr" = ( +"aKr" = ( /obj/machinery/light/small{ dir = 1 }, @@ -22425,7 +22526,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Ks" = ( +"aKs" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -22439,26 +22540,23 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Kt" = ( -/obj/structure/bed/chair/comfy{ - dir = 8 - }, +"aKt" = ( /obj/machinery/camera/network/civilian, -/turf/simulated/floor/wood, -/area/tether/surfacebase/bar_backroom) -"Ku" = ( +/turf/simulated/floor/grass, +/area/hydroponics/cafegarden) +"aKu" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kv" = ( +"aKv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kw" = ( +"aKw" = ( /obj/machinery/light/small{ dir = 1 }, @@ -22467,14 +22565,14 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kx" = ( +"aKx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Ky" = ( +"aKy" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -22484,7 +22582,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Kz" = ( +"aKz" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, @@ -22492,7 +22590,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_first_aid) -"KA" = ( +"aKA" = ( /obj/machinery/door/airlock/glass_medical{ name = "Xenobiology First Aid"; req_one_access = list(5,47) @@ -22504,7 +22602,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_first_aid) -"KB" = ( +"aKB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -22518,7 +22616,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"KC" = ( +"aKC" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -22527,17 +22625,13 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"KD" = ( -/obj/structure/closet/crate, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/item/target, -/obj/structure/window/reinforced, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"KE" = ( +"aKD" = ( +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/industrial/danger, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aKE" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/machinery/door/window/brigdoor/southleft{ req_access = list(47); @@ -22545,7 +22639,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KF" = ( +"aKF" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/goggles, @@ -22553,14 +22647,14 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KG" = ( +"aKG" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/goggles, /obj/structure/window/reinforced, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KH" = ( +"aKH" = ( /obj/structure/table/reinforced, /obj/item/clothing/ears/earmuffs, /obj/item/clothing/glasses/goggles, @@ -22568,19 +22662,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"KI" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/ears/earmuffs, -/obj/item/clothing/glasses/goggles, -/obj/structure/window/reinforced, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 +"aKI" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"KJ" = ( +/turf/simulated/floor/reinforced, +/area/tether/surfacebase/shuttle_pad) +"aKJ" = ( /obj/structure/table/standard, /obj/machinery/cell_charger, /obj/structure/cable/green{ @@ -22602,7 +22690,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"KK" = ( +"aKK" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22620,7 +22708,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"KL" = ( +"aKL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22628,7 +22716,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"KM" = ( +"aKM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22637,7 +22725,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"KN" = ( +"aKN" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -22648,7 +22736,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"KO" = ( +"aKO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -22658,20 +22746,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"KP" = ( +"aKP" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"KQ" = ( +"aKQ" = ( /obj/machinery/mech_recharger, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"KR" = ( +"aKR" = ( /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"KS" = ( +"aKS" = ( /obj/machinery/mech_recharger, /obj/machinery/light{ dir = 4; @@ -22679,7 +22767,7 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"KT" = ( +"aKT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -22688,10 +22776,10 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KU" = ( +"aKU" = ( /turf/simulated/floor/reinforced, /area/tether/surfacebase/shuttle_pad) -"KV" = ( +"aKV" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 }, @@ -22701,13 +22789,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KW" = ( +"aKW" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KX" = ( +"aKX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -22724,27 +22812,31 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"KY" = ( +"aKY" = ( /obj/item/clothing/under/color/grey, /obj/item/clothing/mask/gas/wwii, /obj/item/weapon/storage/belt/utility/full, /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"KZ" = ( +"aKZ" = ( /obj/effect/floor_decal/industrial/warning{ icon_state = "warning"; dir = 8 }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"La" = ( -/obj/machinery/camera/network/tether{ - dir = 9 +"aLa" = ( +/obj/item/stack/material/plastic, +/obj/structure/table/rack, +/obj/item/stack/material/steel{ + amount = 3 }, -/turf/simulated/floor/tiled, -/area/hallway/lower/third_south) -"Lb" = ( +/obj/random/maintenance/engineering, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled/techfloor, +/area/tether/surfacebase/shuttle_pad) +"aLb" = ( /obj/structure/table/woodentable, /obj/machinery/alarm{ dir = 4; @@ -22757,13 +22849,13 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lc" = ( +"aLc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Ld" = ( +"aLd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; pixel_y = 0 @@ -22775,7 +22867,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Le" = ( +"aLe" = ( /obj/effect/landmark/start{ name = "Bartender" }, @@ -22786,10 +22878,10 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lf" = ( +"aLf" = ( /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lg" = ( +"aLg" = ( /obj/item/weapon/storage/secure/safe{ pixel_x = 30; pixel_z = 0 @@ -22799,10 +22891,10 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"Lh" = ( +"aLh" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Li" = ( +"aLi" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "2-4" @@ -22816,7 +22908,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Lj" = ( +"aLj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ @@ -22827,7 +22919,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Lk" = ( +"aLk" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -22838,13 +22930,13 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Ll" = ( +"aLl" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Lm" = ( +"aLm" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22853,14 +22945,19 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Ln" = ( -/obj/effect/floor_decal/industrial/warning{ +"aLn" = ( +/obj/effect/floor_decal/borderfloorblack{ dir = 1 }, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"Lo" = ( +/obj/effect/floor_decal/industrial/danger{ + dir = 1 + }, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/shuttle_pad) +"aLo" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22869,7 +22966,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Lp" = ( +"aLp" = ( /obj/effect/floor_decal/industrial/warning{ dir = 1 }, @@ -22880,7 +22977,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Lq" = ( +"aLq" = ( /obj/structure/reagent_dispensers/fueltank, /obj/machinery/alarm{ dir = 4; @@ -22903,7 +23000,7 @@ /obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Lr" = ( +"aLr" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -22918,7 +23015,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ls" = ( +"aLs" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22928,7 +23025,7 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"Lt" = ( +"aLt" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22936,7 +23033,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Lu" = ( +"aLu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22947,7 +23044,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Lv" = ( +"aLv" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ d1 = 4; @@ -22960,7 +23057,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Lw" = ( +"aLw" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22972,7 +23069,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Lx" = ( +"aLx" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22980,7 +23077,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Ly" = ( +"aLy" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -22988,7 +23085,7 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"Lz" = ( +"aLz" = ( /obj/structure/cable/green{ icon_state = "0-8" }, @@ -22999,12 +23096,12 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"LA" = ( +"aLA" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"LB" = ( +"aLB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/firedoor, @@ -23016,7 +23113,7 @@ /obj/machinery/door/airlock/glass_external/public, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"LC" = ( +"aLC" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/beanbags, /obj/item/weapon/gun/projectile/shotgun/doublebarrel, @@ -23029,14 +23126,14 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LD" = ( +"aLD" = ( /obj/structure/table/woodentable, /obj/machinery/reagentgrinder, /obj/item/weapon/reagent_containers/food/drinks/shaker, /obj/item/weapon/packageWrap, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LE" = ( +"aLE" = ( /obj/structure/table/woodentable, /obj/machinery/firealarm{ dir = 1; @@ -23044,7 +23141,7 @@ }, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LF" = ( +"aLF" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -23053,11 +23150,11 @@ /obj/structure/cable/green, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LG" = ( +"aLG" = ( /obj/structure/reagent_dispensers/beerkeg, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LH" = ( +"aLH" = ( /obj/structure/closet/gmcloset{ icon_closed = "black"; icon_state = "black"; @@ -23068,40 +23165,37 @@ /obj/item/device/retail_scanner/civilian, /turf/simulated/floor/wood, /area/tether/surfacebase/bar_backroom) -"LI" = ( +"aLI" = ( /obj/machinery/door/airlock{ name = "Unit 3" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"LJ" = ( +"aLJ" = ( /obj/machinery/door/airlock{ name = "Unit 2" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"LK" = ( +"aLK" = ( /obj/machinery/door/airlock{ name = "Unit 1" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"LL" = ( -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +"aLL" = ( +/obj/machinery/camera/network/civilian{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"LM" = ( +/area/tether/surfacebase/shuttle_pad) +"aLM" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"LN" = ( +"aLN" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "1-2" @@ -23110,7 +23204,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"LO" = ( +"aLO" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Equipment Storage"; req_access = list(); @@ -23124,12 +23218,11 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"LP" = ( -/obj/machinery/hologram/holopad, -/obj/machinery/camera/network/research, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_stairs) -"LQ" = ( +"aLP" = ( +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/wood, +/area/library) +"aLQ" = ( /obj/machinery/alarm{ alarm_id = "anomaly_testing"; breach_detection = 0; @@ -23141,7 +23234,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"LR" = ( +"aLR" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Lab"; req_access = list(); @@ -23155,14 +23248,14 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"LS" = ( +"aLS" = ( /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"LT" = ( +"aLT" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"LU" = ( +"aLU" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -23174,7 +23267,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"LV" = ( +"aLV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23182,13 +23275,13 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/dark, /area/assembly/robotics) -"LW" = ( +"aLW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"LX" = ( +"aLX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23205,7 +23298,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"LY" = ( +"aLY" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 @@ -23216,7 +23309,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"LZ" = ( +"aLZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -23234,13 +23327,13 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Ma" = ( +"aMa" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Mb" = ( +"aMb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -23249,7 +23342,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Mc" = ( +"aMc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -23263,13 +23356,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Md" = ( +"aMd" = ( /obj/machinery/alarm{ pixel_y = 22 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Me" = ( +"aMe" = ( /obj/structure/cable/green{ icon_state = "0-2" }, @@ -23281,7 +23374,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Mf" = ( +"aMf" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -23303,7 +23396,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Mg" = ( +"aMg" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -23311,7 +23404,7 @@ /obj/machinery/recharge_station, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Mh" = ( +"aMh" = ( /obj/machinery/light/small{ dir = 4; pixel_y = 0 @@ -23321,7 +23414,7 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/barrestroom) -"Mi" = ( +"aMi" = ( /obj/structure/flora/pottedplant/unusual, /obj/machinery/firealarm{ dir = 8; @@ -23333,27 +23426,23 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Mj" = ( +"aMj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Mk" = ( -/obj/machinery/light_switch{ - dir = 8; - pixel_x = 24 +"aMk" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 }, -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"Ml" = ( +/turf/simulated/floor/wood, +/area/library) +"aMl" = ( /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"Mm" = ( +"aMm" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -23361,12 +23450,12 @@ /obj/structure/flora/pottedplant/unusual, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Mn" = ( +"aMn" = ( /obj/structure/table/wooden_reinforced, /obj/item/device/radio/phone, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Mo" = ( +"aMo" = ( /obj/structure/extinguisher_cabinet{ dir = 4; icon_state = "extinguisher_closed"; @@ -23374,23 +23463,28 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Mp" = ( +"aMp" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Mq" = ( +"aMq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/alarm{ + dir = 1; + pixel_x = 30; + pixel_y = -22 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Mr" = ( +"aMr" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -23402,20 +23496,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ms" = ( +"aMs" = ( /obj/machinery/hologram/holopad, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Mt" = ( +"aMt" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Mu" = ( +"aMu" = ( /obj/structure/sink{ dir = 4; icon_state = "sink"; @@ -23439,7 +23533,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Mv" = ( +"aMv" = ( /obj/machinery/cryopod/robot, /obj/machinery/light{ dir = 8; @@ -23450,18 +23544,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/chargebay) -"Mw" = ( -/obj/machinery/cryopod/robot, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/chargebay) -"Mx" = ( +"aMw" = ( +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/recreation_area) +"aMx" = ( /obj/machinery/computer/cryopod/robot{ dir = 1; pixel_y = -28 }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"My" = ( +"aMy" = ( /obj/machinery/light_switch{ dir = 1; pixel_x = 2; @@ -23469,7 +23565,7 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"Mz" = ( +"aMz" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 @@ -23480,12 +23576,12 @@ }, /turf/simulated/floor/bluegrid, /area/assembly/chargebay) -"MA" = ( +"aMA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MB" = ( +"aMB" = ( /obj/structure/cable/green{ d1 = 1; d2 = 4; @@ -23493,7 +23589,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MC" = ( +"aMC" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -23501,7 +23597,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MD" = ( +"aMD" = ( /obj/structure/cable/green{ d1 = 1; d2 = 8; @@ -23509,56 +23605,43 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"ME" = ( +"aME" = ( /turf/simulated/shuttle/wall, /area/shuttle/tether/surface) -"MF" = ( +"aMF" = ( /obj/structure/shuttle/window, /obj/structure/grille, /turf/simulated/shuttle/plating/airless, /area/shuttle/tether/surface) -"MG" = ( +"aMG" = ( /obj/structure/railing{ dir = 4 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"MH" = ( +"aMH" = ( /obj/structure/flora/pottedplant/crystal, /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"MI" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +"aMI" = ( +/obj/effect/floor_decal/spline/plain, +/obj/machinery/camera/network/civilian{ + dir = 1 }, -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"MJ" = ( -/obj/structure/table/glass, -/obj/item/bodybag, -/obj/item/device/healthanalyzer, -/obj/item/weapon/storage/firstaid, -/obj/random/medical, -/obj/structure/closet/medical_wall{ - pixel_y = 35 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 +/turf/simulated/floor/tiled/freezer, +/area/crew_quarters/pool) +"aMJ" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/structure/sink/kitchen{ + name = "sink"; + pixel_y = 32 }, /turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"MK" = ( +/area/rnd/outpost/xenobiology/outpost_decon) +"aMK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -23573,7 +23656,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"ML" = ( +"aML" = ( /obj/structure/closet/bombcloset, /obj/machinery/light_switch{ dir = 4; @@ -23581,18 +23664,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"MM" = ( +"aMM" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"MN" = ( +"aMN" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"MO" = ( +"aMO" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1"; @@ -23600,7 +23683,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"MP" = ( +"aMP" = ( /obj/structure/table/standard, /obj/item/device/defib_kit/jumper_kit, /obj/item/weapon/storage/box/gloves, @@ -23610,7 +23693,7 @@ }, /turf/simulated/floor/tiled/white, /area/assembly/robotics) -"MQ" = ( +"aMQ" = ( /obj/structure/disposalpipe/segment{ dir = 1; icon_state = "pipe-c" @@ -23624,30 +23707,19 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"MR" = ( +"aMR" = ( /obj/effect/decal/cleanable/blood/oil, /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"MS" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/mauve/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/assembly/robotics) -"MT" = ( +"aMS" = ( +/obj/machinery/vending/fitness, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/tiled, +/area/crew_quarters/pool) +"aMT" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -23659,7 +23731,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"MU" = ( +"aMU" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ icon_state = "steel_decals_central5"; dir = 8 @@ -23671,7 +23743,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MV" = ( +"aMV" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -23684,9 +23756,12 @@ icon_state = "extinguisher_closed"; pixel_x = -30 }, +/obj/machinery/camera/network/civilian{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"MW" = ( +"aMW" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ icon_state = "map-scrubbers"; dir = 4 @@ -23700,20 +23775,30 @@ /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"MX" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +"aMX" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 }, -/obj/effect/floor_decal/steeldecal/steel_decals5, /obj/machinery/camera/network/tether{ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"MY" = ( +/area/tether/surfacebase/surface_three_hall) +"aMY" = ( /obj/effect/floor_decal/steeldecal/steel_decals_central5{ icon_state = "steel_decals_central5"; dir = 4 @@ -23723,19 +23808,19 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"MZ" = ( +"aMZ" = ( /obj/structure/closet/firecloset, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Na" = ( +"aNa" = ( /obj/machinery/computer/shuttle_control/tether_backup, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nb" = ( +"aNb" = ( /obj/structure/closet/emcloset, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nc" = ( +"aNc" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22; @@ -23746,7 +23831,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Nd" = ( +"aNd" = ( /obj/structure/table/glass, /obj/machinery/firealarm{ dir = 8; @@ -23758,7 +23843,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Ne" = ( +"aNe" = ( /obj/structure/closet/secure_closet/medical_wall/anesthetics{ pixel_x = -32; req_access = list(); @@ -23778,20 +23863,20 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nf" = ( +"aNf" = ( /obj/effect/floor_decal/industrial/warning/corner{ dir = 1 }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ng" = ( +"aNg" = ( /obj/structure/bed/chair/office/dark, /obj/effect/landmark/start{ name = "Roboticist" }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nh" = ( +"aNh" = ( /obj/structure/table/standard, /obj/item/weapon/paper_bin{ pixel_x = -1; @@ -23809,7 +23894,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Ni" = ( +"aNi" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -23818,22 +23903,22 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Nj" = ( +"aNj" = ( /obj/structure/closet/hydrant{ pixel_y = 32 }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Nk" = ( +"aNk" = ( /obj/structure/bed/chair/shuttle{ dir = 4 }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nl" = ( +"aNl" = ( /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nm" = ( +"aNm" = ( /obj/structure/bed/chair/shuttle{ dir = 8 }, @@ -23846,30 +23931,39 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"Nn" = ( +"aNn" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"No" = ( -/obj/machinery/camera/network/research{ - dir = 4 +"aNo" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/machinery/holoplant, -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/camera/network/tether{ + dir = 1 }, /turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_hallway) -"Np" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside{ +/area/tether/surfacebase/surface_three_hall) +"aNp" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Nq" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNq" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/effect/decal/cleanable/blood, /obj/structure/bed/chair{ @@ -23877,12 +23971,12 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Nr" = ( +"aNr" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/target_stake, /turf/simulated/floor/tiled/dark, /area/rnd/research/testingrange) -"Ns" = ( +"aNs" = ( /obj/structure/table/standard, /obj/item/weapon/book/manual/robotics_cyborgs, /obj/item/clothing/glasses/omnihud/rnd, @@ -23901,7 +23995,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nt" = ( +"aNt" = ( /obj/structure/table/standard, /obj/item/device/mmi, /obj/item/device/mmi/digital/posibrain, @@ -23909,13 +24003,13 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nu" = ( +"aNu" = ( /obj/structure/filingcabinet/chestdrawer, /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nv" = ( +"aNv" = ( /obj/structure/table/standard, /obj/machinery/computer/med_data/laptop{ dir = 1 @@ -23924,7 +24018,7 @@ /obj/effect/floor_decal/corner/mauve/border, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nw" = ( +"aNw" = ( /obj/structure/table/standard, /obj/item/weapon/pen, /obj/item/weapon/pen, @@ -23940,12 +24034,12 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/assembly/robotics) -"Nx" = ( +"aNx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ny" = ( +"aNy" = ( /obj/structure/table/rack/shelf, /obj/item/weapon/storage/backpack/parachute{ pixel_x = -4; @@ -23965,7 +24059,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Nz" = ( +"aNz" = ( /obj/machinery/door/airlock/glass_external{ frequency = 1380; icon_state = "door_locked"; @@ -23975,7 +24069,7 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"NA" = ( +"aNA" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -23991,7 +24085,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"NB" = ( +"aNB" = ( /obj/structure/railing{ dir = 8 }, @@ -24001,14 +24095,14 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NC" = ( +"aNC" = ( /obj/structure/railing{ icon_state = "railing0"; dir = 1 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"ND" = ( +"aND" = ( /obj/structure/railing{ dir = 4 }, @@ -24018,38 +24112,46 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NE" = ( -/obj/machinery/camera/network/research{ +"aNE" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/research/testingrange) -"NF" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aNF" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/assembly/robotics) -"NG" = ( +"aNG" = ( /turf/simulated/floor/tiled/monofloor{ dir = 1 }, /area/tether/surfacebase/shuttle_pad) -"NH" = ( +"aNH" = ( /obj/structure/bed/chair{ dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"NI" = ( +"aNI" = ( /obj/machinery/computer/atmos_alert{ icon_state = "computer"; dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"NJ" = ( +"aNJ" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, @@ -24060,13 +24162,13 @@ }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"NK" = ( +"aNK" = ( /obj/structure/bed/chair/shuttle{ dir = 1 }, /turf/simulated/shuttle/floor/black, /area/shuttle/tether/surface) -"NL" = ( +"aNL" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/structure/window/basic{ @@ -24074,37 +24176,37 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_hallway) -"NM" = ( +"aNM" = ( /obj/structure/railing{ dir = 8 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NN" = ( +"aNN" = ( /turf/simulated/floor/tiled/monofloor, /area/tether/surfacebase/shuttle_pad) -"NO" = ( +"aNO" = ( /obj/machinery/computer/shuttle_control/tether_backup{ icon_state = "computer"; dir = 8 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"NP" = ( +"aNP" = ( /obj/structure/shuttle/engine/heater, /obj/structure/window/reinforced{ dir = 1 }, /turf/simulated/shuttle/plating/airless, /area/shuttle/tether/surface) -"NQ" = ( +"aNQ" = ( /obj/machinery/firealarm{ dir = 4; pixel_x = 24 }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"NR" = ( +"aNR" = ( /obj/structure/catwalk, /obj/structure/railing{ icon_state = "railing0"; @@ -24112,7 +24214,7 @@ }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"NS" = ( +"aNS" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -24123,36 +24225,36 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"NT" = ( +"aNT" = ( /obj/structure/closet/firecloset, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"NU" = ( +"aNU" = ( /obj/structure/railing{ dir = 4 }, /obj/structure/railing, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NV" = ( +"aNV" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"NW" = ( +"aNW" = ( /obj/structure/railing{ dir = 8 }, /obj/structure/railing, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"NX" = ( +"aNX" = ( /obj/structure/closet/hydrant{ pixel_y = -32 }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"NY" = ( +"aNY" = ( /obj/machinery/button/remote/blast_door{ dir = 1; id = "hangarsurface"; @@ -24162,24 +24264,43 @@ }, /turf/simulated/floor/reinforced, /area/tether/surfacebase/shuttle_pad) -"NZ" = ( +"aNZ" = ( /obj/structure/sign/xenobio, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_hallway) -"Oa" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ +"aOa" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"Ob" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Oc" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOb" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOc" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, @@ -24189,7 +24310,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals5, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Od" = ( +"aOd" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, @@ -24204,7 +24325,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Oe" = ( +"aOe" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -24214,16 +24335,33 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Of" = ( +"aOf" = ( /turf/simulated/wall/r_wall, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Og" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"aOg" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"Oh" = ( +/obj/effect/floor_decal/corner/beige/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOh" = ( /obj/structure/cable/green, /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; @@ -24233,20 +24371,20 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_stairs) -"Oi" = ( +"aOi" = ( /obj/structure/railing{ dir = 1 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Oj" = ( +"aOj" = ( /obj/structure/reagent_dispensers/fueltank, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Ok" = ( +"aOk" = ( /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Ol" = ( +"aOl" = ( /obj/structure/shuttle/engine/propulsion{ anchored = 0; dir = 8; @@ -24254,18 +24392,18 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Om" = ( +"aOm" = ( /obj/structure/railing, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"On" = ( +"aOn" = ( /obj/structure/railing, /obj/structure/railing{ dir = 4 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Oo" = ( +"aOo" = ( /obj/item/device/radio/intercom{ dir = 1; pixel_y = 24; @@ -24280,23 +24418,29 @@ /obj/structure/curtain/open/shower, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Op" = ( +"aOp" = ( /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Oq" = ( -/obj/machinery/camera/network/research{ +"aOq" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/machinery/shower{ - dir = 4; - icon_state = "shower"; - pixel_x = 5; - pixel_y = 0 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 }, -/obj/structure/curtain/open/shower, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_south_airlock) -"Or" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOr" = ( /obj/machinery/light{ dir = 4 }, @@ -24305,7 +24449,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_hallway) -"Os" = ( +"aOs" = ( /obj/structure/railing{ dir = 1 }, @@ -24315,14 +24459,14 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Ot" = ( +"aOt" = ( /obj/structure/railing, /obj/structure/railing{ dir = 8 }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"Ou" = ( +"aOu" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, @@ -24331,7 +24475,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ov" = ( +"aOv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24340,7 +24484,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Ow" = ( +"aOw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24349,7 +24493,7 @@ }, /turf/simulated/floor/tiled/monotile, /area/tether/surfacebase/shuttle_pad) -"Ox" = ( +"aOx" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 4 }, @@ -24365,7 +24509,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"Oy" = ( +"aOy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24378,7 +24522,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"Oz" = ( +"aOz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -24387,7 +24531,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OA" = ( +"aOA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -24396,19 +24540,19 @@ }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OB" = ( +"aOB" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OC" = ( +"aOC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OD" = ( +"aOD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -24421,7 +24565,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"OE" = ( +"aOE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -24431,7 +24575,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"OF" = ( +"aOF" = ( /obj/structure/railing{ dir = 1 }, @@ -24440,7 +24584,7 @@ }, /turf/simulated/open/virgo3b, /area/tether/surfacebase/outside/outside3) -"OG" = ( +"aOG" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22; @@ -24452,7 +24596,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"OH" = ( +"aOH" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 4 @@ -24462,7 +24606,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OI" = ( +"aOI" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -24471,23 +24615,21 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OJ" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 1 +"aOJ" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/obj/effect/floor_decal/industrial/danger{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/machinery/alarm{ - dir = 1; - pixel_y = -22 - }, /obj/machinery/camera/network/tether{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/shuttle_pad) -"OK" = ( +/area/hallway/lower/third_south) +"aOK" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 1 }, @@ -24497,7 +24639,7 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OL" = ( +"aOL" = ( /obj/effect/floor_decal/borderfloorblack/corner{ icon_state = "borderfloorcorner_black"; dir = 1 @@ -24507,13 +24649,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/shuttle_pad) -"OM" = ( +"aOM" = ( /obj/structure/table/steel, /obj/random/tech_supply, /obj/random/tool, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"ON" = ( +"aON" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, @@ -24524,7 +24666,7 @@ /obj/item/stack/cable_coil/random, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OO" = ( +"aOO" = ( /obj/machinery/alarm{ dir = 1; pixel_y = -22 @@ -24535,23 +24677,20 @@ /obj/item/weapon/weldingtool, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OP" = ( +"aOP" = ( /obj/machinery/light/small, /turf/simulated/floor/tiled/techmaint, /area/tether/surfacebase/shuttle_pad) -"OQ" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, +"aOQ" = ( /obj/machinery/camera/network/tether{ - dir = 1 + dir = 9 }, -/turf/simulated/floor/tiled/techmaint, -/area/tether/surfacebase/shuttle_pad) -"OR" = ( +/turf/simulated/floor/tiled, +/area/hallway/lower/third_south) +"aOR" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_office) -"OS" = ( +"aOS" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -24563,22 +24702,32 @@ /obj/structure/closet/radiation, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"OT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"OU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +"aOT" = ( +/obj/effect/floor_decal/borderfloor{ dir = 4 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aOU" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"OV" = ( +/area/bridge_hallway) +"aOV" = ( /obj/structure/table/glass, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -24593,10 +24742,10 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"OW" = ( +"aOW" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"OX" = ( +"aOX" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -24609,7 +24758,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"OY" = ( +"aOY" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -24622,32 +24771,32 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"OZ" = ( +"aOZ" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pa" = ( -/obj/structure/catwalk, -/obj/machinery/camera/network/outside{ +"aPa" = ( +/obj/machinery/camera/network/command{ + icon_state = "camera"; dir = 4 }, -/turf/simulated/open/virgo3b, -/area/tether/surfacebase/outside/outside3) -"Pb" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aPb" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Pc" = ( +"aPc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/door/airlock/hatch, /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pd" = ( +"aPd" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 8 @@ -24662,18 +24811,28 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_office) -"Pe" = ( -/obj/structure/table/wooden_reinforced, -/obj/item/weapon/paperplane, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"Pf" = ( +"aPe" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aPf" = ( /obj/machinery/light{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Pg" = ( +"aPg" = ( /obj/machinery/computer/area_atmos/tag{ pixel_y = 0; scrub_id = "xeno_phoron_pen_scrubbers" @@ -24683,19 +24842,31 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Ph" = ( +"aPh" = ( /obj/machinery/computer/security/xenobio, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Pi" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 +"aPi" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/item/weapon/folder/white, -/turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"Pj" = ( +/obj/effect/landmark/start{ + name = "Colony Director" + }, +/obj/machinery/button/remote/blast_door{ + dir = 8; + id = "cap_office"; + name = "Security Shutters"; + pixel_x = 30; + pixel_y = 16 + }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aPj" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24717,22 +24888,22 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_south_airlock) -"Pk" = ( -/obj/machinery/recharge_station, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"Pl" = ( +"aPk" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPl" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donkpockets, /obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pm" = ( +"aPm" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donkpockets, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pn" = ( +"aPn" = ( /obj/structure/table/woodentable, /obj/machinery/microwave, /obj/machinery/light{ @@ -24740,7 +24911,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Po" = ( +"aPo" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 4 @@ -24755,16 +24926,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Pp" = ( -/obj/item/stack/material/plastic, -/obj/structure/table/rack, -/obj/item/stack/material/steel{ - amount = 3 +"aPp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/random/maintenance/engineering, -/turf/simulated/floor/tiled/techfloor, -/area/tether/surfacebase/shuttle_pad) -"Pq" = ( +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPq" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -24773,7 +24942,7 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pr" = ( +"aPr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -24782,20 +24951,20 @@ }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Ps" = ( +"aPs" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pt" = ( +"aPt" = ( /obj/structure/frame/computer, /obj/item/weapon/material/twohanded/baseballbat{ name = "Swatta" }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Pu" = ( +"aPu" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24804,7 +24973,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/shuttle_pad) -"Pv" = ( +"aPv" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 8 @@ -24816,11 +24985,11 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_office) -"Pw" = ( +"aPw" = ( /obj/structure/table/wooden_reinforced, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Px" = ( +"aPx" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, @@ -24836,13 +25005,13 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Py" = ( +"aPy" = ( /obj/structure/bed/chair/office/dark{ dir = 1 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Pz" = ( +"aPz" = ( /obj/effect/landmark/start{ name = "Xenobiologist" }, @@ -24851,7 +25020,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"PA" = ( +"aPA" = ( /obj/structure/table/glass, /obj/machinery/light_switch{ dir = 8; @@ -24861,90 +25030,81 @@ /obj/item/weapon/storage/box/masks, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"PB" = ( +"aPB" = ( /obj/machinery/vending/snack, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PC" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 +"aPC" = ( +/obj/machinery/computer/communications{ + dir = 1 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"PD" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/machinery/camera/network/command{ + icon_state = "camera"; dir = 10 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aPD" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 6 +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() }, /turf/simulated/floor/tiled, -/area/bridge/secondary) -"PE" = ( +/area/hallway/lower/third_south) +"aPE" = ( /obj/item/device/radio/intercom{ dir = 8; pixel_x = 10 }, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PF" = ( +"aPF" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, /obj/machinery/light, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"PG" = ( +"aPG" = ( /obj/random/mob/mouse, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PH" = ( +"aPH" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PI" = ( +"aPI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PJ" = ( +"aPJ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PK" = ( +"aPK" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 4 @@ -24956,27 +25116,27 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PL" = ( +"aPL" = ( /obj/structure/table/rack, /obj/random/maintenance/clean, /obj/random/maintenance/engineering, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"PM" = ( +"aPM" = ( /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"PN" = ( +"aPN" = ( /obj/machinery/photocopier, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"PO" = ( +"aPO" = ( /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"PP" = ( +"aPP" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_office) -"PQ" = ( +"aPQ" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -24984,7 +25144,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"PR" = ( +"aPR" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -24993,28 +25153,28 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"PS" = ( +"aPS" = ( /obj/machinery/light{ dir = 4 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"PT" = ( +"aPT" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PU" = ( +"aPU" = ( /obj/machinery/vending/fitness, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PV" = ( +"aPV" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"PW" = ( +"aPW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -25025,35 +25185,35 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PX" = ( +"aPX" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PY" = ( +"aPY" = ( /obj/machinery/disposal, /obj/structure/disposalpipe/trunk{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"PZ" = ( +"aPZ" = ( /obj/structure/bed/chair, /obj/machinery/light/small{ dir = 8 }, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Qa" = ( +"aQa" = ( /obj/structure/bed/chair, /turf/simulated/floor/tiled/techfloor, /area/tether/surfacebase/shuttle_pad) -"Qb" = ( +"aQb" = ( /obj/machinery/papershredder, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qc" = ( +"aQc" = ( /obj/machinery/alarm{ dir = 8; pixel_x = 22; @@ -25061,25 +25221,13 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/cable/green{ - icon_state = "1-2" +"aQd" = ( +/obj/machinery/light/small{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "1-4" - }, -/obj/structure/cable/green{ - icon_state = "1-8" - }, -/obj/structure/disposalpipe/junction{ - dir = 1; - icon_state = "pipe-j2" - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"Qe" = ( +/turf/simulated/open, +/area/tether/surfacebase/north_stairs_three) +"aQe" = ( /obj/machinery/light_switch{ dir = 4; pixel_x = -28 @@ -25093,44 +25241,38 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qf" = ( -/obj/machinery/camera/network/research{ - dir = 8 +"aQf" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 6 }, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 26 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"Qg" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQg" = ( /obj/machinery/vending/cola, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qh" = ( +"aQh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qi" = ( +"aQi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qj" = ( +"aQj" = ( /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qk" = ( +"aQk" = ( /obj/machinery/computer/arcade, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Ql" = ( +"aQl" = ( /obj/structure/filingcabinet/chestdrawer, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qm" = ( +"aQm" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -25139,7 +25281,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qn" = ( +"aQn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -25155,7 +25297,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qo" = ( +"aQo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25172,7 +25314,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qp" = ( +"aQp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25185,7 +25327,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qq" = ( +"aQq" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Office"; req_access = list(); @@ -25207,7 +25349,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_office) -"Qr" = ( +"aQr" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25223,7 +25365,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Qs" = ( +"aQs" = ( /obj/machinery/door/airlock/glass_science{ name = "Break Room" }, @@ -25243,7 +25385,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qt" = ( +"aQt" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -25259,7 +25401,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qu" = ( +"aQu" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25275,18 +25417,18 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qv" = ( +"aQv" = ( /obj/structure/bed/chair/wood, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qw" = ( +"aQw" = ( /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Qx" = ( +"aQx" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/cell_charger, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -25294,13 +25436,13 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qy" = ( +"aQy" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"Qz" = ( +"aQz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 9; @@ -25308,7 +25450,7 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QA" = ( +"aQA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25325,7 +25467,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QB" = ( +"aQB" = ( /obj/machinery/light{ dir = 8; icon_state = "tube1"; @@ -25338,7 +25480,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QC" = ( +"aQC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/disposalpipe/segment, @@ -25347,29 +25489,20 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QD" = ( -/obj/structure/bed/chair/wood{ - dir = 4 +"aQD" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 9 }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/structure/cable/green{ - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"QE" = ( +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQE" = ( /obj/structure/table/woodentable, /obj/item/weapon/storage/box/donut, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QF" = ( +"aQF" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, @@ -25377,13 +25510,13 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"QG" = ( +"aQG" = ( /obj/structure/bed/chair/wood{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QH" = ( +"aQH" = ( /obj/structure/table/wooden_reinforced, /obj/item/stack/material/phoron{ amount = 6 @@ -25397,7 +25530,7 @@ /obj/item/weapon/reagent_containers/syringe, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QI" = ( +"aQI" = ( /obj/structure/bed/chair/office/dark, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25408,20 +25541,20 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QJ" = ( +"aQJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QK" = ( +"aQK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QL" = ( +"aQL" = ( /obj/machinery/vending/coffee, /obj/structure/cable/green{ icon_state = "1-2" @@ -25433,10 +25566,10 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QM" = ( +"aQM" = ( /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"QN" = ( +"aQN" = ( /obj/structure/bed/chair/wood{ dir = 4 }, @@ -25450,16 +25583,16 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QO" = ( +"aQO" = ( /obj/structure/table/woodentable, /obj/random/plushie, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QP" = ( +"aQP" = ( /obj/structure/table/woodentable, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QQ" = ( +"aQQ" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 8 @@ -25472,40 +25605,39 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_office) -"QR" = ( -/obj/structure/bed/roller, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, +"aQR" = ( /obj/structure/table/glass, -/obj/item/device/defib_kit, -/obj/item/weapon/storage/toolbox/emergency, +/obj/item/bodybag, +/obj/item/device/healthanalyzer, +/obj/random/medical, +/obj/structure/closet/medical_wall{ + pixel_y = 35 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24; + pixel_y = 0 + }, +/obj/item/weapon/storage/firstaid/regular, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"QS" = ( +"aQS" = ( /obj/structure/table/wooden_reinforced, /obj/machinery/reagentgrinder, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QT" = ( +"aQT" = ( /obj/structure/flora/pottedplant/crystal, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"QU" = ( -/obj/structure/flora/pottedplant/unusual, -/obj/machinery/camera/network/research{ - dir = 8 +"aQU" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 9 }, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/turf/simulated/floor/wood, -/area/rnd/outpost/xenobiology/outpost_office) -"QV" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQV" = ( /obj/machinery/power/apc{ cell_type = /obj/item/weapon/cell/apc; dir = 8; @@ -25516,13 +25648,14 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QW" = ( -/obj/structure/bed/chair/wood{ +"aQW" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; dir = 1 }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"QX" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aQX" = ( /obj/structure/table/reinforced, /obj/machinery/door/window/brigdoor/eastleft{ dir = 1 @@ -25542,12 +25675,12 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"QY" = ( +"aQY" = ( /obj/machinery/light, /obj/machinery/media/jukebox, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"QZ" = ( +"aQZ" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 4 @@ -25560,10 +25693,10 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_breakroom) -"Ra" = ( +"aRa" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rb" = ( +"aRb" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Office"; req_access = list(); @@ -25572,7 +25705,7 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rc" = ( +"aRc" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ @@ -25590,17 +25723,17 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Rd" = ( +"aRd" = ( /obj/structure/cable/green{ icon_state = "1-8" }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Re" = ( +"aRe" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"Rf" = ( +"aRf" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Showers and Decontamination"; @@ -25608,7 +25741,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_decon) -"Rg" = ( +"aRg" = ( /obj/machinery/optable, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -25619,17 +25752,18 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rh" = ( -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 +"aRh" = ( +/obj/structure/catwalk, +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, +/turf/simulated/open/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRi" = ( /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Ri" = ( -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_autopsy) -"Rj" = ( +"aRj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25642,7 +25776,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rk" = ( +"aRk" = ( /obj/structure/table/standard, /obj/item/toy/plushie/coffee_fox, /obj/item/clothing/glasses/welding, @@ -25656,21 +25790,22 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Rl" = ( +"aRl" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rm" = ( -/obj/machinery/camera/network/research{ - dir = 4 +"aRm" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 5 }, -/turf/simulated/floor/tiled/dark, -/area/rnd/outpost/xenobiology/outpost_main) -"Rn" = ( +/turf/simulated/floor/outdoors/grass/sif/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRn" = ( /obj/machinery/newscaster, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"Ro" = ( +"aRo" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/cable/green{ @@ -25689,21 +25824,26 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Rp" = ( +"aRp" = ( +/obj/structure/cable/green{ + icon_state = "1-4" + }, +/obj/machinery/camera/network/research{ + dir = 1 + }, /obj/structure/closet/l3closet/scientist, -/obj/machinery/atmospherics/unary/vent_scrubber/on, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rq" = ( +"aRq" = ( /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rr" = ( +"aRr" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower, /obj/random/soap, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rs" = ( +"aRs" = ( /obj/structure/curtain/open/shower, /obj/machinery/shower{ dir = 8; @@ -25719,7 +25859,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"Rt" = ( +"aRt" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringes, /obj/item/weapon/storage/box/monkeycubes, @@ -25743,7 +25883,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Ru" = ( +"aRu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -25753,7 +25893,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rv" = ( +"aRv" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -25762,7 +25902,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rw" = ( +"aRw" = ( /obj/structure/table/standard, /obj/item/weapon/extinguisher, /obj/item/clothing/shoes/galoshes, @@ -25770,7 +25910,7 @@ /obj/item/weapon/extinguisher, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Rx" = ( +"aRx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25787,7 +25927,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Ry" = ( +"aRy" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Autopsy Room"; req_access = list(); @@ -25809,7 +25949,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_autopsy) -"Rz" = ( +"aRz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25825,7 +25965,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"RA" = ( +"aRA" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/beakers, /obj/structure/extinguisher_cabinet{ @@ -25835,7 +25975,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"RB" = ( +"aRB" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Showers and Decontamination" @@ -25852,7 +25992,7 @@ }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_decon) -"RC" = ( +"aRC" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 @@ -25866,7 +26006,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RD" = ( +"aRD" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -25875,19 +26015,19 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RE" = ( +"aRE" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RF" = ( +"aRF" = ( /obj/structure/cable/green{ icon_state = "2-8" }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RG" = ( +"aRG" = ( /obj/item/device/radio/intercom{ dir = 4; pixel_x = 24 @@ -25913,43 +26053,53 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"RH" = ( +"aRH" = ( /obj/structure/sink/kitchen{ name = "sink"; pixel_y = 32 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RI" = ( +"aRI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +"aRJ" = ( +/obj/machinery/camera/network/outside{ + icon_state = "camera"; + dir = 1 }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"RK" = ( +/turf/simulated/floor/tiled/steel_dirty/virgo3b, +/area/tether/surfacebase/outside/outside3) +"aRK" = ( /turf/simulated/wall, /area/tether/surfacebase/medical/patient_c) -"RL" = ( +"aRL" = ( /obj/machinery/washing_machine, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_decon) -"RM" = ( -/obj/structure/cable/green{ - icon_state = "1-4" +"aRM" = ( +/obj/structure/table/standard, +/obj/item/toy/plushie/purple_fox, +/obj/machinery/firealarm{ + dir = 4; + layer = 3.3; + pixel_x = 26 }, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_decon) -"RN" = ( +/obj/machinery/recharger/wallcharger{ + pixel_x = 4; + pixel_y = 28 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/item/weapon/reagent_containers/spray/cleaner, +/turf/simulated/floor/tiled/techmaint, +/area/rnd/outpost/xenobiology/outpost_storage) +"aRN" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 1 }, @@ -25957,11 +26107,11 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"RO" = ( +"aRO" = ( /obj/item/device/radio/intercom, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RP" = ( +"aRP" = ( /obj/machinery/door/airlock/research{ name = "Xenobiology Autopsy Room"; req_access = list(); @@ -25970,18 +26120,18 @@ /obj/machinery/door/firedoor, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RQ" = ( +"aRQ" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_autopsy) -"RR" = ( +"aRR" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"RS" = ( +"aRS" = ( /obj/machinery/door/firedoor/glass/hidden{ icon_state = "door_open"; dir = 2 @@ -25994,22 +26144,22 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"RT" = ( +"aRT" = ( /obj/structure/sign/department/xenolab, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"RU" = ( +"aRU" = ( /obj/machinery/door/firedoor, /obj/machinery/door/airlock{ name = "Showers and Decontamination" }, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_decon) -"RV" = ( +"aRV" = ( /obj/item/device/radio/intercom, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_decon) -"RW" = ( +"aRW" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -26024,7 +26174,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"RX" = ( +"aRX" = ( /obj/machinery/light{ dir = 1 }, @@ -26033,14 +26183,19 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"RY" = ( -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +"aRY" = ( +/obj/structure/bed/roller, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_main) -"RZ" = ( +/obj/structure/table/glass, +/obj/item/weapon/storage/toolbox/emergency, +/obj/item/device/defib_kit/loaded, +/turf/simulated/floor/tiled/white, +/area/rnd/outpost/xenobiology/outpost_first_aid) +"aRZ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, @@ -26049,7 +26204,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sa" = ( +"aSa" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -26065,7 +26220,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sb" = ( +"aSb" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -26073,7 +26228,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_c) -"Sc" = ( +"aSc" = ( /obj/machinery/door/firedoor/glass/hidden, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -26084,17 +26239,17 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sd" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +"aSd" = ( +/obj/machinery/door/firedoor/glass/hidden, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 +/obj/structure/cable/green{ + icon_state = "4-8" }, -/turf/simulated/floor/tiled/dark, +/turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Se" = ( +"aSe" = ( /obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold4w/hidden/supply, /obj/structure/disposalpipe/segment, @@ -26104,7 +26259,7 @@ /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Sf" = ( +"aSf" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -26113,15 +26268,24 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sg" = ( -/obj/machinery/camera/network/research, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; +"aSg" = ( +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled, +/obj/structure/cable/green{ + icon_state = "4-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"Sh" = ( +"aSh" = ( /obj/machinery/light{ dir = 1 }, @@ -26133,7 +26297,7 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Si" = ( +"aSi" = ( /obj/structure/window/basic/full, /obj/structure/window/basic{ dir = 1 @@ -26148,7 +26312,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"Sj" = ( +"aSj" = ( /obj/structure/window/basic/full, /obj/structure/window/basic, /obj/structure/window/basic{ @@ -26161,7 +26325,7 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"Sk" = ( +"aSk" = ( /obj/structure/bed/chair, /obj/machinery/alarm{ pixel_y = 22 @@ -26181,14 +26345,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"Sl" = ( +"aSl" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sm" = ( +"aSm" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, /obj/effect/floor_decal/borderfloorwhite{ @@ -26217,7 +26381,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"Sn" = ( +"aSn" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin, /obj/item/weapon/pen, @@ -26241,7 +26405,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"So" = ( +"aSo" = ( /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/reinforced/polarized/full{ @@ -26252,7 +26416,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/patient_c) -"Sp" = ( +"aSp" = ( /obj/effect/floor_decal/steeldecal/steel_decals10{ dir = 8 }, @@ -26265,7 +26429,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Sq" = ( +"aSq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -26288,7 +26452,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Sr" = ( +"aSr" = ( /obj/structure/lattice, /obj/machinery/door/firedoor, /obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ @@ -26318,20 +26482,28 @@ }, /turf/simulated/open, /area/rnd/outpost/xenobiology/outpost_stairs) -"Ss" = ( +"aSs" = ( /obj/structure/cable/green{ icon_state = "4-8" }, +/obj/machinery/alarm{ + dir = 1; + pixel_x = 30; + pixel_y = -22 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_main) -"St" = ( +"aSt" = ( /obj/machinery/door/firedoor/glass/hidden, /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Su" = ( +"aSu" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -26350,13 +26522,13 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"Sv" = ( +"aSv" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sw" = ( +"aSw" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, @@ -26366,20 +26538,20 @@ }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sx" = ( +"aSx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sy" = ( +"aSy" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_main) -"Sz" = ( +"aSz" = ( /obj/structure/window/basic/full, /obj/structure/window/basic, /obj/structure/window/basic{ @@ -26392,77 +26564,45 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_main) -"SA" = ( +"aSA" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SB" = ( +"aSB" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/steel, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SC" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"SD" = ( +"aSC" = ( +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/carry, +/area/shuttle/tether/surface) +"aSD" = ( /obj/structure/sign/redcross, /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SE" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_y = -24 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/light_switch{ - dir = 1; - on = 0; - pixel_x = -14; - pixel_y = -24 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/patient_c) -"SF" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +"aSE" = ( +/obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/airlock/glass_command{ - name = "Secondary Control Room" +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/alarm{ + alarm_id = "anomaly_testing"; + breach_detection = 0; + dir = 8; + frequency = 1439; + pixel_x = 22; + pixel_y = 0; + report_danger_level = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/tiled/dark, -/area/bridge/secondary) -"SG" = ( +/area/bridge_hallway) +"aSG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -26481,30 +26621,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"SH" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"SI" = ( +"aSI" = ( /turf/simulated/wall, /area/rnd/outpost/xenobiology/outpost_storage) -"SJ" = ( +"aSJ" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SK" = ( +"aSK" = ( /obj/structure/closet/secure_closet/personal/patient, /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 @@ -26525,7 +26651,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/patient_c) -"SL" = ( +"aSL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -26535,7 +26661,7 @@ /obj/effect/floor_decal/techfloor, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"SM" = ( +"aSM" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, @@ -26547,7 +26673,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SN" = ( +"aSN" = ( /obj/effect/floor_decal/corner_steel_grid{ dir = 5 }, @@ -26559,7 +26685,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SO" = ( +"aSO" = ( /obj/machinery/light{ dir = 4; icon_state = "tube1" @@ -26602,16 +26728,16 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SP" = ( +"aSP" = ( /turf/simulated/wall/r_wall, /area/tether/surfacebase/medical/chemistry) -"SQ" = ( +"aSQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"SR" = ( +"aSR" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26625,7 +26751,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SS" = ( +"aSS" = ( /obj/structure/cable/green{ d1 = 2; d2 = 8; @@ -26643,7 +26769,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"ST" = ( +"aST" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -26657,7 +26783,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SU" = ( +"aSU" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 10 }, @@ -26680,7 +26806,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"SV" = ( +"aSV" = ( /obj/machinery/door/airlock/glass_medical{ name = "Chemistry"; req_access = list(); @@ -26700,14 +26826,14 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"SW" = ( +"aSW" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SX" = ( +"aSX" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, @@ -26720,13 +26846,13 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SY" = ( +"aSY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"SZ" = ( +"aSZ" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 6 }, @@ -26753,7 +26879,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Ta" = ( +"aTa" = ( /obj/machinery/alarm{ dir = 4; icon_state = "alarm0"; @@ -26765,7 +26891,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Tb" = ( +"aTb" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -26806,7 +26932,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tc" = ( +"aTc" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -26824,7 +26950,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Td" = ( +"aTd" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 5 @@ -26848,59 +26974,33 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Te" = ( -/obj/machinery/camera/network/research{ - dir = 8 - }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/tiled/white, -/area/rnd/outpost/xenobiology/outpost_first_aid) -"Tf" = ( +"aTf" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Tg" = ( +"aTg" = ( /turf/simulated/wall, /area/maintenance/lower/mining) -"Th" = ( -/obj/structure/table/standard, -/obj/item/device/lightreplacer, -/obj/item/weapon/storage/box/lights/mixed, -/obj/item/weapon/storage/box/lights/mixed, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/apc; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/obj/machinery/camera/network/research{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"Ti" = ( +"aTi" = ( /obj/structure/cable/green{ icon_state = "4-8" }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Tj" = ( +"aTj" = ( /obj/effect/landmark/start{ name = "Medical Doctor" }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Tk" = ( +"aTk" = ( /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Tl" = ( +"aTl" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -26915,11 +27015,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Tm" = ( +"aTm" = ( /obj/machinery/smartfridge/chemistry/chemvator, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tn" = ( +"aTn" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -26934,11 +27034,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"To" = ( +"aTo" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tp" = ( +"aTp" = ( /obj/structure/cable/green{ d1 = 1; d2 = 2; @@ -26947,7 +27047,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tq" = ( +"aTq" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -26971,7 +27071,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Tr" = ( +"aTr" = ( /obj/effect/floor_decal/techfloor{ dir = 8 }, @@ -26985,51 +27085,14 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"Ts" = ( +"aTs" = ( /obj/random/maintenance/clean, /obj/random/maintenance/clean, /obj/random/contraband, /obj/structure/closet, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"Tt" = ( -/obj/structure/table/standard, -/obj/item/toy/plushie/purple_fox, -/obj/machinery/firealarm{ - dir = 4; - layer = 3.3; - pixel_x = 26 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 4; - pixel_y = 28 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/item/weapon/reagent_containers/spray, -/obj/item/weapon/reagent_containers/spray, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"Tu" = ( -/obj/machinery/camera/network/research{ - dir = 1 - }, -/obj/machinery/light_switch{ - dir = 1; - pixel_x = 0; - pixel_y = -28 - }, -/turf/simulated/floor/tiled, -/area/rnd/outpost/xenobiology/outpost_breakroom) -"Tv" = ( -/obj/structure/table/standard, -/obj/item/device/slime_scanner, -/obj/item/device/slime_scanner, -/obj/item/device/multitool, -/turf/simulated/floor/tiled/techmaint, -/area/rnd/outpost/xenobiology/outpost_storage) -"Tw" = ( +"aTw" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -27044,221 +27107,22 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"Tx" = ( +"aTx" = ( /obj/structure/window/basic/full, /obj/structure/grille, /obj/machinery/door/firedoor/glass, /obj/structure/window/basic, /turf/simulated/floor/plating, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Ty" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Tz" = ( -/obj/machinery/firealarm{ - dir = 8; - pixel_x = -24; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TA" = ( +"aTA" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"TB" = ( +"aTB" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/rnd/outpost/xenobiology/outpost_breakroom) -"TC" = ( -/obj/effect/floor_decal/borderfloor/corner{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TD" = ( -/obj/machinery/button/windowtint{ - id = "secondary_bridge"; - pixel_x = 4; - pixel_y = 26 - }, -/obj/structure/table/reinforced, -/obj/machinery/button/remote/blast_door{ - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blastdoors"; - pixel_x = -6; - pixel_y = 28 - }, -/obj/machinery/recharger, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TE" = ( -/obj/structure/table/reinforced, -/obj/item/device/radio{ - pixel_x = 2; - pixel_y = 2 - }, -/obj/item/device/radio{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TF" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TG" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TH" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/camera/network/command, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TI" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TJ" = ( -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TK" = ( +"aTK" = ( /obj/structure/table/glass, /obj/machinery/light{ icon_state = "tube1"; @@ -27274,310 +27138,10 @@ /obj/item/device/flashlight/lamp/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"TL" = ( -/obj/machinery/light{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TM" = ( -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TO" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TP" = ( -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, -/obj/machinery/papershredder, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TQ" = ( -/obj/machinery/light_switch{ - dir = 4; - pixel_x = -28; - pixel_y = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TR" = ( -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TS" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TT" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/bed/chair/office/dark, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TV" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TW" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TX" = ( +"aTX" = ( /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"TY" = ( -/obj/machinery/computer/card{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 10 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 10 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"TZ" = ( -/obj/machinery/computer/secure_data{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ua" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/skills{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ub" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin, -/obj/item/weapon/pen, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Uc" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ud" = ( -/obj/structure/disposalpipe/segment, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ue" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Uf" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ug" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/blue/bordercorner2, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Uh" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/blue/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ui" = ( +"aUi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 }, @@ -27590,279 +27154,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"Uj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/firealarm{ - dir = 2; - layer = 3.3; - pixel_x = 0; - pixel_y = 26 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/light{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ul" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Um" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Un" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Uo" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Up" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/cable/green, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Uq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/obj/machinery/door/airlock/command{ - name = "Secondary Command Office" - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"Ur" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" - }, -/obj/structure/cable/green, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Us" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d2 = 8; - icon_state = "0-8" - }, -/obj/structure/grille, -/obj/structure/window/reinforced/polarized/full{ - id = "secondary_bridge" - }, -/obj/machinery/door/blast/regular{ - density = 0; - dir = 8; - icon_state = "pdoor0"; - id = "secondary_bridge_blast"; - name = "Secondary Command Office Blast Doors"; - opacity = 0 - }, -/turf/simulated/floor/plating, -/area/bridge/secondary) -"Ut" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uu" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 4; - icon_state = "borderfloorcorner2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Uw" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ux" = ( +"aUx" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -27882,7 +27174,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"Uy" = ( +"aUy" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 @@ -27912,24 +27204,7 @@ }, /turf/simulated/floor/tiled/steel_grid, /area/tether/surfacebase/security/lobby) -"Uz" = ( -/obj/structure/table/glass, -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/light, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"UA" = ( +"aUA" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/filingcabinet/chestdrawer{ @@ -27937,25 +27212,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"UB" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for the medbay foyer."; - id = "SurfMedbayFoyer"; - name = "Medbay Doors Control"; - pixel_x = 4; - pixel_y = -26 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/triage) -"UC" = ( +"aUC" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 8 @@ -27969,7 +27226,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UD" = ( +"aUD" = ( /obj/structure/table/reinforced, /obj/item/weapon/reagent_containers/glass/beaker/large, /obj/item/weapon/reagent_containers/dropper, @@ -27978,7 +27235,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UE" = ( +"aUE" = ( /obj/structure/disposalpipe/segment{ dir = 4; icon_state = "pipe-c" @@ -27991,28 +27248,15 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UF" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"UG" = ( +"aUG" = ( /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"UH" = ( +"aUH" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"UI" = ( +"aUI" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -28028,7 +27272,7 @@ dir = 4 }, /area/tether/surfacebase/medical/triage) -"UJ" = ( +"aUJ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28042,7 +27286,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UK" = ( +"aUK" = ( /obj/structure/bed/chair/office/dark{ dir = 8 }, @@ -28051,7 +27295,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UL" = ( +"aUL" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -28063,31 +27307,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UM" = ( -/obj/structure/table/reinforced, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/reagentgrinder, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"UN" = ( +"aUN" = ( /obj/machinery/firealarm{ dir = 8; pixel_x = -26 }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"UO" = ( +"aUO" = ( /obj/structure/cable/green{ icon_state = "4-8" }, @@ -28110,7 +27337,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/frontdesk) -"UP" = ( +"aUP" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28120,10 +27347,10 @@ /obj/machinery/chemical_dispenser/full, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UQ" = ( +"aUQ" = ( /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UR" = ( +"aUR" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ d1 = 1; @@ -28132,7 +27359,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"US" = ( +"aUS" = ( /obj/structure/table/reinforced, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -28149,7 +27376,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UT" = ( +"aUT" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28170,7 +27397,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"UU" = ( +"aUU" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28182,7 +27409,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/lobby) -"UV" = ( +"aUV" = ( /obj/structure/window/reinforced{ dir = 4 }, @@ -28192,7 +27419,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"UW" = ( +"aUW" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -28204,7 +27431,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"UX" = ( +"aUX" = ( /obj/structure/table/reinforced, /obj/machinery/door/firedoor/glass, /obj/machinery/door/window/eastright{ @@ -28227,7 +27454,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UY" = ( +"aUY" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28239,14 +27466,14 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"UZ" = ( +"aUZ" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Va" = ( +"aVa" = ( /obj/structure/disposalpipe/segment{ dir = 8; icon_state = "pipe-c" @@ -28258,17 +27485,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vb" = ( -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/machinery/chemical_dispenser/full, -/turf/simulated/floor/tiled/white, -/area/tether/surfacebase/medical/chemistry) -"Vc" = ( +"aVc" = ( /obj/machinery/alarm{ dir = 8; icon_state = "alarm0"; @@ -28276,7 +27493,7 @@ }, /turf/simulated/floor/plating, /area/maintenance/lower/mining) -"Vd" = ( +"aVd" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -28302,7 +27519,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"Ve" = ( +"aVe" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/cups, /obj/item/weapon/storage/box/cups, @@ -28314,7 +27531,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vf" = ( +"aVf" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28326,7 +27543,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/medical/chemistry) -"Vg" = ( +"aVg" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 10 }, @@ -28343,7 +27560,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vh" = ( +"aVh" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/extinguisher_cabinet{ @@ -28353,7 +27570,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vi" = ( +"aVi" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, /obj/structure/bed/chair/office/dark{ @@ -28370,7 +27587,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vj" = ( +"aVj" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -28381,11 +27598,11 @@ /obj/machinery/light, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/chemistry) -"Vk" = ( +"aVk" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vl" = ( +"aVl" = ( /obj/machinery/disposal, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 @@ -28401,11 +27618,11 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vm" = ( +"aVm" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall/r_wall, /area/tether/surfacebase/medical/chemistry) -"Vn" = ( +"aVn" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -28417,7 +27634,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vo" = ( +"aVo" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, @@ -28432,7 +27649,7 @@ /obj/structure/reagent_dispensers/water_cooler/full, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"Vp" = ( +"aVp" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/structure/disposalpipe/segment, @@ -28441,7 +27658,7 @@ }, /turf/simulated/floor/tiled/dark, /area/rnd/outpost/xenobiology/outpost_hallway) -"Vq" = ( +"aVq" = ( /obj/structure/table/standard, /obj/effect/floor_decal/corner/lightgrey{ dir = 6 @@ -28450,8 +27667,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Vr" = ( +/area/tether/surfacebase/surface_three_hall) +"aVr" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -28460,12 +27677,12 @@ }, /obj/structure/table/standard, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Vs" = ( +/area/tether/surfacebase/surface_three_hall) +"aVs" = ( /obj/structure/lattice, /turf/simulated/open, /area/maintenance/lower/mining) -"Vt" = ( +"aVt" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Infirmary Lobby" }, @@ -28477,7 +27694,7 @@ dir = 8 }, /area/tether/surfacebase/medical/lobby) -"Vu" = ( +"aVu" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 9 }, @@ -28486,8 +27703,8 @@ }, /obj/structure/table/bench/standard, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Vv" = ( +/area/tether/surfacebase/surface_three_hall) +"aVv" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28510,13 +27727,13 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Vw" = ( +"aVw" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Vx" = ( +"aVx" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -28525,7 +27742,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/triage) -"Vy" = ( +"aVy" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/structure/disposalpipe/junction{ @@ -28545,7 +27762,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"Vz" = ( +"aVz" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -28568,7 +27785,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VA" = ( +"aVA" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -28591,7 +27808,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VB" = ( +"aVB" = ( /obj/structure/disposalpipe/segment{ dir = 2; icon_state = "pipe-c" @@ -28612,7 +27829,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VC" = ( +"aVC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; icon_state = "borderfloor"; @@ -28626,7 +27843,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VD" = ( +"aVD" = ( /obj/effect/floor_decal/borderfloor{ dir = 5 }, @@ -28643,7 +27860,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VE" = ( +"aVE" = ( /obj/effect/floor_decal/techfloor{ dir = 4 }, @@ -28654,7 +27871,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"VF" = ( +"aVF" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 8 }, @@ -28667,20 +27884,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"VG" = ( -/obj/structure/disposalpipe/trunk{ - dir = 8 - }, -/obj/machinery/disposal, -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/bridge/secondary) -"VH" = ( +"aVH" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -28695,11 +27899,11 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"VI" = ( +"aVI" = ( /obj/effect/floor_decal/borderfloor, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"VJ" = ( +"aVJ" = ( /obj/effect/floor_decal/borderfloor, /obj/structure/cable/green{ d1 = 2; @@ -28713,17 +27917,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/common) -"VK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/common) -"VL" = ( +"aVL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/light, @@ -28745,7 +27939,7 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"VM" = ( +"aVM" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -28769,7 +27963,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"VN" = ( +"aVN" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28787,7 +27981,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/lobby) -"VO" = ( +"aVO" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 }, @@ -28814,7 +28008,7 @@ /obj/structure/flora/pottedplant/stoutbush, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VP" = ( +"aVP" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/machinery/alarm{ @@ -28832,24 +28026,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VQ" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/structure/bed/chair{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/security/lobby) -"VR" = ( +"aVR" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, /obj/effect/floor_decal/borderfloor/corner2{ @@ -28874,7 +28051,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VS" = ( +"aVS" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 }, @@ -28886,15 +28063,15 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VT" = ( +"aVT" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals6, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VU" = ( +"aVU" = ( /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"VV" = ( +"aVV" = ( /obj/effect/floor_decal/techfloor/corner{ dir = 8 }, @@ -28909,7 +28086,7 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"VW" = ( +"aVW" = ( /obj/structure/bed/chair{ dir = 1 }, @@ -28926,7 +28103,7 @@ }, /turf/simulated/floor/tiled/white, /area/tether/surfacebase/medical/lobby) -"VX" = ( +"aVX" = ( /obj/machinery/door/firedoor, /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -28934,8 +28111,8 @@ dir = 1 }, /turf/simulated/floor/plating, -/area/tether/surfacebase/atrium_three) -"VY" = ( +/area/tether/surfacebase/surface_three_hall) +"aVY" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28960,7 +28137,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/common) -"VZ" = ( +"aVZ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -28986,7 +28163,7 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/common) -"Wa" = ( +"aWa" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/machinery/door/firedoor, @@ -29012,13 +28189,13 @@ }, /turf/simulated/floor/plating, /area/tether/surfacebase/security/common) -"Wb" = ( +"aWb" = ( /obj/structure/sign/directions/evac{ dir = 4 }, /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"Wc" = ( +"aWc" = ( /obj/machinery/door/airlock/multi_tile/glass{ name = "Security Lobby" }, @@ -29040,7 +28217,7 @@ dir = 8 }, /area/tether/surfacebase/security/lobby) -"Wd" = ( +"aWd" = ( /obj/machinery/door/firedoor/glass, /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ @@ -29058,24 +28235,24 @@ dir = 4 }, /area/tether/surfacebase/security/lobby) -"We" = ( +"aWe" = ( /obj/structure/sign/directions/evac, /turf/simulated/wall/r_wall, /area/tether/surfacebase/security/lobby) -"Wf" = ( +"aWf" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/techfloor/grid, /area/vacant/vacant_site2) -"Wg" = ( +"aWg" = ( /obj/structure/sign/directions/evac{ dir = 8 }, /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"Wh" = ( +"aWh" = ( /obj/structure/sign/directions/medical{ dir = 4; pixel_y = 8 @@ -29094,7 +28271,7 @@ }, /turf/simulated/wall, /area/tether/surfacebase/medical/lobby) -"Wi" = ( +"aWi" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29110,49 +28287,8 @@ pixel_y = 30 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wj" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/atm{ - pixel_y = 31 - }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wl" = ( +/area/tether/surfacebase/surface_three_hall) +"aWl" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29173,8 +28309,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wm" = ( +/area/tether/surfacebase/surface_three_hall) +"aWm" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29188,8 +28324,8 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wn" = ( +/area/tether/surfacebase/surface_three_hall) +"aWn" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29201,8 +28337,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wo" = ( +/area/tether/surfacebase/surface_three_hall) +"aWo" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29217,8 +28353,8 @@ pixel_y = 32 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wp" = ( +/area/tether/surfacebase/surface_three_hall) +"aWp" = ( /obj/machinery/alarm{ pixel_y = 22 }, @@ -29233,8 +28369,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wq" = ( +/area/tether/surfacebase/surface_three_hall) +"aWq" = ( /obj/machinery/firealarm{ dir = 2; layer = 3.3; @@ -29252,22 +28388,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wr" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, -/turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ws" = ( +/area/tether/surfacebase/surface_three_hall) +"aWs" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29285,8 +28407,8 @@ pixel_y = 26 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wt" = ( +/area/tether/surfacebase/surface_three_hall) +"aWt" = ( /obj/effect/floor_decal/corner/red{ dir = 1 }, @@ -29305,8 +28427,8 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wu" = ( +/area/tether/surfacebase/surface_three_hall) +"aWu" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29326,16 +28448,16 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wv" = ( +/area/tether/surfacebase/surface_three_hall) +"aWv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Ww" = ( +/area/tether/surfacebase/surface_three_hall) +"aWw" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29356,8 +28478,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wx" = ( +/area/tether/surfacebase/surface_three_hall) +"aWx" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29369,8 +28491,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"Wy" = ( +/area/tether/surfacebase/surface_three_hall) +"aWy" = ( /obj/machinery/sleeper{ dir = 8 }, @@ -29383,7 +28505,7 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Wz" = ( +"aWz" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29398,8 +28520,8 @@ pixel_y = 31 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WA" = ( +/area/tether/surfacebase/surface_three_hall) +"aWA" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/borderfloor{ @@ -29413,8 +28535,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WB" = ( +/area/tether/surfacebase/surface_three_hall) +"aWB" = ( /obj/machinery/light{ dir = 1 }, @@ -29429,8 +28551,8 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WC" = ( +/area/tether/surfacebase/surface_three_hall) +"aWC" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29445,14 +28567,14 @@ }, /obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WD" = ( +/area/tether/surfacebase/surface_three_hall) +"aWD" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WE" = ( +/area/tether/surfacebase/surface_three_hall) +"aWE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -29460,8 +28582,8 @@ dir = 5 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WF" = ( +/area/tether/surfacebase/surface_three_hall) +"aWF" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29469,8 +28591,8 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WG" = ( +/area/tether/surfacebase/surface_three_hall) +"aWG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29480,15 +28602,15 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WH" = ( +/area/tether/surfacebase/surface_three_hall) +"aWH" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WI" = ( +/area/tether/surfacebase/surface_three_hall) +"aWI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29498,13 +28620,13 @@ /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WJ" = ( +/area/tether/surfacebase/surface_three_hall) +"aWJ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WK" = ( +/area/tether/surfacebase/surface_three_hall) +"aWK" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 1 }, @@ -29520,8 +28642,8 @@ name = "lightsout" }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WL" = ( +/area/tether/surfacebase/surface_three_hall) +"aWL" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/manifold/hidden/supply, /obj/structure/disposalpipe/segment{ @@ -29531,20 +28653,21 @@ dir = 4 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WM" = ( +/area/tether/surfacebase/surface_three_hall) +"aWM" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 }, +/obj/structure/disposalpipe/junction{ + dir = 8; + icon_state = "pipe-j2" + }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WN" = ( +/area/tether/surfacebase/surface_three_hall) +"aWN" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29559,8 +28682,8 @@ pixel_y = -25 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WO" = ( +/area/tether/surfacebase/surface_three_hall) +"aWO" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29571,21 +28694,21 @@ }, /obj/machinery/light, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WP" = ( +/area/tether/surfacebase/surface_three_hall) +"aWP" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 6 }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"WQ" = ( +"aWQ" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"WR" = ( +"aWR" = ( /obj/structure/table/standard, /obj/item/weapon/gun/energy/taser/xeno, /obj/item/weapon/melee/baton/slime/loaded, @@ -29596,7 +28719,7 @@ }, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"WS" = ( +"aWS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29608,8 +28731,8 @@ /obj/machinery/door/airlock/glass, /obj/machinery/door/firedoor/glass, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WT" = ( +/area/tether/surfacebase/surface_three_hall) +"aWT" = ( /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, @@ -29619,8 +28742,8 @@ /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WU" = ( +/area/tether/surfacebase/surface_three_hall) +"aWU" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29633,8 +28756,8 @@ dir = 1 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WV" = ( +/area/tether/surfacebase/surface_three_hall) +"aWV" = ( /obj/effect/floor_decal/borderfloor/corner, /obj/effect/floor_decal/corner/lightgrey/bordercorner, /obj/effect/floor_decal/steeldecal/steel_decals7{ @@ -29644,8 +28767,8 @@ dir = 9 }, /turf/simulated/floor/tiled, -/area/tether/surfacebase/atrium_three) -"WW" = ( +/area/tether/surfacebase/surface_three_hall) +"aWW" = ( /obj/structure/bed/chair{ dir = 8 }, @@ -29671,13 +28794,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/processing) -"WX" = ( +"aWX" = ( /obj/structure/cable/green{ icon_state = "2-4" }, /turf/simulated/floor/tiled/techfloor/grid, /area/tether/surfacebase/security/lobby) -"WY" = ( +"aWY" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, @@ -29689,7 +28812,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"WZ" = ( +"aWZ" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable/green{ icon_state = "2-4" @@ -29701,7 +28824,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/upperhall) -"Xa" = ( +"aXa" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 }, @@ -29720,7 +28843,7 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/lobby) -"Xb" = ( +"aXb" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/closet/wardrobe/red, /obj/item/device/radio/intercom/department/security{ @@ -29731,7 +28854,7 @@ }, /turf/simulated/floor/tiled/dark, /area/tether/surfacebase/security/armory) -"Xc" = ( +"aXc" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 4 @@ -29741,13 +28864,13 @@ }, /turf/simulated/floor/tiled, /area/tether/surfacebase/security/common) -"Xd" = ( +"aXd" = ( /obj/random/maintenance/security, /obj/random/mre/dessert, /obj/item/toy/bosunwhistle, /turf/simulated/floor/plating, /area/vacant/vacant_site2) -"Xe" = ( +"aXe" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 }, @@ -29767,13 +28890,13 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xf" = ( +"aXf" = ( /obj/structure/bookcase{ name = "bookcase (Adult)" }, /turf/simulated/floor/wood, /area/library) -"Xg" = ( +"aXg" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 }, @@ -29782,7 +28905,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xh" = ( +"aXh" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29791,7 +28914,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xi" = ( +"aXi" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -29801,7 +28924,7 @@ /obj/machinery/light/small, /turf/simulated/floor/wood, /area/library) -"Xj" = ( +"aXj" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 }, @@ -29810,7 +28933,7 @@ }, /turf/simulated/floor/wood, /area/library) -"Xk" = ( +"aXk" = ( /obj/structure/sign/directions/medical{ dir = 1; icon_state = "direction_med"; @@ -29832,7 +28955,7 @@ }, /turf/simulated/wall, /area/library) -"Xl" = ( +"aXl" = ( /obj/machinery/door/firedoor/glass, /obj/effect/floor_decal/steeldecal/steel_decals_central1{ dir = 4 @@ -29846,7 +28969,7 @@ dir = 4 }, /area/library) -"Xm" = ( +"aXm" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29869,36 +28992,21 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xn" = ( -/obj/machinery/door/window/northright{ - dir = 2; - name = "Library Desk Door"; - req_access = list(37) - }, -/obj/machinery/camera/network/civilian{ +"aXo" = ( +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/turf/simulated/floor/carpet, -/area/library) -"Xo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + icon_state = "2-4" }, -/obj/machinery/hologram/holopad, -/turf/simulated/floor/wood, -/area/library) -"Xp" = ( -/obj/structure/table/woodentable, -/obj/item/device/flashlight/lamp/green{ - pixel_x = 1; - pixel_y = 5 - }, -/obj/machinery/camera/network/civilian{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /turf/simulated/floor/wood, /area/library) -"Xq" = ( +"aXq" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29921,7 +29029,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xr" = ( +"aXr" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29932,7 +29040,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xs" = ( +"aXs" = ( /obj/structure/disposalpipe/segment{ dir = 4 }, @@ -29946,7 +29054,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xt" = ( +"aXt" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 }, @@ -29973,7 +29081,7 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xu" = ( +"aXu" = ( /obj/structure/cable/green{ d1 = 4; d2 = 8; @@ -29983,7 +29091,7 @@ /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xv" = ( +"aXv" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, @@ -30000,20 +29108,20 @@ }, /turf/simulated/floor/tiled, /area/hallway/lower/third_south) -"Xw" = ( +"aXw" = ( /obj/item/device/radio/intercom{ pixel_x = 0; pixel_y = -28 }, /turf/simulated/floor/wood, /area/library) -"Xx" = ( +"aXx" = ( /obj/structure/closet/hydrant{ pixel_x = 32 }, /turf/simulated/floor/wood, /area/library) -"Xy" = ( +"aXy" = ( /obj/structure/table/standard, /obj/item/weapon/gun/energy/taser/xeno, /obj/machinery/recharger/wallcharger{ @@ -30023,7 +29131,7 @@ /obj/item/weapon/melee/baton/slime/loaded, /turf/simulated/floor/tiled/techmaint, /area/rnd/outpost/xenobiology/outpost_storage) -"Xz" = ( +"aXz" = ( /obj/machinery/power/apc{ dir = 4; name = "east bump"; @@ -30039,7 +29147,7 @@ /obj/machinery/disposal, /turf/simulated/floor/wood, /area/rnd/outpost/xenobiology/outpost_office) -"XA" = ( +"aXA" = ( /obj/machinery/light{ icon_state = "tube1"; dir = 4 @@ -30051,7 +29159,33 @@ }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"XF" = ( +"aXC" = ( +/obj/structure/bed/chair/office/dark{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/effect/landmark/start{ + name = "Librarian" + }, +/turf/simulated/floor/wood, +/area/library) +"aXE" = ( +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 2; + pixel_y = -28 + }, +/turf/simulated/floor/wood, +/area/library) +"aXF" = ( /obj/machinery/power/apc{ dir = 2; name = "south bump"; @@ -30060,19895 +29194,22093 @@ /obj/structure/cable/green, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"Zf" = ( +"aXG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXH" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/machinery/light/small{ + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/implantcase/chem, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXI" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/random/tech_supply, +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXJ" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/steel, +/obj/item/weapon/locator, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXK" = ( +/obj/machinery/hologram/holopad, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aXL" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXM" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/mauve/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aXN" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXO" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXP" = ( +/obj/structure/disposalpipe/up{ + dir = 8 + }, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXQ" = ( +/obj/effect/decal/cleanable/dirt, +/obj/effect/floor_decal/rust, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXR" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/decal/cleanable/dirt, +/turf/simulated/floor/plating, +/area/rnd/research_storage) +"aXS" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aXT" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/rnd/research/researchdivision) +"aXU" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/item/device/radio/intercom{ + dir = 1; + pixel_y = 24; + req_access = list() + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/mauve/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 4 + }, +/obj/effect/floor_decal/corner/mauve/bordercorner2{ + dir = 4 + }, +/obj/structure/disposalpipe/trunk{ + dir = 8 + }, +/obj/machinery/disposal, +/turf/simulated/floor/tiled, +/area/rnd/research/testingrange) +"aXV" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/firstaid/regular, +/obj/item/device/radio{ + pixel_x = 2; + pixel_y = 3 + }, +/obj/item/device/radio, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/light_switch{ + pixel_x = 12; + pixel_y = 25 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXW" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aXX" = ( +/obj/structure/filingcabinet/filingcabinet, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXY" = ( +/obj/item/device/aicard, +/obj/item/weapon/storage/box/PDAs{ + pixel_x = 4; + pixel_y = 4 + }, +/obj/item/weapon/storage/box/ids, +/obj/structure/table/reinforced, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aXZ" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYa" = ( +/obj/structure/closet, +/obj/item/weapon/reagent_containers/food/drinks/bottle/orangejuice, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/obj/random/maintenance/clean, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYb" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYc" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/obj/structure/cable/green{ + d2 = 8; + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aYd" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/random/junk, +/obj/effect/floor_decal/techfloor{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYe" = ( +/obj/effect/floor_decal/techfloor{ + dir = 4 + }, +/obj/effect/floor_decal/techfloor/hole/right{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYf" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYg" = ( +/obj/machinery/computer/card{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYh" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYi" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/storage/box/donut, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYj" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYk" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/techfloor, +/area/vacant/vacant_shop) +"aYl" = ( +/obj/structure/lattice, +/obj/structure/disposalpipe/down, +/obj/structure/cable/green{ + d1 = 32; + d2 = 8; + icon_state = "32-8" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 8 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 8 + }, +/turf/simulated/open, +/area/vacant/vacant_shop) +"aYm" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYn" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_x = 0; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aYo" = ( +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYp" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYq" = ( +/obj/structure/dogbed, +/mob/living/simple_mob/animal/passive/dog/corgi/Ian, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aYr" = ( +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYs" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYt" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Bridge" + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYu" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYv" = ( +/obj/structure/table/reinforced, +/obj/machinery/recharger{ + pixel_x = 8; + pixel_y = 0 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/machinery/button/remote/blast_door{ + id = "bridge blast"; + name = "Bridge Blastdoors"; + pixel_x = -6; + pixel_y = 6 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYw" = ( +/obj/machinery/photocopier, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYx" = ( +/obj/machinery/computer/transhuman/resleeving{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYy" = ( +/obj/structure/bed/chair/office/dark, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYz" = ( +/obj/machinery/computer/crew{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYA" = ( +/obj/machinery/computer/supplycomp{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYB" = ( +/obj/machinery/computer/security{ + dir = 8 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYC" = ( +/obj/machinery/computer/station_alert{ + icon_state = "computer"; + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYD" = ( +/obj/machinery/computer/power_monitor{ + icon_state = "computer"; + dir = 8; + throwpass = 1 + }, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYE" = ( +/obj/effect/floor_decal/corner/paleblue/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYF" = ( +/obj/machinery/computer/med_data{ + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYG" = ( +/obj/effect/floor_decal/corner/paleblue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYH" = ( +/obj/effect/floor_decal/corner/blue/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYI" = ( +/obj/structure/bed/chair/office/dark, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYJ" = ( +/obj/effect/floor_decal/corner/blue/full{ + icon_state = "corner_white_full"; + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYK" = ( +/obj/effect/floor_decal/corner/yellow/full, +/obj/structure/flora/pottedplant{ + icon_state = "plant-21" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYL" = ( +/obj/machinery/computer/rcon{ + icon_state = "computer"; + dir = 1 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYM" = ( +/obj/effect/floor_decal/corner/yellow/full{ + dir = 4 + }, +/obj/structure/flora/pottedplant{ + icon_state = "plant-10" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aYO" = ( +/turf/simulated/wall/r_wall, +/area/maintenance/commandmaint) +"aYP" = ( +/obj/effect/floor_decal/industrial/warning, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYQ" = ( +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYR" = ( +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYS" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYT" = ( +/turf/simulated/open, +/area/bridge_hallway) +"aYU" = ( +/obj/structure/railing{ + dir = 4 + }, +/turf/simulated/open, +/area/bridge_hallway) +"aYV" = ( +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aYW" = ( +/obj/structure/bed/chair/comfy/brown, +/obj/effect/landmark/start{ + name = "Head of Personnel" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aYX" = ( +/obj/effect/landmark{ + name = "lightsout" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYY" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aYZ" = ( +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/obj/machinery/hologram/holopad, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZa" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZb" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/clipboard, +/obj/item/weapon/stamp/hop, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/flashlight/lamp/green{ + pixel_x = -10 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZc" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 26 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZe" = ( +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/tiled/dark, +/area/bridge_hallway) +"aZf" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 1 }, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) -"ZK" = ( +"aZh" = ( +/obj/machinery/door/airlock/glass_command{ + name = "Bridge"; + req_access = list(19) + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZi" = ( +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/zpipe/down/supply{ + icon_state = "down-supply"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers{ + icon_state = "down-scrubbers"; + dir = 4 + }, +/obj/machinery/light/small{ + dir = 8; + pixel_x = 0 + }, +/obj/structure/cable/green{ + d1 = 32; + d2 = 4; + icon_state = "32-4" + }, +/turf/simulated/open, +/area/maintenance/commandmaint) +"aZj" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = 8; + pixel_y = -26 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZk" = ( +/obj/structure/closet/wardrobe/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZl" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZm" = ( +/obj/item/clothing/glasses/omnihud/all, +/obj/structure/closet/secure_closet/captains, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZn" = ( +/obj/structure/table/reinforced, +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/machinery/recharger{ + pixel_y = 0 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZo" = ( +/obj/structure/table/reinforced, +/obj/item/device/megaphone, +/obj/item/weapon/book/manual/command_guide, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = 32 + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZp" = ( +/obj/structure/closet/secure_closet/hop, +/obj/item/clothing/glasses/omnihud, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZq" = ( +/obj/structure/closet/secure_closet/hop2, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZr" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZs" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/plating, +/area/maintenance/commandmaint) +"aZt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZu" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/flame/candle, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZv" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/door/airlock/command{ + name = "Head of Personnel"; + req_access = list(57) + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/steel_grid, +/area/crew_quarters/heads/hop) +"aZw" = ( +/obj/item/weapon/bedsheet/captain, +/obj/structure/bed/padded, +/obj/machinery/alarm{ + dir = 4; + icon_state = "alarm0"; + pixel_x = -22; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZx" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZy" = ( +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZz" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZA" = ( +/obj/structure/disposalpipe/junction{ + dir = 1; + icon_state = "pipe-j2" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZB" = ( +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZC" = ( +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZD" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/window/reinforced/polarized{ + icon_state = "rwindow"; + dir = 4; + id = "iaa_office" + }, +/obj/structure/cable/green{ + icon_state = "0-1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"aZE" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZF" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 8 + }, +/obj/structure/window/basic, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZG" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aZH" = ( +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/obj/structure/cable/green, +/obj/machinery/door/blast/shutters{ + dir = 4; + id = "cap_office"; + layer = 3.1; + name = "Colony Directo's Shutters" + }, +/turf/simulated/floor/plating, +/area/crew_quarters/captain) +"aZI" = ( +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZJ" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/storage/photo_album{ + pixel_y = -10 + }, +/obj/item/weapon/reagent_containers/food/drinks/flask{ + pixel_x = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZK" = ( /obj/machinery/sleep_console, /obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/white, /area/rnd/outpost/xenobiology/outpost_first_aid) +"aZL" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZM" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZN" = ( +/obj/structure/table/reinforced, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Personnel's Office" + }, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZO" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"aZP" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen/multi, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hop) +"aZQ" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/structure/window/reinforced/polarized/full{ + id = "hop_office" + }, +/obj/structure/window/reinforced/polarized{ + icon_state = "rwindow"; + dir = 4; + id = "iaa_office" + }, +/obj/structure/cable/green, +/obj/structure/cable/green{ + icon_state = "0-1"; + dir = 1 + }, +/turf/simulated/floor/plating, +/area/crew_quarters/heads/hop) +"aZR" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/window/basic{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZS" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"aZT" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/landmark{ + name = "lightsout" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZU" = ( +/obj/structure/table/woodentable, +/obj/machinery/computer/skills{ + icon_state = "laptop"; + dir = 8 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZV" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/melee/chainofcommand, +/obj/item/weapon/coin/phoron{ + desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; + name = "limited edition phoron coin" + }, +/obj/item/weapon/folder/blue_captain, +/obj/item/weapon/stamp/captain, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZW" = ( +/obj/machinery/door/airlock/command{ + name = "Colony Director's Quarters"; + req_access = list(20) + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"aZY" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"aZZ" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baa" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bab" = ( +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -30 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bac" = ( +/obj/machinery/requests_console{ + announcementConsole = 1; + department = "Bridge"; + departmentType = 5; + name = "Bridge RC"; + pixel_y = 32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bad" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bae" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"baf" = ( +/obj/structure/table/rack, +/obj/item/weapon/tank/jetpack/oxygen, +/obj/item/clothing/mask/gas, +/obj/item/clothing/suit/armor/captain, +/obj/item/clothing/head/helmet/space/capspace, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 + }, +/obj/item/weapon/card/id/gold/captain/spare, +/obj/machinery/door/window/brigdoor/westright{ + dir = 4; + name = "Colony Director's Storage"; + req_access = list(20) + }, +/obj/structure/window/reinforced{ + dir = 8; + health = 1e+006 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bag" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bai" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/light/small{ + icon_state = "bulb1"; + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baj" = ( +/obj/structure/displaycase, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bak" = ( +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled/dark, +/area/bridge) +"bal" = ( +/obj/machinery/hologram/holopad, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bam" = ( +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"ban" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bao" = ( +/obj/structure/bed/chair/office/dark{ + dir = 4 + }, +/obj/machinery/button/windowtint{ + id = "hop_office"; + layer = 3.3; + pixel_x = 3; + pixel_y = -29 + }, +/obj/machinery/button/remote/blast_door{ + desc = "A remote control-switch for shutters."; + id = "hop_office_desk"; + layer = 3.3; + name = "Desk Privacy Shutter"; + pixel_x = 10; + pixel_y = -29 + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bap" = ( +/obj/structure/table/reinforced, +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baq" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bar" = ( +/obj/machinery/computer/communications, +/obj/machinery/light/small{ + dir = 8 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bas" = ( +/obj/structure/table/woodentable, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue, +/obj/item/device/flashlight/lamp/green, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bat" = ( +/obj/machinery/hologram/holopad, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bau" = ( +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Captain's Office" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bav" = ( +/obj/machinery/photocopier, +/obj/machinery/firealarm{ + pixel_x = -30 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baw" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"bax" = ( +/obj/machinery/account_database, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bay" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" + }, +/turf/simulated/floor/plating, +/area/bridge) +"baz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baA" = ( +/obj/structure/grille, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/blast/regular{ + density = 0; + dir = 4; + icon_state = "pdoor0"; + id = "bridge blast"; + name = "Bridge Blast Doors"; + opacity = 0 + }, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/cable/green{ + icon_state = "0-8" + }, +/turf/simulated/floor/plating, +/area/bridge) +"baB" = ( +/obj/structure/disposalpipe/sortjunction{ + dir = 4; + icon_state = "pipe-j1s"; + name = "Command Meeting Room"; + sortType = "Command Meeting Room" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/assembly/robotics) +"baE" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baG" = ( +/obj/structure/bed/chair/comfy/brown{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baH" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baI" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baJ" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baK" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + icon_state = "map-scrubbers"; + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baL" = ( +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/window/basic{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baM" = ( +/obj/structure/table/woodentable, +/obj/machinery/recharger{ + pixel_y = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/item/device/perfect_tele{ + desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it."; + name = "director's translocator" + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"baN" = ( +/obj/machinery/papershredder, +/obj/machinery/alarm{ + dir = 4; + pixel_x = -23; + pixel_y = 0 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baQ" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baR" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baT" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/window/basic{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"baU" = ( +/obj/structure/table/reinforced, +/obj/machinery/computer/skills, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baV" = ( +/obj/machinery/computer/card, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"baX" = ( +/obj/machinery/firealarm{ + pixel_x = -30 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bba" = ( +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbb" = ( +/obj/structure/bookcase, +/obj/item/weapon/book/manual/security_space_law, +/obj/item/weapon/book/manual/standard_operating_procedure, +/obj/item/weapon/book/manual/command_guide, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbc" = ( +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbi" = ( +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/light, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbj" = ( +/obj/effect/floor_decal/industrial/loading{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbp" = ( +/obj/structure/filingcabinet/chestdrawer, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbq" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbs" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbt" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbu" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/bed/chair/wood{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbv" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/machinery/vending/snack, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbw" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bbx" = ( +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/blue_hop, +/obj/item/weapon/pen, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/light_switch{ + dir = 1; + pixel_x = -8; + pixel_y = -26 + }, +/turf/simulated/floor/tiled, +/area/crew_quarters/heads/hop) +"bby" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbA" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/structure/window/basic{ + dir = 1 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbB" = ( +/obj/structure/disposalpipe/sortjunction/flipped{ + dir = 1; + name = "HoP Office"; + sortType = "HoP Office" + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbC" = ( +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbD" = ( +/obj/structure/disposalpipe/segment, +/obj/machinery/light/small{ + dir = 4 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbE" = ( +/obj/structure/dogbed, +/obj/structure/curtain/open/bed, +/mob/living/simple_mob/animal/passive/fox/renault, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bbF" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/corner/blue/border{ + icon_state = "bordercolor"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bbH" = ( +/obj/machinery/alarm{ + alarm_id = "pen_nine"; + breach_detection = 0; + dir = 1; + icon_state = "alarm0"; + pixel_y = -22 + }, +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/captain) +"bcY" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/corner/blue/bordercorner{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bdD" = ( +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey{ + dir = 6 + }, +/obj/structure/extinguisher_cabinet{ + dir = 2; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) +"bdX" = ( +/obj/structure/disposalpipe/segment, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/corner/blue/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 8 + }, +/turf/simulated/floor/tiled, +/area/tether/surfacebase/surface_three_hall) (1,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} (2,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (3,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (4,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (5,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (6,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (7,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (8,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (9,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (10,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (11,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (12,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (13,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (14,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (15,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (16,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (17,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (18,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (19,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (20,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (21,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (22,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -dG -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (23,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -dG -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (24,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -dH -el -eX -eX -gt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adH +ael +aeX +aeX +agt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (25,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -dI -em -ab -ab -gu -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adI +aem +aab +aab +agu +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (26,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dJ -en -eY -eY -gv -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adJ +aen +aeY +aeY +agv +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (27,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (28,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Ff -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (29,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Ff -Fh -Ff -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFf +aFh +aFf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (30,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Ff -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -MG -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aMG +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (31,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -dG -Np -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -Np -dG -dG -dG -dG -dG -dG -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aQD +adG +adG +adG +adG +adG +adG +adG +adG +aQD +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (32,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -dG -OR -Pd -Pv -Pv -Pv -Pv -Pv -Pv -QQ -Ra -Ra -Ra -Ra -Ra -RW -Sj -SA -SA -SA -SA -SA -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aPd +aPv +aPv +aPv +aPv +aPv +aPv +aQQ +aRa +aRa +aRa +aRa +aRa +aRW +aSj +aSA +aSA +aSA +aSA +aSA +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (33,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -rW -Dq -Dq -rW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -dG -OR -Pe -Pw -PN -Qb -Ql -Qx -QH -Mn -Ra -OV -Pf -Nd -Ra -RX -PF -SA -MJ -Ta -QR -SA -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +aDq +aDq +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aAt +aPw +aPN +aQb +aQl +aQx +aQH +aMn +aRa +aOV +aPf +aNd +aRa +aRX +aPF +aSA +aQR +aTa +aRY +aSA +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (34,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -CZ -rW -Da -Da -rW -DQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -dG -OR -BT -Px -PO -PO -PO -Qy -QI -QS -Ra -Rh -Ru -RI -RO -RY -Sl -SD -SQ -Tf -Zf -Tx -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +arW +aDa +aDa +arW +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +adG +aOR +aBT +aPx +aPO +aPO +aPO +aQy +aQI +aQS +aRa +aBu +aRu +aRI +aRO +aSx +aSl +aSD +aSQ +aTf +aZf +aTx +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (35,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -CZ -Dc -Di -De -De -iF -Dc -DQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -MG -MG -On -dG -OR -Pg -Py -PO -TA -PO -Qy -QJ -PO -Rb -Ri -Rg -Ri -RP -RZ -Jy -Kz -Li -Wy -XF -SA -dG -Os -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +aDc +aDi +aDe +aDe +aiF +aDc +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aMG +aMG +aOn +adG +aOR +aPg +aPy +aPO +aTA +aPO +aQy +aQJ +aPO +aRb +aRi +aRg +aRi +aRP +aRZ +aJy +aKz +aLi +aWy +aXF +aSA +adG +aOs +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (36,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -CZ -Dc -Df -De -Dj -DA -De -Df -Dc -DQ -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -MG -MG -MG -MG -MG -MG -NU -dG -dG -dG -dG -OR -Ph -Pz -PO -PO -Qm -Qz -QK -QT -Ra -RH -Rj -Rv -Ra -Sa -Jz -KA -Lk -ZK -WQ -Tx -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCZ +aDc +aDf +aDe +aDj +aDA +aDe +aDf +aDc +aDQ +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aMG +aMG +aMG +aMG +aMG +aMG +aNU +adG +adG +aQD +adG +aOR +aPh +aPz +aPO +aPO +aQm +aQz +aQK +aQT +aRa +aRH +aRj +aRv +aRa +aSa +aJz +aKA +aLk +aZK +aWQ +aTx +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (37,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -rW -rW -Dd -Df -Dj -Dr -DB -DJ -Df -DT -rW -rW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -Np -dG -dG -dG -dG -Of -Of -Of -Of -Of -Mm -PO -Qc -Qo -QL -Xz -QU -Ra -MM -Rx -PA -Ra -MK -Mq -SB -PV -Te -XA -SA -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +arW +arW +aDd +aDf +aDj +aDr +aDB +aDJ +aDf +aDT +arW +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +adG +adG +adG +adG +aOf +aOf +aOf +aOf +aOf +aMm +aPO +aQc +aQo +aQL +aXz +aAk +aRa +aMM +aRx +aPA +aRa +aMK +aMq +aSB +aPV +aBM +aXA +aSA +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (38,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -CY -Da -De -Dg -Dk -Ds -Ds -DK -DA -De -Da -DP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cj -lH -lH -lH -GL -HE -cj -cj -HE -cj -cj -HE -GL -cj -HE -cj -cj -HE -cj -NV -NZ -Of -Oo -HM -Oq -Of -OR -PP -OR -Qq -OR -OR -OR -Ra -Rl -Ry -Ra -RQ -Sc -JA -CO -CO -CO -CO -CO -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDa +aDe +aDg +aDk +aDs +aDs +aDK +aDA +aDe +aDa +aDP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +alH +alH +alH +aGL +aHE +acj +acj +aHE +acj +acj +aHE +aGL +acj +aHE +acj +acj +aHE +acj +aNV +aNZ +aOf +aOo +aHM +aBJ +aOf +aOR +aPP +aOR +aQq +aOR +aOR +aOR +aRa +aRl +aRy +aRa +aRQ +aSc +aSd +aCO +aCO +aCO +aCO +aCO +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (39,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -CY -Da -De -Dh -Dl -Ds -Ds -DL -DR -De -Da -DP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cj -cm -BV -Cc -Gt -Cc -Ip -IW -Cc -Cc -BV -Cc -LL -IW -Cc -Mi -Cc -Cc -No -NS -Et -Go -Op -Op -Op -Ir -IX -QM -Qe -QA -QB -QM -QM -Mo -Rm -Rz -PQ -RR -Sd -JD -LR -Oh -LM -Ml -NR -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDa +aDe +aDh +aDl +aDs +aDs +aDL +aDR +aDe +aDa +aDP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +amu +aBV +aCc +aGt +aCc +aIp +aIW +aCc +aCc +aBV +aCc +aCc +aIW +aCc +aMi +aCc +aCc +axP +aNS +aEt +aGo +aOp +aOp +aOp +aIr +aIX +aQM +aQe +aQA +aQB +aQM +aEf +aMo +aQM +aRz +aPQ +aRR +aJA +aSg +aLR +aOh +aLM +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (40,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -rW -rW -Dd -Df -Dm -Dt -DC -DM -Df -DT -rW -rW -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ad -cj -kW -FK -BZ -Gr -Vp -Vp -Vp -IY -Vp -HF -JC -LN -Jx -Vp -Vp -Vp -Vp -JE -OD -Ey -Pj -KB -OE -Lj -Pj -IZ -PR -Qn -Rc -QC -QC -QC -QC -PR -Ro -QC -RS -Se -Qd -Sr -LP -Ml -Ml -NR -CO -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +arW +aDd +aDf +aDm +aDt +aDC +aDM +aDf +aDT +arW +arW +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +akW +aFK +aBZ +aGr +aVp +aVp +aVp +aIY +aVp +aHF +aJC +aLN +aJx +aVp +aVp +aVp +aVp +aJE +aOD +aEy +aPj +aKB +aOE +aLj +aPj +aIZ +aPR +aQn +aRc +aQC +aQC +aQC +aQC +aPR +aRo +aQC +aRS +aSe +aFF +aSr +aBf +aMl +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (41,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -Db -Dc -Df -Dn -Du -DD -DN -Df -Dc -DS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -cj -oW -Cm -wh -GM -Nn -Iq -JB -Nn -Nn -sf -Nn -Nn -Nn -Mk -MH -Nc -Nn -NA -Or -Et -Gs -KC -Op -Mj -Is -Ja -QM -Qf -Qr -PS -QM -QM -Mp -QM -Qp -PS -RR -Sd -Ss -Es -LQ -NQ -Ml -NR -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +aDc +aDf +aDn +aDu +aDD +aDN +aDf +aDc +aDS +aac +aac +aac +aac +aQU +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +acj +aoW +aCm +awh +aGM +aNn +aEw +aJB +aNn +aNn +asf +aNn +aNn +aul +aNn +aMH +aNc +aNn +aNA +aOr +aEt +aGs +aKC +aOp +aMj +aIs +aJa +aQM +ayw +aQr +aPS +aQM +aQM +aMp +aQM +aQp +aPS +aRR +aJD +aSs +aEs +aLQ +aNQ +aMl +aNR +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (42,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Db -Dc -Do -Dv -DE -DO -Dc -DS -ac -ac -gw -gw -gw -gw -kS -lw -lw -lw -kS -kS -kS -lw -lw -lw -kS -kS -kS -rU -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qw -FL -BK -iE -GO -cj -cj -cj -GO -cj -cj -cj -GO -cj -cj -cj -NL -cj -NV -NZ -Of -HG -HS -HU -Of -PE -PT -OW -Qs -OW -OW -OW -Re -Rn -RB -Re -RT -Sc -St -CO -CO -CO -CO -CO -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +aDc +acm +aDv +aDE +aDO +aDc +aDS +aac +aac +agw +agw +agw +agw +akS +alw +alw +alw +akS +akS +akS +alw +alw +alw +akS +akS +akS +arU +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqw +aFL +aBK +aiE +aGO +acj +acj +aGO +acj +acj +aGO +acj +acj +aGO +acj +acj +aNL +acj +aNV +aNZ +aOf +auz +aHS +aHU +aOf +aPE +aPT +aOW +aQs +aOW +aOW +aOW +aRe +aRn +aRB +aRe +aRT +aSc +aSt +aCO +aCO +aCO +aCO +aCO +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (43,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Db -rW -Dw -DF -rW -DS -ac -ac -ac -gw -ip -jt -kl -kS -lx -mm -mM -nv -nZ -oq -mM -pm -mM -qr -rc -rv -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qA -zN -Fp -GN -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -dG -dG -dG -dG -dG -Of -Of -Of -Of -Of -PB -PU -Qg -Qt -QD -QN -QV -Re -NT -RC -ML -Re -MK -Sv -SI -Rk -Th -Rw -SI -CO -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aDb +arW +aDw +aDF +arW +aDS +aac +aac +aac +agw +aip +ajt +akl +akS +alx +amm +amM +anv +anZ +aoq +amM +apm +amM +aqr +arc +arv +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqA +aqz +aFp +aGN +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +adG +adG +adG +adG +adG +aOf +aOf +aOf +aOf +aOf +aPB +aPU +aQg +aQt +azr +aQN +aQV +aRe +aNT +aRC +aML +aRe +aMK +aSv +aSI +aRk +aBa +aRw +aSI +aCO +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (44,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -CY -Dx -DG -DP -ac -ac -ac -ac -gw -iq -ju -km -kS -ly -mn -mN -mN -mN -mN -mN -pn -pI -pI -rd -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qC -BQ -FJ -GP -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -NB -NM -NM -NW -dG -dG -dG -dG -OW -Pk -PG -Jb -Qh -Qu -QE -QO -QW -Re -Rp -RD -RL -Re -Sa -Sv -SJ -SW -Ti -WR -SI -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDx +aDG +aDP +aac +aac +aac +aac +agw +aiq +aju +akm +akS +aly +amn +amN +amN +amN +amN +amN +apn +apI +apI +ard +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqC +aBQ +aFJ +aGP +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aNB +aNM +aNM +aNW +adG +adG +aRh +adG +aOW +aAO +aPG +aJb +aQh +aQu +aQE +aQO +aDU +aRe +aMJ +aRD +aRL +aRe +aSa +aSv +aSJ +aSW +aTi +aWR +aSI +adG +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (45,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -CY -Dy -DH -DP -ac -ad -gw -gw -gw -ir -jv -kn -kS -lz -mo -mO -nw -nw -nw -nw -nw -nw -qs -re -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qF -BN -Cd -iE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -NC -ab -ab -ab -NM -NM -Ot -dG -OX -Pl -PH -PW -Qi -Qv -QP -QP -Qj -Rf -Rq -RE -Rq -RU -Sf -Sw -LO -SX -Rd -Xy -SI -dG -OF -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aCY +aDy +aDH +aDP +aac +aac +agw +agw +agw +air +ajv +akn +akS +ahq +amo +amO +anw +anw +anw +anw +anw +anw +aqs +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQW +aiE +aqF +aBN +aCd +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aNC +aab +aab +aab +aNM +aNM +aOt +adG +aOX +aPl +aPH +aPW +aQi +aQv +aQP +aQP +aQj +aRf +aRq +aRE +aRq +aRU +aSf +aSw +aLO +aSX +aRd +aXy +aSI +adG +aOF +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (46,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -rW -Dz -Dz -rW -ac -ac -gw -hd -hS -is -jw -ko -kS -lA -mp -mP -nx -nx -nx -nx -nx -nx -qt -re -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -qx -wb -Gl -iE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -dG -ND -MG -MG -MG -MG -ab -Om -dG -OY -Pm -PI -PX -TB -Qj -QG -QG -Tu -Re -Rr -RF -RM -Re -Sg -Sx -SJ -SY -Tk -Tv -SI -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arW +aDz +aDz +arW +aac +aac +agw +ahd +ahS +ais +ajw +akn +akS +alA +amp +amP +anx +anx +anx +anx +anx +anx +aqt +are +aMI +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +aqx +awb +ang +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +adG +aND +aMG +aMG +aMG +aMG +aab +aOm +adG +aOY +aPm +aPI +aPX +aTB +aQj +aQG +aQG +azU +aRe +aRr +aRF +aRp +aRe +aSl +aSx +aSJ +aSY +aTk +aDo +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (47,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -gw -gw -gw -it -jx -kn -kS -lB -mp -mP -nx -nx -nx -nx -nx -nx -qt -re -rw -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -sd -BQ -Gn -iE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -Np -dG -dG -dG -dG -dG -Oi -Om -dG -OZ -Pn -PJ -PY -Qk -Qw -Qj -Qj -QY -Re -Rs -OG -OS -RV -Sh -Sy -SI -Tt -Rt -RA -SI -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +agw +agw +agw +ait +ajx +akn +akS +alB +amp +amP +anx +anx +anx +anx +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +asd +aBQ +aGn +aiE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aQU +adG +adG +adG +adG +adG +adG +aOi +aOm +adG +aOZ +aPn +aPJ +aPY +aQk +aQw +aQj +aQj +aQY +aRe +aRs +aOG +aOS +aRV +aSh +aSy +aSI +aRM +aRt +aRA +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (48,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -gw -bz -bB -eU -cZ -kn -kS -lC -mp -mQ -ny -ny -or -oS -nx -nx -qt -re -rx -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -iE -sg -zN -Gp -iE -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -dG -Oi -Om -dG -OW -Po -PK -PK -PK -PK -PK -PK -QZ -Re -Re -Re -Re -Re -Si -Sz -SI -SI -SI -SI -SI -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +agw +abz +abB +aeU +acZ +akn +akS +alC +amp +amQ +any +any +aor +aoS +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +asg +azN +aGp +aiE +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +adG +aOi +aOm +adG +aOW +aPo +aPK +aPK +aPK +aPK +aPK +aPK +aQZ +aRe +aRe +aRe +aRe +aRe +aSi +aSz +aSI +aSI +aSI +aSI +aSI +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (49,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -bh -Uj -DW -kn -kS -lD -mq -mQ -ny -ny -lE -oT -nx -nx -qt -re -rw -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -fF -ac -ac -iE -rj -BP -Fo -GQ -Ba -BU -Cx -JF -KD -Ll -LS -LS -MN -LS -LS -LS -zL -zL -zL -dG -Oi -Om -dG -Pa -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -dG -Pa -dG -dG -dG -dG -dG -dG -dG -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aQW +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +alo +aby +aDW +akn +akS +alD +amq +amQ +any +any +alE +aoT +anx +anx +aqt +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aiE +arj +aBP +aFo +aGQ +aoL +aBU +aCx +aJF +aFw +aLl +aLS +aLS +aMN +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aOm +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +adG +aRh +adG +adG +adG +adG +adG +adG +adG +adG +aRh +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (50,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -bv -bv -bv -bv -bv -PC -Tz -TL -TQ -TY -bh -Uk -DW -kn -kT -lE -mr -mQ -ny -ny -os -oU -nx -nx -qt -re -rw -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hh -hp -hp -hp -hh -fK -fK -fK -fK -fK -oy -ut -FM -Gq -zL -Bb -BW -BW -JG -KE -Ll -LT -LS -LT -LS -Nq -LS -zL -zL -zL -dG -Oi -ab -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -NM -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +alY +alY +aqO +aqO +aqO +aqO +aqO +alo +abA +aDW +akn +akT +alE +amr +amQ +any +any +aos +aoU +anx +anx +aqt +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahh +ahp +ahp +ahp +ahh +afK +afK +afK +afK +afK +aoy +amT +aBp +aGq +azL +aFN +aBW +aBW +aJG +aKE +aLl +aLT +aLS +aLT +aLS +aNq +aLS +azL +azL +azL +adG +aOi +aab +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aNM +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (51,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -bv -bv -bv -bv -bv -PD -TC -TM -TR -TZ -Un -Ul -jA -kp -kT -lE -mr -mQ -ny -ny -ny -ny -ny -ny -qu -re -rw -kS -Ef -ac -ac -ac -ac -ac -ac -ac -ac -hj -hr -pA -tV -hh -uu -uu -xF -yr -Be -fK -An -FN -Cf -zL -Bb -BW -Cy -JH -KF -Lm -LS -LS -LS -LS -LS -NE -zL -zL -zL -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +alY +alY +aqO +aqO +aqO +aqO +aqO +alo +air +ajA +akp +akT +alE +amr +amQ +any +any +any +any +any +any +aqu +are +arw +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahr +apA +atV +ahh +auu +auu +axF +ayr +aBe +afK +aAm +aFM +aCf +azL +aBb +aBW +aCy +aJH +aKF +aLm +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (52,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -bh -bh -bh -bh -bh -bh -TD -TM -TS -Ua -Uo -Um -DW -kq -kU -lF -mr -mQ -ny -ny -ny -ny -ny -ny -qu -re -ry -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -hT -tp -tW -hh -uu -uu -uu -yB -Bg -fK -AY -FO -Cg -zL -Bc -BW -BW -JI -KE -Ll -LT -LS -LT -LS -Nr -LS -zL -zL -zL -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +aDW +akq +akU +alF +amr +amQ +any +any +any +any +any +any +aqu +are +ary +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahT +atp +atW +ahh +auu +auu +auu +ayB +aBg +afK +aAY +aFO +aCg +azL +aBc +aBW +aBW +aJI +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (53,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -bw -cl -cX -ht -Oa -RJ -TE -TM -TT -Ub -Uo -Um -jB -kr -kV -lG -ms -mR -nz -nz -nz -nz -nz -nz -qv -re -rw -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -hT -tq -tX -hh -uu -uu -xO -yB -Bh -zG -Cs -FP -Cq -Al -Bd -Ca -Jc -JJ -KG -Ln -LS -LS -LS -LS -LS -LS -zL -zL -zL -Ob -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +acW +akr +akV +alG +ams +amR +anz +anz +anz +anz +anz +anz +aqv +are +arw +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +ahT +atq +akt +ahh +auu +auu +axO +ayB +aBh +azG +aCs +aFP +aCq +aAl +aBd +aCa +aJc +aJJ +aKG +aLl +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (54,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -by -cn -cY -cn -Og -SC -TF -TM -TU -Uc -Uo -Ut -jC -ks -kT -lE -mt -mS -mN -mN -mN -mN -mN -pJ -pI -rf -rz -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -hh -hU -tr -tY -hh -uu -uu -xO -yN -Bj -Fl -Ct -FQ -CD -Am -Bp -BW -BW -JK -KE -Ll -LT -LS -LT -LS -Nr -LS -zL -zL -zL -dG -Oi -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +agI +acX +aks +akT +alE +amt +amS +amN +amN +amN +amN +amN +apJ +apI +arf +arz +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahh +ahU +atr +atY +ahh +auu +auu +axO +ayN +aBj +aFl +aAn +aBw +aCt +aCD +aFQ +aBW +aBW +aJK +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +adG +aOi +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (55,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bh -bA -cV -cn -DU -OT -SF -TG -TN -TV -Ue -Up -Uu -jD -kt -kX -lI -mu -mT -mu -mu -mu -mu -mu -pK -rg -rg -rA -rV -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -iu -tB -ua -hh -uu -uu -xO -yP -Bu -fK -Bf -FR -CK -zL -Bw -BW -CB -JL -KH -Lo -LS -LS -LS -LS -LS -NE -zL -zL -zL -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +aWF +akx +akT +acY +arg +adK +arg +arg +arg +arg +arg +aeo +arg +arg +arA +arV +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiu +atB +aua +ahh +auu +auu +axO +ayP +auc +afK +amV +aFR +aCK +azL +aXU +aBW +aCB +aJL +aKH +aLo +aLS +aLS +aLS +aLS +aLS +aLS +azL +azL +azL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (56,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -bh -bC -cn -eo -cn -OU -SH -TH -TO -TW -Uf -Uq -Ud -dK -ku -kS -lJ -mv -mU -mv -mv -mv -mv -mv -pL -rh -rh -rB -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -iw -tC -ub -hh -uV -uV -yk -yT -BH -fK -Bi -FS -CN -zL -BI -BW -BW -JG -KE -Ll -LT -LS -LT -LS -Nr -LS -zL -zL -zL -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +air +aWJ +aku +akS +aMS +amv +amU +amv +amv +amv +amv +amv +apL +arh +arh +arB +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiw +atC +aub +ahh +auV +auV +ayk +ayT +aBH +afK +aBi +aFS +aCN +azL +aBI +aBW +aBW +aJG +aKE +aLl +aLT +aLS +aLT +aLS +aNr +aLS +azL +azL +azL +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (57,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ad -bh -ck -cW -hq -MI -Pi -Ty -TI -TM -TM -Ug -Ur -Uv -jF -kv -kS -lJ -mv -mV -nB -oa -ot -oa -mv -pM -qz -ri -rC -kS -ac -ac -ac -ac -ac -ac -ac -ac -ac -hj -iy -tD -uc -hh -uW -wO -yl -zl -Fi -fK -Bi -FS -Cr -zL -BJ -Cb -CC -JM -KI -Lp -LS -LS -MO -LS -LS -LS -zL -zL -zL -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +alo +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +aqO +alo +ack +ajF +akv +akS +alJ +amv +amU +anB +aoa +aot +aoa +amv +apM +aiK +ari +arC +akS +aac +aac +aac +aac +aac +aac +aac +aac +aac +ahj +aiy +atD +alI +ahh +auW +awO +ayl +azl +aFi +afK +aIq +aFS +aCr +azL +aoQ +aCb +aCC +aJM +aGl +aLp +aLS +aLS +aMO +aLS +aLS +aLS +azL +azL +azL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (58,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -bh -bh -bh -bh -bh -bh -bh -TJ -TM -TM -Uh -Us -Uw -jG -WN -kY -kY -kZ -mW -nC -kY -kY -kY -kT -pN -kT -kS -kS -kS -fj -fj -fj -ac -ac -ad -fM -fM -fM -hh -hh -hh -uq -hh -fK -fK -fK -zG -fK -fK -yR -zc -Gu -zL -zL -zL -CI -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -zL -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +alo +alo +alo +alo +alo +alo +alo +aqO +aqO +aqO +aqO +alo +acl +ajG +aWN +akY +akY +akZ +amW +anC +akY +akY +akY +akT +apN +akT +akS +akS +akS +afj +afj +afj +aac +afM +afM +afM +afM +afM +ahh +ahh +ahh +auq +ahh +afK +afK +afK +azG +afK +afK +ayR +aGu +aXM +azL +azL +azL +aCI +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +azL +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (59,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -dW -eq -fn -gd -gQ -fc -iJ -jb -TP -VG -bh -Wj -WD -kx -kY -lK -mw -DX -DZ -ob -of -kY -po -pO -qB -fj -iI -rD -fQ -wL -fj -ac -ac -ac -fN -gz -gD -hk -iz -tE -hi -wA -wW -xG -xP -Ar -yu -Fm -yv -zd -Gv -GR -HI -It -Jd -JN -zo -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +adW +aeq +afn +adx +agQ +afc +aqO +aqO +aqO +aqO +alo +acn +aWD +aNE +akY +alK +amw +aDX +aDZ +aob +aof +akY +apo +apO +aqB +afj +aiI +arD +afQ +awL +afj +aac +aEi +aXH +axh +aXN +agD +ahk +aiz +atE +ahi +awA +awW +axG +aHj +aAr +ayu +aFm +aAT +aGv +aXS +aGR +aHI +aHj +aJd +aJN +azo +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (60,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -dT -dT -au -dT -au -dT -au -dT -fc -er -fo -ge -gR -fc -bh -bh -bh -bh -bh -Wk -pS -kx -kZ -lL -mw -DY -mw -mw -ov -kY -ir -jR -kx -fj -jK -vF -fj -fj -fj -ac -ac -ac -fN -gA -gE -hl -iA -tF -wD -xI -xN -yO -AT -AT -BX -AT -yH -ze -zJ -Ao -BL -hf -Je -JO -zo -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +adT +adT +aau +adT +aau +adT +aau +adT +afc +aer +afo +age +agR +afc +alo +alo +alo +alo +alo +acV +apS +akx +akZ +alL +amw +aDY +amw +amw +aov +akY +air +ajR +akx +afj +ajK +avF +afj +afj +afj +afi +aXG +aXI +ayi +aXO +aXQ +aXR +aiA +atF +awD +axI +axN +ayO +ayv +aze +azJ +aze +aBX +aXK +aXT +aAo +aBL +ahf +aJe +aJO +azo +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (61,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ai -ae -av -aM -am -bU -cz -dg -fc -es -fp -gO -gS -hw -iL -iL -iL -iL -gw -Wl -WE -kx -kZ -lL -mw -DY -mw -mw -ow -kY -pp -jR -iD -fj -ky -gF -fP -wM -fj -ac -ac -fi -gx -gB -he -hm -jy -tE -wx -wB -xD -xH -yi -wB -yQ -AM -yS -zf -zK -Ap -BM -Ce -Jf -JP -zo -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aai +aae +aav +aaM +aam +abU +acz +abC +afc +aes +afp +agO +agS +ahw +aiL +aiL +aiL +aiL +agw +aWl +aWE +akx +akZ +alL +amw +aDY +amw +amw +aow +akY +app +ajR +aiD +afj +aky +agF +afP +awM +afj +arn +aEi +aXJ +afh +aXL +afh +ahm +ajy +atE +awx +awB +axD +axH +ayH +awB +ayQ +aAM +ayS +azf +azK +aAp +apK +aCe +aJf +aJP +azo +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (62,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ai -ak -aw -aN -bD -bV -cA -dh -fc -et -fq -ge -hv -hw -iL -iL -jz -iL -VX -ix -jM -kx -kZ -lM -mw -mY -nD -od -ox -oV -pq -iC -vj -iH -pP -wm -fj -fj -fj -ac -fh -fk -fh -fh -fh -hn -jE -tT -tU -uY -uY -wE -uY -uY -tU -AS -yU -Cr -zE -zE -zE -Bn -Jg -Bn -zE -zE -zH -zH -zH -zE -zE -zE -Ef -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aai +aak +aaw +aaN +abD +abV +acA +adh +afc +aet +afq +age +ahv +ahw +aiL +aiL +ajz +aiL +aVX +aix +ajM +akx +akZ +amw +amw +amY +anD +aod +aox +aoV +apq +aiC +avj +aiH +apP +awm +afj +afj +afj +arn +afh +aXL +afh +aXP +afh +ahn +ajE +atT +atU +auY +auY +awE +azc +auY +atU +aAS +ayU +aCr +azE +azE +azE +aBn +aJg +aBn +azE +azE +azH +azH +azH +azE +azE +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (63,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -dT -al -ax -aO -bE -bW -cB -di -fc -eu -fr -ge -hv -hw -iL -iL -iL -iL -VX -ix -WF -kx -kZ -lN -mw -mX -mw -mw -mw -kZ -pr -pQ -iG -fj -qD -wo -fO -wM -fj -ac -fh -fL -gy -gC -hg -ho -jI -tT -ur -vt -vS -wK -xh -xC -uY -AW -yU -zq -Bn -GS -HJ -Iu -Jh -JQ -KJ -Lq -yp -yq -MP -Ne -Ns -zE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aRJ +adT +aal +aax +aaO +abE +abW +acB +adi +afc +aeu +afr +age +ahv +ahw +aiL +aiL +aiL +aiL +aVX +aix +aWF +akx +akZ +alN +amw +amX +amw +amw +amw +akZ +apr +apQ +aiG +afj +aqD +awo +afO +awM +afj +arn +afh +afL +agy +agC +ahg +aho +ajI +atT +aur +avt +avS +awK +azd +axC +auY +aAW +ayU +azq +aBn +aGS +aHJ +aIu +aJh +aJQ +aKJ +aLq +ayp +ayq +aMP +aNe +aNs +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (64,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ai -am -ay -aP -am -cq -cC -dp -fc -eB -fS -ge -hv -hw -iL -jz -iL -iL -VX -ix -WF -kx -kZ -lN -mw -mZ -nE -mw -mw -kZ -ix -pQ -qE -fj -fj -fj -fj -fj -fj -ac -tG -ud -ud -ud -ud -ud -ud -tT -us -vu -vT -wX -xj -xE -yo -ys -yV -zw -CA -GT -HK -Cz -Ji -JR -KK -Lr -LU -Mr -MQ -Nf -Nt -NF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aai +aam +aay +aaP +aam +acq +acC +adp +afc +adg +afS +age +ahv +ahw +aiL +ajz +aiL +aiL +aVX +aix +aWF +akx +akZ +alN +amw +amZ +anE +amw +amw +akZ +aix +apQ +aqE +afj +afj +afj +afj +afj +afj +arn +atG +aud +aud +aud +aud +aud +aud +atT +aus +avu +avT +awX +axj +axE +ayo +ays +ayV +azw +aCA +aGT +aHK +aCz +baB +aJR +aKK +aLr +aLU +aMr +aMQ +aNf +aNt +aNF +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (65,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ai -aj -aG -bj -bF -bX -cD -dq -fc -hz -fT -WW -eJ -hw -iL -iL -iL -iL -gw -iK -WF -WO -kY -lO -mx -na -nF -mw -ou -kY -iK -pQ -sS -ha -ha -ha -ss -sR -gw -ac -tG -ud -ux -ux -ux -ux -ud -tT -qy -vv -vU -wY -xl -xJ -uY -yt -yW -zy -Bn -Aq -tZ -Iv -Jj -tZ -KL -Ls -LV -Ms -MR -tZ -Nu -NF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aai +aaj +aaG +abj +abF +abX +acD +adq +afc +ahz +afT +aWW +aeJ +ahw +aiL +aiL +aiL +aiL +agw +aOa +aWF +aWO +akY +alO +amx +ana +anF +aMw +aou +akY +aix +apQ +asS +aha +aha +aOb +ass +asR +agw +arn +atG +aud +aux +aux +aux +aux +aud +atT +aqy +avv +avU +awY +axl +axJ +auY +ayt +ayW +azy +aBn +aAq +atZ +aIv +aJj +atZ +aKL +aLs +aLV +aMs +aMR +atZ +aNu +aNF +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (66,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -dT -dT -dT -dT -dT -dT -cE -dT -fc -fc -fU -fc -fc -fc -dP -dP -dP -dP -dP -Wm -WG -WS -kY -kY -kY -nb -nb -kY -kY -kY -ps -pR -qG -kE -kE -kE -st -kx -lP -ac -tG -ud -ux -ux -ux -ux -ud -tT -uv -vw -vV -wZ -xz -xL -tU -zB -BS -zB -zE -AU -HL -Iw -Jk -JS -Iv -Lt -LW -Mt -BO -Ng -Nv -NF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +adT +adT +adT +adT +adT +adT +acE +adT +afc +afc +afU +afc +afc +afc +adP +adP +adP +adP +adP +aWm +aWG +aWS +akY +akY +akY +anb +anb +akY +akY +akY +aps +apR +aqG +akE +akE +akE +ast +aoz +aqP +ase +atG +aud +aux +aux +aux +aux +aud +atT +auv +avw +avV +awZ +axz +axL +atU +azB +aBS +azB +azE +aAU +aHL +aIw +aJk +aJS +aIv +aLt +aLW +aMt +aBO +aNg +aNv +aNF +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (67,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Ot -aq -ac -ac -an -aV -bG -cp -cH -do -af -ev -fs -gf -gT -hG -iM -jH -iM -VH -VY -Wn -WF -WT -la -gw -my -my -my -my -my -ik -pt -pS -qH -pS -pS -pS -jR -kx -lP -ac -tG -ud -ux -ux -ux -ux -ud -tT -uw -vx -vW -vx -xA -xM -tU -zM -yX -zz -zE -AV -BO -Cu -Jl -JT -KM -Lu -LX -Mu -MS -Nh -Nw -zE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOt +aaq +aac +aac +aan +aaV +abG +acp +acH +ado +aaf +aev +afs +agf +agT +ahG +aiM +afR +aiM +aVH +aVY +aWn +aWF +aWT +ala +agw +amy +amy +amy +amy +amy +aik +apt +apS +aqH +apS +apS +apS +ajR +apX +alP +aac +atG +aud +aux +aux +aux +aux +aud +atT +auw +avx +avW +avx +axA +axM +atU +azM +ayX +azz +azE +aAV +aBO +aCu +asa +aJT +aKM +aLu +aLX +aMu +atX +aNh +aNw +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (68,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ac -an -aW -bH -bY -cI -dj -af -ew -ft -gg -gg -hH -iN -jJ -TX -VI -VZ -Wn -WF -WT -la -lP -my -my -my -my -my -ik -pu -pT -qI -rk -hc -rX -su -kx -gw -ac -tG -ud -ux -ux -ux -ux -ud -tT -uX -vQ -vX -xa -xB -yj -tU -zU -yZ -zA -zE -AX -HN -Cv -zD -zD -KN -Lv -LY -zD -zD -zE -zE -zE -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aac +aan +aaW +abH +abY +acI +adj +aaf +aew +aft +agg +agg +ahH +aiN +ajJ +aTX +aVI +aVZ +aWn +aWF +aWT +ala +alP +amy +amy +amy +amy +amy +aik +apu +apT +aqI +ark +ahc +arX +asu +apX +agw +aac +atG +aud +aux +aux +aux +aux +aud +atT +auX +avQ +avX +axa +axa +ayj +atU +amh +ayZ +azA +azE +aAX +aHN +aCv +azD +azD +aKN +aLv +aLY +azD +azD +azE +azE +azE +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (69,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -aq -ac -af -aX -aX -bZ -cJ -dk -dQ -ex -fu -gh -gU -dP -iO -jL -dP -VJ -Wa -Wn -WF -WT -la -lP -my -my -nG -my -my -oX -oX -oX -qJ -oX -oX -rY -jX -kx -lP -ac -tG -ud -ud -ux -ux -vY -ud -tT -tU -uY -wy -uY -tU -ym -tU -Ag -za -zC -zE -AZ -HO -Cw -zD -JU -KO -Lw -LZ -Mv -zD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aaq +aac +aaf +aaX +aaX +abZ +acJ +adk +adQ +aex +afu +agh +agU +adP +aiO +ajL +adP +aVJ +aWa +aWn +aWF +aWT +ala +alP +amy +amy +anG +amy +amy +aoX +aoX +aoX +aqJ +aoX +aoX +arY +ajX +apX +alP +aac +atG +aud +aud +aux +aux +avY +aud +atT +atU +auY +awy +auY +atU +aym +atU +aAg +aza +azC +azE +aAZ +aHO +aCw +azD +aJU +aKO +aLw +aLZ +aMv +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (70,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ac -af -aX -aX -co -cK -dl -dR -ey -fv -Xc -gV -hI -gG -jN -Ui -VK -dP -Wo -WF -WT -lb -gw -my -my -my -my -my -oX -pv -pU -qK -pv -oX -rZ -sv -kx -lP -ac -ts -ts -uy -uZ -uZ -vZ -wF -tU -tU -vR -wz -xb -tU -yn -tU -zB -zb -zB -zE -zE -HP -zE -zD -JV -KP -Lx -Ma -Mw -zD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aac +aaf +aIL +aaX +aco +acK +adl +adR +aey +afv +aXc +agV +ahI +agG +ajN +aUi +aIt +adP +aWo +aWF +aWT +alb +agw +amy +amy +amy +amy +amy +aoX +apv +apU +aqK +apv +aoX +arZ +asv +apX +alP +aac +ats +ats +auy +auZ +auZ +avZ +awF +atU +atU +avR +awz +axb +atU +ayn +atU +azB +azb +azB +azE +azE +aHP +azE +azD +asl +aKP +aLx +aMa +aHG +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (71,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -Om -aq -ac -ac -an -aY -WP -bI -cL -WZ -dS -ez -fw -gH -gW -gH -gH -jO -jQ -VL -dP -Wp -jM -kv -lc -lc -mz -lc -lc -lc -lc -lc -pw -pV -qL -rl -oX -hs -sw -kx -gw -ac -ac -ts -uz -va -vy -wa -wG -xc -xR -xK -xQ -zk -yY -BR -BY -Cn -CV -FT -BY -GU -HQ -Ix -Jm -JW -KQ -Ly -KQ -Mx -zD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aOm +aaq +aac +aac +aan +aaY +aWP +abI +acL +aWZ +adS +aez +afw +agH +agW +agH +agH +ajO +ajQ +aVL +adP +aWp +ajM +akv +alc +alc +amz +alc +alc +alc +alc +alc +apw +apV +aqL +arl +aoX +ahs +asw +apX +agw +aac +aac +ats +aPD +ava +avy +awa +awG +axc +axR +axK +axQ +azk +ayY +aBR +aBY +aCn +aCV +aFT +aBY +aGU +aHQ +aIx +aJm +aJW +aKQ +aLy +aKQ +aMx +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (72,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -an -bi -bJ -cr -dd -dn -dQ -eA -fR -gI -hu -hJ -iP -jP -Ux -VM -dP -Wq -jM -kx -lc -lQ -mA -lc -nH -og -oA -lc -px -pV -qL -rm -oX -sa -sx -kx -lP -ac -ac -ue -uA -vb -vz -Er -Er -xd -nA -oc -oc -oe -oc -oc -sb -zF -zI -zF -zF -GV -HR -As -Jm -JX -KR -Ly -KR -My -zD -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aan +abi +abJ +acr +add +adn +adQ +agd +aeB +aHH +ahu +ahJ +aiP +ajP +aUx +aVM +adP +aWq +ajM +akx +alc +alQ +amA +alc +anH +aog +aoA +alc +apx +apV +aqL +arm +aoX +ajC +asx +apX +alP +aac +aac +aue +auA +avb +avz +aEr +aEr +axd +anA +aoc +aoc +aoe +aoc +aoc +asb +azF +azI +azF +azF +aGV +aHR +aAs +aJm +aJX +aKR +aLy +aKR +aMy +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (73,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -af -dO -dO -dO -de -dO -dO -dO -dO -hx -hy -hx -hx -hx -Uy -VN -Wb -Wn -jM -kx -lc -lR -mB -nc -nI -oh -oB -lc -py -pW -qM -py -oX -ix -jR -kx -lP -ac -ac -ue -uA -vc -vA -wc -wH -xe -wH -yw -zg -zO -Au -Bk -Fj -wC -xy -Xe -CE -GW -Ia -As -Jm -JY -KS -Lz -KS -Mz -zD -ac -ac -ac -ac -ac -ac -fF -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaf +adO +adO +adO +ade +adO +adO +adO +adO +ahx +ahy +ahx +ahx +ahx +aUy +aVN +aWb +aWn +ajM +aNE +alc +alR +amB +anc +anI +aoh +aoB +alc +apy +apW +aqM +apy +aoX +aOa +ajR +apX +alP +aac +aac +aue +akk +avc +avA +awc +awH +axe +awH +aOq +azg +azO +aAu +aBk +aFj +awC +axy +aXe +aCE +aGW +aIa +aAs +aJm +aJY +aKS +aLz +aKS +aMz +azD +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (74,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -dO -bK -cs -dm -dr -dX -ct -eI -hx -UO -iT -kz -kA -UT -VO -jT -Wr -jM -kx -lc -lS -mC -lc -nJ -lc -lc -lc -gw -gw -gw -gw -oX -sc -jR -kx -gw -ac -ac -ts -uB -vd -vB -ff -xg -xg -xg -xg -xg -xg -xg -xg -xg -xg -xg -xg -Xk -GX -Ia -At -zD -zD -zD -zD -zD -zD -zD -Ni -Ni -Kj -Kj -Ni -Ni -Kj -Kj -Ni -Ni -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +adO +abK +acs +adm +adr +aIF +act +aeI +ahx +aUO +aiT +akz +akA +aUT +aVO +ajT +aWn +ajM +akx +alc +alS +amC +alc +anJ +alc +alc +alc +agw +agw +agw +agw +aoX +asc +ajR +apX +agw +aac +aac +ats +auB +avd +avB +aff +axg +axg +axg +axg +axg +axg +axg +axg +axg +axg +axg +axg +aXk +aGX +aIa +aqS +azD +azD +azD +azD +azD +azD +azD +aNi +aNi +aKj +aKj +aNi +aNi +aKj +aKj +aNi +aNi +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (75,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -dO -cF -cG -WY -dN -dY -ct -fV -hx -hA -hZ -iU -hx -Vd -VP -jT -Ws -jM -kx -ld -lT -mD -nd -ne -ne -ne -lc -pz -pX -qN -gw -rE -ix -jR -Ei -gw -ts -ts -ts -uC -ve -vC -we -xg -xU -zi -zW -xg -CG -EE -ER -Fn -Ft -GY -Xf -xg -Xm -HT -Av -Jn -JZ -KT -KT -KT -KT -MT -KT -KT -KT -KT -KT -KT -MT -KT -KT -OH -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +adO +acF +acG +aWY +adN +adY +act +afV +ahx +ahA +ahZ +aiU +ahx +aVd +aVP +ajT +aWs +ajM +akx +ald +alT +amD +aQd +ane +ane +ane +alc +apz +afk +aqN +agw +arE +aix +ajR +apY +agw +ats +ats +ats +auC +ave +avC +awe +axg +axU +azi +aAw +axg +aCG +aEE +aER +aFn +aFt +aGY +aXf +axg +aXm +aHT +aAv +aJn +aJZ +aKT +aKT +aKT +aKT +aMT +aKT +aKT +aKT +aKT +aKT +aKT +aMT +aKT +aKT +aOH +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (76,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -bL -ct -df -dU -eb -ct -gb -hx -hB -ia -iW -kB -Vy -VQ -jT -Wt -WH -WU -le -lU -mE -ne -ne -ne -ne -lc -iv -pY -qO -gw -rF -ix -jR -kx -gw -ts -tH -uf -uD -ve -vC -wf -xg -xV -zj -Aw -xg -zT -zT -EU -Bs -Fu -Hc -Xf -xg -GZ -Ia -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +abL +act +adf +adU +aeb +act +agb +ahx +aef +aia +aiW +akB +aVy +agB +ajT +aWt +aWH +aWU +ale +alU +amE +ane +ane +ane +ane +alc +aiv +afN +aqO +agw +arF +aix +ajR +apX +agw +ats +atH +auf +auD +ave +avC +awf +axg +axV +azj +aAy +axg +aLP +azT +aEU +aBs +aFu +aHc +aXf +axg +aGZ +aIa +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (77,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -bM -ct -ct -ct -ct -ct -gc -hx -gP -hC -eK -kF -Vz -VR -jT -Wu -WI -kC -lf -lV -mF -nf -lc -lc -lc -lc -gw -pZ -gw -gw -gw -jj -sy -kC -gw -ts -ts -ts -uE -vf -vD -wg -xg -xW -zm -Ay -xg -CH -zT -zT -Fq -Fv -He -Xg -xg -Ha -Ia -wf -ts -Kb -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +abM +act +act +act +act +act +agc +ahx +agP +ahC +aeK +akF +aVz +aVR +ajT +aWu +aWI +akC +alf +alV +amF +anf +alc +alc +alc +alc +agw +agx +agw +agw +agw +ajj +asy +apZ +agw +ats +ats +ats +auE +avf +avD +awg +axg +axW +azm +aCM +axg +aCH +azT +azT +aFq +aFv +aHe +aXg +axg +aHa +aIa +awf +ats +aKb +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aLn +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (78,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -bN -cx -eC -Xb -dX -fl -eI -hx -hF -iQ -jS -QX -VA -VS -Wc -Wv -WJ -kD -lg -lW -mG -ng -nK -oi -oC -oY -pB -qa -qP -rn -oz -se -jR -sS -ha -tt -ha -ha -uF -vg -fd -fg -xg -xg -zP -xg -xg -zT -EG -EG -zT -FU -FU -Xh -xg -Hb -Ia -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +abN +acx +aeC +aXb +adX +afl +aeI +ahx +ahF +aiQ +ajS +aQX +aVA +aVS +aWc +aWv +aWJ +akD +alg +alW +amG +ahB +anK +aoi +aoC +aoY +apB +agz +agA +ajb +agE +ahe +ahl +aqa +aha +att +aOb +aha +auF +avg +ajX +akx +axg +axg +azP +axg +axg +azT +aEP +aEG +azT +aFU +aFU +aXh +axg +aHb +aIa +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (79,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -dO -dO -dO -dO -dO -dO -dO -dO -hx -hV -iR -kw -hx -VB -VT -Wd -iV -WK -kE -lh -lh -mH -nh -nh -nh -nh -oZ -nh -qb -lh -lh -lh -lh -sz -lh -lh -lh -lh -lh -uG -vh -vE -wd -xi -yx -zQ -Az -Xn -zT -EH -AA -zT -zT -zT -Xh -xi -GX -Ia -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +adO +adO +adO +adO +adO +adO +adO +adO +ahx +ahV +aiR +akw +ahx +aVB +aVT +aWd +aiV +aWK +akE +alh +alh +amH +anh +anh +anh +anh +aoZ +anh +aqb +alh +alh +alh +alh +asz +alh +alh +alh +alh +alh +auG +avh +avE +akx +axi +awd +azQ +aAz +akM +azT +aEH +aAA +azT +azT +azT +aXh +axi +aGX +aIa +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (80,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -aE -bO -cy -bS -dV -ep -fm -Xd -hx -hX -iS -hx -hx -VC -VU -jT -Ww -jR -WV -li -li -li -li -li -li -li -li -li -qc -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -qQ -vi -Ep -wj -xk -yy -zR -AA -Bq -zT -EI -EI -zT -Gw -Hg -Xi -xk -Xq -HZ -Iy -ts -Kc -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OJ -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aaE +abO +acy +abS +adV +aep +afm +aXd +ahx +ahX +aiS +ahx +ahx +aVC +aVU +ajT +aWw +ajR +aWV +ali +ali +ali +ali +ali +ali +ali +aOT +ali +baQ +baJ +baJ +baJ +baJ +baJ +avl +aEo +baH +baL +baL +baL +bby +aEp +afd +axk +ayy +azR +aAA +aBq +azT +aEI +aEI +azT +aGw +aHg +aXi +axk +aXq +aHZ +aIy +ats +aKD +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +avs +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (81,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ad -aE -aE -aE -aE -aE -aE -aE -aE -aE -hx -hx -hx -hx -WX -VD -Xa -jT -Wn -jR -kG -lj -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -lX -uH -vk -fe -wl -xS -yz -zS -yz -Br -CJ -CJ -EV -zT -zT -zT -Xj -xS -Xr -Xu -wf -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +aaE +ahx +ahx +ahx +ahx +aWX +aVD +aXa +ajT +aWn +ajR +akn +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +alj +asT +aYj +asT +alX +alX +auH +bbA +afe +afg +axS +ayz +azS +ayz +aBr +aCJ +aCJ +aEV +azT +azT +azT +aXj +axS +aXr +aXu +awf +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (82,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -aE -bk -bP -cu -bS -ds -aE -eD -fW -gJ -hD -ic -aE -Tr -aE -ep -We -Wn -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -wI -xT -yA -zT -zT -Xo -CM -EJ -Fc -Fr -Fr -Fr -Fr -Xl -Xs -Xv -Iz -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaE +abk +abP +acu +abS +ads +aaE +aeD +afW +agJ +ahD +aic +aaE +aTr +aaE +aep +aWe +aWn +ajR +akn +alj +all +awj +alj +aZk +aZw +aZJ +alj +baf +bar +aPi +baX +bab +bbC +bbE +asT +aPk +asT +alY +alY +auI +bbA +ajM +aoG +axT +ayA +azW +aFr +aEJ +aGx +aXo +aFc +aFr +aFr +aFr +aFr +aXl +aXs +aXv +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (83,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -aF -bl -bQ -cv -cM -dt -dZ -eE -fX -gK -hE -id -iX -DI -aE -hd -hS -Wx -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -Bo -xk -zh -zV -zT -Bt -Eu -EK -Fd -Fs -zT -zT -Xx -xg -Xt -Ia -Iz -ts -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OK -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaF +abl +abQ +acv +acM +adt +adZ +aeE +afX +agK +ahE +aid +aiX +aDI +aaE +ahd +ahS +aWx +ajR +akn +alj +aqc +awk +axf +aZl +aZx +aZL +aZW +bag +bas +aZU +aZV +aXW +bbD +bbH +asT +aYb +asT +alY +alY +auI +bbA +ajM +aoI +axk +azh +azV +azT +aBt +aEu +aEK +aFd +aFs +azT +aMk +aXx +axg +aXt +aIa +aOJ +ats +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOK +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (84,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -aF -bm -bR -bR -da -bS -aE -eF -fY -gL -aE -ie -iY -SL -aE -aE -aE -Wz -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -xf -xg -xg -xg -Hd -Bv -Ez -EO -Fe -Fs -Xw -xg -xg -xg -Hh -Ia -Iz -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aaF +abm +abR +abR +ada +abS +aaE +aeF +afY +agL +aaE +aie +aiY +aSL +aaE +aaE +aaE +aWz +ajR +akn +alj +awi +awl +alj +aZm +aZy +aZM +alj +aiJ +bat +baG +bba +aYn +asT +asT +asT +aYj +asT +asT +asT +asT +bbF +ajM +apb +axg +axg +axg +aHd +aBv +aEz +aEO +aFe +aFs +aXw +axg +axg +axg +aHh +aIa +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (85,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -aF -bn -bS -cw -db -dL -aE -eZ -fZ -gM -aE -if -iZ -Tw -VE -VV -Wf -WA -WL -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -wk -EA -hd -xg -zT -CF -EC -EP -EC -CF -Gx -xg -tH -Gy -Hf -Ia -Iz -Jn -Ka -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aaF +abn +abS +acw +adb +adL +aaE +aeZ +afZ +agM +aaE +aif +aiZ +aTw +aVE +aVV +aWf +aWA +aWL +aNp +alj +alj +alj +alj +alj +alj +alj +alj +bai +aZx +baK +aZx +aZj +asT +aEe +aXY +aYb +aYs +aYx +aYE +baq +bbF +ajM +ape +aEA +ahd +axg +azT +aCF +aEC +aXC +aEC +aCF +aXE +axg +atH +aGy +aHf +aIa +aIz +aJn +aKa +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (86,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -aF -bo -bS -aE -ag -ag -ag -fa -ag -ag -ag -ag -eG -eG -eG -eG -Wg -WB -jR -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -wn -wJ -wJ -wJ -Bl -wJ -ED -EQ -Xp -AB -AB -AB -AB -AB -Hi -HV -IA -ts -Kb -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -KU -OI -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aaF +abo +abS +aaE +aag +aag +aag +afa +aag +aag +aag +aeG +aeG +aeG +aeG +aeG +aWg +aWB +ajR +akn +aYO +aZi +awn +atI +aYP +aYT +aYT +alj +baj +bau +baM +bbb +aZr +aBo +aEg +aYb +aYb +aYp +aYy +aYF +baw +bbF +ajM +apf +awJ +awJ +awJ +aBl +awJ +aED +aEQ +aEE +aAB +aAB +aAB +aAB +aAB +aHi +aHV +aIA +ats +aKb +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aOI +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (87,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -aE -bx -bT -aE -dc -dM -ea -fb -ga -gN -ag -hW -ja -TK -VF -VW -Wh -WC -WM -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jM -wi -wN -EF -EL -Bm -wJ -wJ -wJ -wJ -AB -CL -Fw -FV -AB -Hj -HW -Iz -Jn -Kd -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -KV -OL -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aaE +abx +abT +aaE +adc +adM +aea +afb +aga +azu +aag +afF +aja +aTK +aVF +aVW +aWh +aWC +aWM +baz +aYV +aEj +awn +aOU +aYQ +aYU +aYU +alj +aZG +aZH +aZH +aZH +aYc +asT +bac +aYb +aYb +aYp +aYz +aYG +baw +bbF +ajM +apD +awN +aEF +aEL +aBm +awJ +awJ +awJ +awJ +aAB +aCL +aut +aFV +aAB +aHf +aHW +aIz +aJn +aKd +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aKV +aOL +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (88,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -ag -ag -ag -ag -ag -ag -ag -aQ -aZ -aZ -SR -Tj -Uz -ag -hY -ig -gj -gX -Vn -eG -jc -jU -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -Eq -Ev -EB -xm -xX -xm -zp -zX -AC -Fg -Ch -CP -Fx -FW -Gz -Hk -HX -Iz -Jn -Ke -Ke -Ke -Ke -Ke -MU -Ke -Ke -NG -NN -Ke -Ke -MU -Ke -Ke -Ke -Kj -Ni -Ni -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aag +aag +aag +aag +aag +aag +aag +aaQ +aaZ +aaZ +aSR +aTj +abv +aag +ahW +aig +agj +agX +aVn +aeG +ajc +ajU +akn +aYO +aEv +awn +aJi +aYR +aYR +aYX +aYZ +aYR +aYR +aYR +aZe +aYR +aEa +bad +aYb +aYb +aYt +aYA +aYH +baw +bbF +aEq +apE +aEB +axm +axX +axm +azp +azX +aAC +aFg +aCh +aCP +aFx +aFW +aGz +aHk +aHX +aIz +aJn +aKe +aKe +aKe +aKe +aKe +aMU +aKe +aKe +aNG +aNN +aKe +aKe +aMU +aKe +aKe +aKe +aKj +aNi +aNi +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (89,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -ar -aD -ag -ao -eH -dz -aH -aR -ba -bq -cb -cN -UA -gn -ib -fz -gk -gX -hK -UU -jd -jV -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -vG -kx -wJ -xn -EM -ES -wJ -zY -AD -Fk -AB -CQ -zn -FX -AB -Hl -HY -IB -ts -Kf -Kf -Kj -Kg -Ke -Kj -Ke -Kg -NH -NH -Kg -NX -Kj -Ke -Kg -Kg -Kj -Pp -PL -Kj -Kj -Ef -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aar +aaD +aag +aao +aeH +aec +aaH +aaR +aba +abq +acb +acN +aUA +agn +ahY +afz +agk +agX +ahK +aUU +ajd +ajV +akn +aYO +aZs +awI +aEb +aSE +aYS +aYh +aYS +aYY +aZa +aZc +ajB +aPe +aZh +aZA +aZO +aYo +aYu +aYI +aPC +bay +bbF +avG +aNE +awJ +axn +aEM +aES +awJ +azY +aAD +aFk +aAB +aCQ +azn +aFX +aAB +aHl +aHY +aIB +ats +aKf +aKf +aKj +aKg +aKe +aKj +aKe +aKg +aNH +aNH +aKg +aNX +aKj +aKe +aKg +aLL +aKj +aLa +aPL +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (90,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -at -at -ag -ap -aZ -aA -aI -aS -aI -aS -cc -cO -UB -gn -iB -UV -gl -gX -hL -UU -je -jW -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -Ew -wP -wP -wP -wP -wP -wP -AE -wP -wP -wP -wP -wP -GA -Hm -HZ -IC -Jo -Kg -Kg -LA -Kg -Ke -MV -Ke -Kg -Kg -Kg -Kg -Ke -Oc -Ke -Kg -Kg -Kj -Pq -PM -PZ -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aat +abh +aag +aad +aaZ +aaA +aaI +aaS +aaI +aaS +acc +acO +abw +agn +aiB +aUV +agl +agX +ahL +aUU +aje +ajW +akn +alo +alo +alo +ayx +ayx +ayx +ayx +ayx +aZv +ayx +ayx +ayx +ayx +asT +ajH +aYf +bae +aYv +aYB +aYJ +baw +bbF +ajR +akx +awP +awP +awP +awP +awP +awP +aAE +awP +awP +awP +awP +awP +aGA +aHm +aHZ +aIC +aJo +aKg +aKg +aLA +aKg +aKe +aMV +aKe +aKg +aKg +aKg +aKg +aKe +aOc +aKe +aKg +aKg +aKj +aPq +aPM +aPZ +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (91,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ah -Vx -aZ -Vv -dw -aZ -aB -aJ -aT -bb -SM -SS -cP -dy -ee -eL -fB -gm -Vk -hM -Vt -jf -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -Ex -wP -xo -xY -yC -zr -zZ -AF -Bx -Ci -yC -Fy -FY -wP -Hn -Ia -Iz -Jn -Kh -KW -Kf -Mb -MA -MW -MA -Nx -Nx -Nx -Nx -MA -MW -MA -Ou -Nx -Pc -Pr -PM -Qa -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aah +aVx +aaZ +aVv +adw +aaZ +aaB +aaJ +aaT +abb +aSM +aSS +acP +ady +aee +aeL +afB +agm +aVk +ahM +aVt +ajf +ajX +akn +alk +aZt +alk +ayx +aZn +aYq +aZN +aPa +aZY +bav +baN +bbc +bbp +asT +aXV +aYg +bae +aYb +aYC +aYK +baw +bbF +ajR +aEx +awP +axo +axY +ayC +akX +azZ +aAF +aBx +aCi +ayC +aFy +aFY +awP +aHn +aIa +aIz +aJn +aKh +aKW +aKf +aMb +aMA +aMW +aMA +aNx +aNx +aNx +aNx +aMA +aMW +aMA +aOu +aNx +aPc +aPr +aPM +aQa +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (92,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ah -as -cd -Vw -aZ -aZ -aC -aK -aT -bc -SN -ST -cQ -ec -UI -eM -gY -fC -gY -hN -ii -iV -jY -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -vH -wq -wQ -xp -xZ -yD -yD -yD -AG -yD -yD -yD -xZ -FZ -wR -Ho -Ib -ID -Jp -Ki -KX -LB -Mc -MB -MX -Ke -Kg -Kg -Kg -Kg -Ke -Od -Ke -Ov -Kg -Kj -Ps -PM -Qa -Pb -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aah +aas +acd +aVw +aaZ +aaZ +aaC +aaK +aaT +abc +aSN +aST +acQ +adz +aUI +aeM +agY +afC +agY +ahN +aii +aiV +ajY +akn +bbq +aZu +bbu +ayx +aZo +aYW +aZb +aZz +aZT +baa +bal +bam +bbw +aEc +aYm +bak +aZI +aYb +aYy +aYL +baw +bbF +avH +awq +awQ +axp +axZ +ayD +ayD +ayD +aAG +ayD +ayD +ayD +axZ +aFZ +awR +aHo +aIb +aID +aJp +aKi +aKX +aLB +aMc +aMB +aug +aKe +aKg +aKg +aKg +aKg +aKe +aOd +aKe +aOv +aKg +aKj +aPs +aPM +aQa +aPb +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (93,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ag -ag -aL -aZ -aZ -aZ -go -QF -RN -Sp -SO -SU -Tl -dA -ag -eN -UW -Ve -Vl -Vo -ij -jg -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -wp -wR -xq -ya -yE -yE -yE -AH -yE -yE -yE -ya -Ga -wR -Ho -Ia -Iz -ts -Kj -Kj -Kj -Md -MC -Kj -Nj -Ny -NI -NO -Ny -Ke -Kj -Ke -Ov -Kg -Kj -Pt -PM -Kj -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aag +aag +aaL +aaZ +aaZ +aaZ +ago +aQF +aRN +aSp +aSO +aSU +aTl +adA +aag +aeN +aUW +aVe +aVl +aVo +aij +ajg +ajX +akn +alk +bbs +aNo +ayx +aZp +aZB +aZP +aZB +aZC +aZC +baU +ban +bbx +asT +aXX +aYi +aYp +aYw +aYD +aYM +baA +bbF +ajR +awp +awR +axq +aya +ayE +ayE +ayE +aAH +ayE +ayE +ayE +aya +aGa +awR +aHo +aIa +aIz +ats +aKj +aKj +aKj +aMd +aMC +aKj +aNj +aNy +aNI +aNO +aNy +aKe +aKj +aKe +aOv +aKg +aKj +aPt +aPM +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (94,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ag -aU -ce -dx -fx -gZ -RG -fx -Sq -SP -SV -Tm -SP -SP -SP -UX -Vf -Vm -eG -eG -jh -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -wp -wR -xr -ya -yF -yF -yF -AI -yF -yF -yF -ya -Gb -wR -Ho -Ia -IE -ts -Kk -KY -Kj -Me -MD -MY -Ke -Ke -NG -NN -Ke -Ke -MY -Ke -Ow -Ke -Kj -Pu -Pu -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aag +aaU +ace +aap +afx +agZ +aRG +afx +aSq +aSP +aSV +aTm +aSP +aSP +aSP +aUX +aVf +aVm +aeG +aeG +ajh +ajX +akn +alk +alk +bdD +ayx +aZq +aZC +aZC +aZC +aZC +bax +baV +bao +bap +asT +asT +asT +aYr +asT +asT +asT +asT +bbF +ajR +awp +awR +axr +aya +ayF +ayF +ayF +aAI +ayF +ayF +ayF +aya +aGb +awR +aHo +aIa +aIE +ats +aKk +aKY +aKj +aMe +aMD +aMY +aKe +aKe +aNG +aNN +aKe +aKe +aMY +aKe +aOw +aKe +aKj +aPu +aPu +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (95,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -az -bd -cf -ed -fy -hO -RK -Sb -Su -SP -SZ -Tn -UC -UJ -UP -UY -Vg -SP -hd -hS -ji -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -uI -vk -jR -wp -wR -xs -yb -ya -ya -Aa -AJ -By -ya -ya -yb -Gc -wR -Ho -Ia -IF -ts -ts -ts -ts -Mf -KT -KT -KT -KT -KT -KT -KT -KT -Oe -Oe -Ox -Oe -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aQW +aaz +abd +acf +aed +afy +ahO +aRK +aSb +aSu +aSP +aSZ +aTn +aUC +aUJ +aUP +aUY +aVg +aSP +ahd +ahS +aji +ajX +akn +alk +bbt +alk +ayx +ayx +aZD +aZQ +aZQ +aZQ +aZQ +aZQ +aln +ayx +alo +aqO +asT +aYp +asT +alY +alY +auI +bbA +ajR +awp +awR +axs +ayb +aya +aya +aAa +aAJ +aBy +aya +aya +ayb +aGc +awR +aHo +aIa +aIz +ats +ats +ats +ats +aMf +aKT +aKT +aKT +aKT +aKT +aKT +aKT +aKT +aOe +aOe +aOx +aOe +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (96,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -az -bp -cR -ed -fA -ih -RK -Sk -SE -SP -Tb -To -UD -UK -UQ -UZ -Vh -SP -gw -gw -Wi -jX -kG -lk -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lY -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -uJ -vk -jR -wr -wP -xt -yc -yc -zs -Ab -AK -Bz -Cj -CR -yc -Gd -wP -Hp -Ic -IG -Jn -AN -AN -Jn -KU -KU -KU -KU -KU -KU -KU -KU -KU -Kj -Kj -Oy -Kj -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaz +abp +acR +aed +afA +aih +aRK +aSk +asA +aSP +aTb +aTo +aUD +aUK +aUQ +aUZ +aVh +aSP +agw +agw +aWi +ajX +akn +bbq +aZu +bbu +bbv +ayx +aZE +aZR +aZR +aZR +aZR +aZR +bbi +ayx +aqO +aqO +asT +aPp +asT +alY +alY +auI +bbA +ajR +awr +awP +axt +ayc +ayc +azs +aAb +aAK +aBz +aCj +aCR +ayc +aGd +awP +aHp +aIc +aIG +aJn +aAN +aAN +aJn +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKU +aKj +aKj +aOy +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (97,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -az -br -du -ed -fD -Dp -RK -Sm -SG -SP -Tc -Tp -UE -UL -UR -Va -Vi -SP -Vq -Vu -ix -jX -kG -ll -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -lZ -Eb -Ec -Ee -Eg -Ej -Ee -Eg -Ej -Ee -Eg -Eo -jR -wp -wP -xu -wR -wR -zt -Ac -wR -BA -zt -wR -wR -wP -wP -Hq -Id -Iz -Jn -AN -AN -Jn -KU -ME -ME -ME -Nz -ME -ME -ME -NY -Kj -Oj -Oz -OM -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aaz +abr +adu +aed +afD +aDp +aRK +aSm +aSG +aSP +aTc +aTp +aUE +aUL +aUR +aVa +aVi +aSP +aVq +aVu +aix +ajX +akn +alk +bbs +alk +alk +ayx +aZF +aqd +aqd +aqd +aqd +aqd +bbj +ayx +alo +alo +asT +aYr +asT +alZ +alZ +auJ +bbA +ajR +awp +awP +axu +awR +awR +azt +aAc +awR +aBA +azt +awR +awR +awP +awP +aHq +aId +aIz +aJn +aAN +aAN +aJn +aKU +aME +aME +aME +aNz +aME +aME +aME +aNY +aKj +aOj +aOz +aOM +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (98,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -az -bs -dv -ed -fE -Gm -RK -Sn -SK -SP -Td -Tq -UF -UM -US -Vb -Vj -SP -Vr -Vu -ix -jX -kD -lm -lm -lm -lm -lm -lm -lm -lm -lm -qd -qR -qR -Ed -Ed -sA -sT -sT -sT -tI -ug -ug -vl -vI -ws -wS -xv -xv -xv -zu -Ad -AL -BB -Ck -CS -Fz -Ge -GB -Hr -Ae -Ax -Jn -AN -AN -Jn -KU -MF -MZ -Nk -Nl -NJ -NP -HH -KU -bg -Ok -OA -ON -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaz +abs +adv +aed +afE +aGm +aRK +aSn +aSK +aSP +aTd +aTq +aIR +aeA +aUS +aJl +aVj +aSP +aVr +aVu +aix +ajX +akG +aha +aha +aha +aha +alm +apS +aqQ +aqR +aqR +aZS +aZZ +anL +bdX +avi +avk +aEd +baE +baI +baR +baT +baT +bcY +avI +aws +awS +axv +axv +axv +alz +aAd +aAL +aBB +aCk +aCS +aFz +aGe +aGB +aHr +aAe +aAx +aJn +aAN +aAN +aJn +aKU +aMF +aMZ +aNk +aNl +aNJ +aNP +aSC +aKU +abg +aOk +aOA +aON +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (99,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -az -ca -ca -ed -gi -gi -RK -So -So -SP -SP -SP -SP -SP -SP -SP -SP -SP -gw -gw -ix -jZ -kH -kH -kH -kH -ni -nL -oj -nL -pa -nL -qe -nL -nL -nL -nL -sB -nL -td -nL -tJ -nL -nL -vm -vJ -wt -wT -wa -yd -yG -yG -Ae -yG -yG -Cl -CT -yG -yG -vZ -Hs -Ie -IH -Jq -Kl -KZ -Jn -KU -MF -Na -Nl -Nl -NK -NP -HH -KU -bg -Ok -OB -OO -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaz +aca +aca +aed +agi +agi +aRK +aSo +aSo +aSP +aSP +aSP +aSP +aSP +aSP +aSP +aSP +aSP +agw +agw +aix +ajZ +akH +akH +akH +akH +ani +anL +aoj +anL +apa +anL +aqe +anL +anL +anL +anL +asB +bbB +atd +anL +atJ +anL +anL +avm +avJ +awt +awT +awa +ayd +ayG +ayG +aAe +ayG +ayG +aCl +aCT +ayG +ayG +avZ +aHs +aIe +aIH +aJq +aKl +aKZ +aJn +aKU +aMF +aNa +aNl +aNl +aNK +aNP +aSC +aKU +abg +aOk +aOB +aOO +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (100,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -Tg -Ts -UG -UN -UG -Vc -UG -UG -Vs -gw -ix -ka -kI -ln -ma -mI -nj -nM -ok -oD -pb -pC -qf -qS -ro -rG -pS -sC -pS -jX -tu -tK -uh -uK -vn -vn -vn -wU -xw -ye -xw -xw -Af -xw -xw -xw -CU -CU -Gf -GC -Ht -If -II -Jr -Km -La -Jn -KU -MF -Nb -Nm -Nl -NK -NP -HH -KU -bg -Ok -OB -OP -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aTg +aTs +aUG +aUN +aUG +aVc +aUG +aUG +aVs +agw +aix +aka +akI +aMX +ama +amI +anj +anM +aok +aoD +apd +apC +aqf +aOT +aqU +arG +apS +asC +apS +ajX +atu +atK +auh +auK +aOg +avn +avn +awU +axw +aye +axw +axw +aAf +axw +axw +axw +aCU +aCU +aGf +aGC +aHt +aIf +aII +aJr +aKm +aOQ +aJn +aKU +aMF +aNb +aNm +aNl +aNK +aNP +aSC +aKU +abg +aOk +aOB +aOP +aKj +aQf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (101,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -be -be -be -be -UH -be -be -be -gw -gw -gw -gw -jj -kb -kJ -lo -mb -io -nk -io -ol -oE -pc -gw -qg -qT -pc -rH -sh -sD -sh -te -tv -tL -sh -uL -vo -vK -vK -rJ -vK -sF -rJ -zv -rJ -vK -vK -vK -vK -vK -rJ -rJ -Hu -Ig -rJ -rJ -rJ -rJ -rJ -KU -ME -ME -ME -ME -ME -ME -ME -KU -bg -Ok -OC -OQ -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +aUH +abe +abe +abe +agw +agw +agw +agw +ajj +akb +akJ +alo +amb +aio +ank +aio +aoE +aoF +aoF +agw +aqg +aqT +apc +arH +ash +asD +ash +ate +atv +atL +ash +auL +avo +avK +avK +arJ +avK +asF +arJ +azv +arJ +avK +avK +avK +avK +avK +arJ +arJ +aHu +aIg +arJ +arJ +arJ +arJ +arJ +aKU +aME +aME +aME +aME +aME +aME +aME +aKU +abg +aOk +aOC +axB +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (102,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -bf -bt -cg -cS -cg -ef -eO -fG -gp -ha -hP -il -jk -ka -kK -lp -mc -io -nl -nN -ol -oF -pd -gw -qh -gw -pc -rI -si -sE -sU -tf -tw -tM -ui -uM -rJ -vL -wu -wV -xx -ti -AR -BG -EY -sX -sX -AO -sX -sX -Gg -GD -Hv -Ih -IJ -Js -Kn -rJ -rJ -KU -KU -KU -KU -KU -KU -KU -KU -KU -Kj -Ol -Ol -Ol -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +abf +abt +acg +acS +acg +acg +aeO +afG +agp +aha +ahP +ail +ajk +aka +akK +alp +amc +aio +anl +anN +aol +alY +alY +agw +aqh +agw +apc +arI +asi +asE +asU +atf +atw +atM +aui +auM +arJ +avL +awu +awV +axx +ati +aAR +aBG +aEY +asX +asX +alM +asX +asX +aGg +aGD +aHv +aIh +aIJ +aJs +aKn +arJ +arJ +aKU +aKU +aKU +aKU +aKI +aKU +aKU +aKU +aKU +aKj +aOl +aOl +aOl +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (103,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bf -bu -ch -be -dB -eg -eP -fH -gq -hb -hQ -im -hb -kc -kL -lq -lq -mJ -nm -nO -ol -oG -pe -pc -qi -pc -pc -rJ -rJ -sF -sV -tg -tx -sF -rJ -rJ -rJ -vM -wu -uk -sX -sX -sX -sX -sX -AP -BD -Co -BC -FA -Gh -sX -sX -Ii -IK -Jt -Jt -Jt -Jt -Jt -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -Kj -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abf +abu +ach +abe +adB +aeg +aeP +afH +agq +ahb +ahQ +aim +ahb +akc +akL +alq +alq +amJ +anm +anO +aol +alZ +alZ +apc +aqi +apc +apc +arJ +arJ +asF +asV +atg +atx +asF +arJ +arJ +arJ +avM +awu +auk +asX +asX +asX +asX +asX +aAP +aBD +aCo +aBC +aFA +aGh +asX +asX +aIi +aIK +aJt +aJt +aJt +aJt +aJt +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aKj +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (104,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -be -be -be -be -ci -eh -eQ -fG -gr -hc -hR -in -DV -kd -kM -lr -md -io -nn -nP -om -Ea -pf -pD -qj -oH -rp -rK -sj -sG -sW -sG -ty -tN -uj -uN -vp -vp -vp -vp -vp -yf -yI -vp -Ah -AP -BC -BC -CW -FA -Gi -GE -Hw -Ij -IL -Jt -Ko -Lb -LC -Jt -ac -ac -ac -ac -ac -kk -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +aci +aeh +aeQ +afG +agr +ahc +ahR +ain +aDV +akd +agN +alr +amd +aio +ann +anP +aom +aXZ +aYd +aYk +aqj +aoH +arp +arK +asj +asG +asW +asG +aty +atN +auj +auN +avp +avp +avp +avp +avp +ayf +ayI +avp +aAh +aAP +aBC +aBC +aCW +aFA +aGi +aGE +aHw +aIj +aro +aJt +aKo +aLb +aLC +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (105,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -bf -bt -cg -cT -cg -eh -eR -be -gs -gs -gw -io -io -io -io -io -io -io -io -nQ -ol -oI -pg -pE -qk -qU -pc -rL -sk -sH -sX -th -Ek -El -Em -En -Em -Ek -Ek -Ek -Ek -EN -ET -EW -Ai -vp -BE -Cp -CX -FB -Gj -GF -Hx -Ik -IM -Jt -Kp -Lc -LD -Jt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +abf +abt +acg +acT +acg +aeh +aeR +abe +ags +ags +agw +aio +aio +aio +aio +aio +aio +aio +aio +anQ +aol +aYa +aYe +aYl +aqk +apg +apc +arL +ask +asH +asX +ath +aEk +aEl +aEm +aEn +aEm +aEk +aEk +aEk +aEk +aEN +aET +aEW +aAi +avp +aBE +aCp +aCX +aFB +aGj +aGF +aHx +aIk +aIM +aJt +aKp +aLc +aLD +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (106,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -bf -bu -ch -be -dD -eh -eS -be -ac -ac -ac -io -jl -ke -kN -ls -me -io -no -nR -on -oJ -oJ -oJ -oJ -oJ -oJ -rM -sl -sH -sX -ti -sX -tO -ul -uP -uk -sX -sX -sX -sX -yg -yJ -EX -Ek -Ek -EN -ET -Ek -FC -sX -GG -Hy -Il -IN -Ju -Kq -Ld -LE -Jt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +abf +abu +ach +abe +adD +aeh +aeS +abe +aac +aac +aac +aio +ajl +ake +akN +als +ame +aio +ano +anR +aon +aoJ +aoJ +aoJ +aoJ +aoJ +aoJ +arM +auP +asH +asX +ati +asX +atO +auk +auP +auk +asX +asX +asX +asX +ayg +ayJ +aEX +aEk +aEk +aEN +aET +aEk +aFC +asX +aGG +aHy +aIl +aIN +aJu +aKq +aLd +aLE +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (107,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -be -be -be -be -dE -ei -eT -be -ac -ac -ac -io -jm -kf -kf -kf -mf -mK -np -nS -oo -oK -ph -pF -ql -qV -oJ -ru -ru -sI -sY -sY -tz -tP -ru -uQ -vq -vN -wv -sX -sX -yg -yJ -sX -EZ -sX -yg -yJ -sX -FD -sX -GG -Hz -Im -IO -Jt -Kr -Le -LF -Jt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +adE +aei +aeT +abe +aac +aac +aac +aio +ajm +akf +akf +akf +amf +amK +anp +anS +aoo +aKc +aph +apF +aql +aqV +aoJ +aru +aru +asI +asY +asY +atz +atP +aru +auQ +avq +avN +awv +asX +asX +ayg +ayJ +asX +aEZ +asX +ayg +ayJ +asX +aFD +asX +aGG +aHz +aIm +aIO +aJt +aKr +aLe +aLF +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (108,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -bf -bt -cg -cU -cg -ej -dC -be -ac -ac -ac -io -jn -kg -kO -kf -mg -io -nq -nT -on -oL -oK -oK -qm -qW -rq -rN -sm -sJ -sZ -tj -sO -tQ -um -uR -vr -vO -ww -sX -uk -yh -yK -uk -sX -uk -yh -yK -uk -FD -sX -GG -Hz -Im -IP -Jt -Ks -Lf -LG -Jt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +abf +abt +acg +acU +acg +aej +adC +abe +aac +aac +aac +aio +ajn +akg +akO +akf +amg +aio +anq +anT +aon +aib +aoK +aoK +aqm +aqW +arq +arN +asm +asJ +asZ +atj +asO +atQ +aum +auR +avr +avO +aww +asX +auk +ayh +ayK +auk +asX +auk +ayh +ayK +auk +aFD +asX +aGG +aHz +aIm +aIP +aJt +aKs +aLf +aLG +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (109,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -bf -bu -ch -be -dF -ek -eV -fI -ac -ac -ac -io -jo -kf -kP -kf -mh -io -nr -nU -on -oM -oK -oK -qn -qX -rr -rO -sn -sK -rO -tk -rO -tR -ru -uS -vr -vO -ww -Aj -wu -sk -yL -wu -Fa -wu -BF -uO -wu -FE -sX -GG -Hz -Im -IQ -Jt -Kt -Lg -LH -Jt -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +abf +abu +ach +abe +adF +aek +aeV +afI +aac +aac +aac +aio +ajo +akf +akP +akf +aht +aio +anr +anU +aon +aoM +aoK +aoK +aqn +aqX +arr +arO +asn +asK +arO +atk +arO +atR +aru +auS +avr +avO +aww +aAj +awu +ask +ayL +awu +aFa +awu +aBF +auO +awu +aFE +asX +aGG +aHz +aIm +aJV +aJt +asr +aLg +aLH +aJt +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (110,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ad -be -be -be -be -be -be -eW -fJ -ac -ac -ad -io -jp -kf -kP -kf -mi -io -io -nV -on -oN -pi -pG -qo -qY -oJ -rP -so -sL -ta -tl -sO -sO -un -uR -vr -vO -ww -sX -uk -uk -uk -uk -sX -uk -uk -uk -uk -FD -sX -GG -HA -Im -IR -Jt -Jt -Jt -Jt -Jt -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +abe +abe +abe +abe +abe +abe +aeW +afJ +aac +aac +aac +aio +ajp +akf +akP +akf +ami +aio +aio +anV +aon +aoN +api +apG +aqo +aqY +aoJ +arP +aso +asL +ata +atl +asO +asO +aun +auR +avr +avO +aww +asX +auk +auk +auk +auk +asX +auk +auk +auk +auk +aFD +asX +aGG +aHA +aIm +arx +aJt +aJt +aJt +aJt +aJt +aGK +aQf +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (111,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -jq -kh -kP -lt -mj -mK -ns -nU -on -oJ -oJ -oJ -oJ -oJ -oJ -rQ -so -sM -ru -tm -sO -sO -uo -uT -vr -vO -ww -sX -sX -sX -sX -sX -sX -sX -sX -sX -sX -FD -sX -GG -Hz -Im -IS -rJ -Ku -Lh -LI -Mg -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aRm +aac +aac +aac +aac +aac +aac +aac +aio +ajq +akh +akP +alt +amj +amK +ans +anU +aon +aoJ +aoJ +aoJ +aoJ +aoJ +aoJ +arQ +aso +asM +aru +atm +asO +asO +auo +auT +avr +avO +aww +asX +asX +asX +asX +asX +asX +asX +asX +asX +asX +aFD +asX +aGG +aHz +aIm +aIS +arJ +aKu +aLh +aLI +aMg +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (112,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -jr -ki -kQ -lu -mk -mL -nt -nW -op -oO -pj -pk -qp -qZ -rs -rR -sp -sN -tb -tn -sO -sO -up -uR -vr -vO -ww -sX -sX -sX -sX -sX -sX -sX -sX -sX -sX -FD -sX -GH -HB -In -IT -rJ -Kv -Lh -GK -GK -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +ajr +aki +akQ +alu +amk +amL +ant +anW +aop +aoO +apj +apk +aqp +aqZ +ars +arR +asp +asN +atb +atn +asO +asO +aup +auR +avr +avO +aww +asX +asX +asX +asX +asX +asX +asX +asX +asX +asX +aFD +asX +aGH +aHB +aIn +aIT +arJ +aKv +aLh +aGK +aGK +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (113,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aq -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -js -kj -kR -lv -ml -mK -nu -nX -op -oP -pk -pk -qq -ra -rt -rS -sq -Eh -sO -sO -sO -sO -up -uR -vr -vO -ww -sX -sX -sX -sX -sX -sX -sX -sX -sX -sX -FF -rJ -rJ -rJ -rJ -rJ -rJ -Kw -Lh -LJ -Mh -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +ajs +akj +akR +alv +aml +amK +anu +anX +aop +aoP +apk +apk +aqq +ara +art +arS +asq +aEh +asO +asO +asO +asO +aup +auR +avr +avO +aww +asX +asX +asX +asX +asX +asX +asX +asX +asX +asX +and +arJ +arJ +arJ +arJ +arJ +arJ +aKw +aLh +aLJ +aMh +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (114,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -io -io -io -io -io -io -io -js -nY -op -oQ -pl -pH -pk -rb -rs -rT -sr -sP -tc -to -tA -tS -up -uU -vs -vO -ww -sX -xx -uk -yM -zx -Ak -sX -sX -sX -sX -FG -Gk -GI -HC -Io -IU -Jv -Kx -Lh -GK -GK -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +aio +aio +aio +aio +aio +aio +ajs +anY +aop +aKt +apl +apH +apk +arb +ars +arT +ajD +asP +atc +ato +atA +atS +aup +auU +ako +avO +aww +asX +axx +auk +ayM +azx +aIQ +asX +asX +asX +asX +aFG +aGk +aGI +aHC +aIo +aIU +aJv +aKx +aLh +aGK +aGK +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (115,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kk -ac -ac -ac -io -io -io -op -oR -oR -oR -oR -oR -ru -ru -ru -sQ -sQ -sQ -sQ -sQ -ru -rJ -rJ -vP -vP -vP -vP -vP -rJ -rJ -rJ -AQ -uk -sX -uk -FH -rJ -GJ -HD -HD -IV -Jw -Ky -Lh -LK -Mh -GK -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aio +aio +aio +aop +aoR +aoR +aoR +aoR +aoR +aru +aru +aru +asQ +asQ +asQ +asQ +asQ +aru +arJ +arJ +avP +avP +avP +avP +avP +arJ +arJ +arJ +aAQ +auk +asX +auk +aFH +arJ +aGJ +aHD +aHD +aIV +aJw +aKy +aLh +aLK +aMh +aGK +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (116,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -kk -ac -ac -ac -ac -ac -ac -ac -ac -ac -Fb -wu -wu -xx -wu -FI -rJ -GK -GK -GK -GK -GK -GK -GK -GK -GK -GK -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aFb +awu +awu +axx +awu +aFI +arJ +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aGK +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (117,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -rJ -vP -vP -vP -vP -vP -rJ -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aaq +aaq +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +arJ +avP +avP +avP +avP +avP +arJ +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (118,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aac +aac +aac +aab +aab +aab +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (119,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ac -ac -ac -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aac +aac +aac +aac +aac +aac +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aab +aab +aab +aab +aab +aab +aac +aac +aac +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (120,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aaq +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (121,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (122,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (123,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (124,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (125,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (126,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (127,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (128,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (129,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (130,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (131,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (132,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (133,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (134,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (135,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (136,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (137,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (138,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (139,1,1) = {" -aa -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -ab -aa +aaa +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aab +aaa "} (140,1,1) = {" -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa +aaa "} diff --git a/maps/tether/tether-04-transit.dmm b/maps/tether/tether-04-transit.dmm index ff62ecbba9..958a9daec2 100644 --- a/maps/tether/tether-04-transit.dmm +++ b/maps/tether/tether-04-transit.dmm @@ -21,6 +21,9 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, +/obj/machinery/alarm{ + pixel_y = 26 + }, /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) "d" = ( @@ -49,23 +52,15 @@ /turf/simulated/floor/holofloor/tiled/dark, /area/tether/elevator) "g" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 1 }, -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/airlock/maintenance/engi, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/maintenance/tether_midpoint) +/area/tether/midpoint) "h" = ( /obj/structure/disposalpipe/segment, /obj/structure/cable{ @@ -92,6 +87,7 @@ }, /obj/structure/disposalpipe/down, /obj/effect/ceiling, +/obj/machinery/door/firedoor/glass, /turf/simulated/open, /area/maintenance/tether_midpoint) "j" = ( @@ -214,7 +210,10 @@ icon_state = "1-2"; pixel_y = 0 }, -/turf/simulated/floor/plating, +/obj/structure/lattice, +/obj/structure/disposalpipe/down, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, /area/maintenance/tether_midpoint) "u" = ( /obj/effect/step_trigger/teleporter/planetary_fall/virgo3b, @@ -229,15 +228,19 @@ /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/midpoint) "w" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, +/obj/structure/window/reinforced{ + dir = 8 + }, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/midpoint) "x" = ( @@ -271,10 +274,17 @@ pixel_x = -24 }, /obj/structure/cable, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) "A" = ( /obj/effect/ceiling, +/obj/structure/disposalpipe/up{ + dir = 8 + }, /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) "B" = ( @@ -313,19 +323,34 @@ /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) "H" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced, -/obj/structure/window/reinforced{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 4 }, +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/airlock/maintenance/engi, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, -/area/tether/midpoint) +/area/maintenance/tether_midpoint) "I" = ( /obj/structure/closet, /obj/random/plushie, /turf/simulated/floor/plating, /area/maintenance/tether_midpoint) +"J" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/civilian, +/turf/simulated/floor/wood, +/area/tether/midpoint) "K" = ( /obj/structure/cable{ d1 = 1; @@ -341,17 +366,23 @@ }, /turf/simulated/floor/wood, /area/tether/midpoint) -"N" = ( +"M" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ - dir = 8 - }, +/obj/structure/window/reinforced, /obj/structure/window/reinforced{ dir = 4 }, +/obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/tether/midpoint) +"N" = ( +/obj/structure/table/woodentable, +/obj/machinery/camera/network/civilian{ + dir = 1 + }, +/turf/simulated/floor/wood, +/area/tether/midpoint) "O" = ( /obj/structure/cable{ d1 = 1; @@ -10177,7 +10208,7 @@ u u u b -g +H d d f @@ -10601,7 +10632,7 @@ u u u u -H +g k q q @@ -10612,7 +10643,7 @@ F q E p -H +g u u u @@ -10743,7 +10774,7 @@ u u u u -H +g U q q @@ -10754,7 +10785,7 @@ R q q U -H +g u u u @@ -10885,8 +10916,8 @@ u u u u -H -n +g +J q q F @@ -10895,8 +10926,8 @@ F F q q -n -H +N +g u u u @@ -11027,7 +11058,7 @@ u u u u -H +g L q q @@ -11038,7 +11069,7 @@ q q q L -H +g u u u @@ -11170,17 +11201,17 @@ u u u v -N -N -N -N -N -N -N -N -N -N w +w +w +w +w +w +w +w +w +w +M u u u diff --git a/maps/tether/tether-05-station1.dmm b/maps/tether/tether-05-station1.dmm index 76e1833a35..6081f06b39 100644 --- a/maps/tether/tether-05-station1.dmm +++ b/maps/tether/tether-05-station1.dmm @@ -1,2153 +1,2159 @@ -"aaa" = (/turf/space,/area/space) -"aab" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) -"aac" = (/turf/simulated/mineral/vacuum,/area/mine/explored/upper_level) -"aad" = (/turf/simulated/wall/r_wall,/area/chapel/observation) -"aae" = (/turf/simulated/wall,/area/chapel/chapel_morgue) -"aaf" = (/turf/space,/area/shuttle/excursion/tether_nearby) -"aag" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/space) -"aah" = (/obj/structure/closet/coffin,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aai" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aaj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aak" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aal" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/closet/coffin,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aam" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aan" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) -"aao" = (/obj/machinery/light/small{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aap" = (/obj/machinery/door/blast/regular{id = "chapelgun"; name = "Chapel Launcher Door"},/turf/simulated/floor,/area/chapel/observation) -"aaq" = (/turf/simulated/wall,/area/chapel/observation) -"aar" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aas" = (/obj/machinery/power/smes/buildable{charge = 2e+006; input_attempt = 1; input_level = 100000; output_level = 200000; RCon_tag = "Engine - Core"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes) -"aat" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored/upper_level) -"aau" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aav" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/chapel/observation) -"aaw" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor,/area/chapel/observation) -"aax" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aay" = (/obj/machinery/door/airlock{name = "Chapel Morgue"; req_one_access = list(6,27)},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aaz" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/engineering/engine_smes) -"aaA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes) -"aaB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aaC" = (/obj/machinery/power/grid_checker,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes) -"aaD" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"aaE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aaF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aaG" = (/obj/machinery/power/smes/buildable{charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; output_level = 1e+006; RCon_tag = "Power - Main"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes) -"aaH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aaI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aaJ" = (/obj/structure/morgue{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aaK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aaL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/turf/simulated/floor,/area/engineering/engine_smes) -"aaM" = (/obj/machinery/mass_driver{dir = 1; id = "chapelgun"},/obj/machinery/door/window{dir = 2; name = "Mass Driver"; req_access = list(22)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor,/area/chapel/observation) -"aaN" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aaO" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/pickengine,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aaP" = (/obj/machinery/light_switch{dir = 1; pixel_y = -24},/obj/machinery/button/crematorium{pixel_x = 8; pixel_y = -26; req_access = newlist(); req_one_access = list(6,27)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"aaQ" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) -"aaR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = -25; pixel_y = 0; req_access = list(10); specialfunctions = 4},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aaS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aaT" = (/turf/simulated/wall,/area/hallway/station/atrium) -"aaU" = (/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"aaV" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/engi_wash) -"aaW" = (/turf/simulated/wall,/area/chapel/office) -"aaX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aaY" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aaZ" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"aba" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "chapel"},/turf/simulated/floor,/area/chapel/office) -"abb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/paper{info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Chapel Morgue"; req_access = list(27)},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/office) -"abd" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/drinks/bottle/holywater,/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/turf/simulated/floor/lino,/area/chapel/office) -"abe" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_smes) -"abg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/atrium) -"abi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abj" = (/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) -"abk" = (/turf/simulated/floor/reinforced,/area/engineering/engine_room) -"abl" = (/obj/machinery/photocopier,/turf/simulated/floor/lino,/area/chapel/office) -"abm" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{icon_state = "0-2"},/turf/simulated/floor/lino,/area/chapel/office) -"abn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abp" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) -"abq" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_interior"; locked = 0; name = "Engine Airlock Interior"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"abr" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abs" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_exterior"; locked = 0; name = "Engine Airlock Exterior"; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock) -"abt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abv" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/table/reinforced,/obj/item/device/pipe_painter,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"abw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abx" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aby" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"abz" = (/obj/structure/flora/pottedplant/stoutbush,/obj/machinery/button/windowtint{id = "chapel"; pixel_x = 8; pixel_y = 29},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "chapel_obs"; layer = 3.3; name = "Chapel Observation Shutters"; pixel_x = -6; pixel_y = 29; req_access = list(27)},/turf/simulated/floor/lino,/area/chapel/office) -"abA" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abB" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"abC" = (/turf/simulated/wall,/area/maintenance/station/eng_lower) -"abD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abE" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest2"; name = "Engine Room Blast Doors"; pixel_x = 25; pixel_y = 0; req_access = null; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"abF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abJ" = (/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"abK" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/item/weapon/nullrod,/turf/simulated/floor/lino,/area/chapel/office) -"abL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"abM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"abN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/engineering{dir = 8},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"abO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"abP" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abQ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abR" = (/obj/structure/table/steel,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abT" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"abU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) -"abV" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/lino,/area/chapel/office) -"abW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) -"abX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"abY" = (/obj/structure/bed/chair,/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/lino,/area/chapel/office) -"abZ" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/backup) -"aca" = (/obj/structure/table/steel,/obj/item/weapon/deck/cards,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"acb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"acc" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/lino,/area/chapel/office) -"acd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) -"ace" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"acf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acg" = (/turf/simulated/wall/r_wall,/area/engineering/engine_gas) -"ach" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aci" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/random/soap,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"acj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"ack" = (/turf/simulated/floor,/area/maintenance/station/eng_lower) -"acl" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"acm" = (/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aco" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium) -"acp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"acr" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acs" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium) -"act" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"acv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"acw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/engineering) -"acy" = (/turf/simulated/floor/grass,/area/hallway/station/atrium) -"acz" = (/turf/simulated/wall/r_wall,/area/engineering/hallway) -"acA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/contraband,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"acB" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"acC" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"acD" = (/obj/item/weapon/reagent_containers/food/snacks/donut/cherryjelly,/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"acE" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"acF" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"acG" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"acH" = (/turf/simulated/floor/wood,/area/hallway/station/atrium) -"acI" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"acJ" = (/turf/simulated/floor,/area/engineering/engine_room) -"acK" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"acL" = (/turf/simulated/wall/r_wall,/area/engineering/engine_smes) -"acM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/broken{icon_state = "pipe-b"; dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"acN" = (/turf/simulated/wall/r_wall,/area/chapel/main) -"acO" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Engineering"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/engineering) -"acP" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"acQ" = (/turf/simulated/floor/tiled/dark,/area/chapel/main) -"acR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) -"acS" = (/turf/simulated/wall/r_wall,/area/engineering/workshop) -"acT" = (/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"acU" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"acV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"acW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"acX" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 9},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"acY" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium) -"acZ" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"ada" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium) -"adb" = (/obj/effect/landmark/engine_loader_pickable{clean_turfs = list(list(20,93,30,118),list(31,94,35,96),list(29,97,43,118),list(44,113,46,118))},/turf/space,/area/space) -"adc" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/grass,/area/hallway/station/atrium) -"add" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"ade" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"adf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring) -"adg" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adh" = (/obj/structure/girder,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adi" = (/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adj" = (/turf/simulated/floor/lino,/area/chapel/office) -"adk" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"adl" = (/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"adm" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"adn" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/machinery/floor_light/prebuilt{on = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ado" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"adp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"adq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"adr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) -"ads" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"adt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/engineering) -"adu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"adv" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"adw" = (/obj/structure/curtain/open/bed,/obj/structure/bed/padded,/obj/item/weapon/bedsheet/blue,/obj/random/plushie,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adx" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ady" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"adz" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"adA" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/device/flashlight/lamp{pixel_x = 2; pixel_y = 7},/turf/simulated/floor/lino,/area/chapel/office) -"adB" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -2; pixel_y = 8},/obj/item/weapon/pen/blue{pixel_x = 2; pixel_y = 1},/turf/simulated/floor/lino,/area/chapel/office) -"adC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/turf/simulated/floor,/area/maintenance/substation/engineering) -"adD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/engineering) -"adE" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"adF" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/engineering) -"adG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adH" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"adI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/maintenance/substation/engineering) -"adJ" = (/obj/machinery/light{dir = 4},/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/item/weapon/storage/fancy/crayons,/turf/simulated/floor/lino,/area/chapel/office) -"adK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"adM" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"adN" = (/turf/simulated/wall/r_wall,/area/chapel/office) -"adO" = (/turf/simulated/wall/r_wall,/area/gateway/prep_room) -"adP" = (/turf/simulated/wall/r_wall,/area/gateway) -"adQ" = (/obj/machinery/computer/power_monitor{dir = 4; throwpass = 1},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"adR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/atrium) -"adS" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"adT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"adU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"adV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"adW" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor,/area/maintenance/substation/engineering) -"adX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"adY" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"adZ" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor,/area/maintenance/substation/engineering) -"aea" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aeb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) -"aec" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aed" = (/obj/structure/bed/chair,/obj/machinery/light/small{dir = 1},/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; frequency = 1473; name = "Confession Intercom"; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aee" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aef" = (/obj/random/junk,/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aeg" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aeh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aei" = (/turf/simulated/wall/r_wall,/area/mine/explored/upper_level) -"aej" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth (Chaplain)"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aek" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) -"ael" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/effect/decal/cleanable/dirt,/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/hallway/station/docks) -"aem" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aen" = (/turf/simulated/floor/tiled,/area/engineering/workshop) -"aeo" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/lino,/area/chapel/office) -"aep" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = -2; pixel_y = 32},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"aeq" = (/obj/machinery/computer/cryopod{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"aer" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/tether{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aes" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/station_map{pixel_y = 32},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aet" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/security/engineering{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aeu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) -"aev" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/lino,/area/chapel/office) -"aew" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring) -"aex" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/lino,/area/chapel/office) -"aey" = (/turf/simulated/floor/tiled,/area/gateway/prep_room) -"aez" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/engine_monitoring) -"aeA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engine Monitoring Room"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"aeB" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway) -"aeC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aeD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aeE" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) -"aeG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aeH" = (/obj/structure/grille,/obj/structure/window/reinforced/tinted,/obj/structure/window/reinforced/tinted{dir = 4; icon_state = "twindow"},/obj/structure/window/reinforced/tinted{dir = 1},/obj/structure/window/reinforced/tinted{dir = 8; icon_state = "twindow"},/turf/simulated/floor,/area/chapel/main) -"aeI" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) -"aeJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/airlock{name = "Chapel Office"; req_access = list(27)},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/lino,/area/chapel/office) -"aeK" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light/small,/obj/item/device/radio/intercom{broadcasting = 1; dir = 8; frequency = 1473; name = "Confession Intercom"; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aeL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/tool,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aeM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aeN" = (/obj/machinery/door/morgue{dir = 2; name = "Confession Booth"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aeO" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator) -"aeP" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aeQ" = (/obj/machinery/computer/rcon{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aeR" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) -"aeS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aeT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"aeU" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aeV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aeW" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"aeX" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"aeY" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"aeZ" = (/obj/machinery/light_switch{pixel_x = 7; pixel_y = 30},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "chapel_obs"; layer = 3.3; name = "Chapel Observation Shutters"; pixel_x = -6; pixel_y = 29; req_one_access = list(6,27)},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afa" = (/obj/structure/sign/department/chapel,/turf/simulated/wall,/area/hallway/station/atrium) -"afb" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afc" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/hallway/station/atrium) -"afd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aff" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afh" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afi" = (/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afj" = (/obj/machinery/light,/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afl" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway) -"afn" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afp" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) -"afq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afr" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afs" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afv" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/bridge) -"afw" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/bridge) -"afx" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/bridge) -"afy" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/elevator) -"afz" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afC" = (/turf/simulated/wall/r_wall,/area/hallway/station/atrium) -"afD" = (/obj/machinery/camera/network/tether{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afE" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afF" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"afH" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afI" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"afJ" = (/obj/machinery/vending/snack,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afK" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) -"afL" = (/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afN" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_monitoring) -"afQ" = (/obj/machinery/light{dir = 1},/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"afR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/carpet,/area/chapel/main) -"afS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) -"afT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/item/weapon/stool/padded,/obj/effect/landmark/start{name = "Chaplain"},/turf/simulated/floor/carpet,/area/chapel/main) -"afU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled,/area/engineering/workshop) -"afV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled,/area/bridge_hallway) -"afW" = (/obj/machinery/door/airlock/glass{name = "Chapel"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/hallway/station/atrium) -"afX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) -"afY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"afZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aga" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"agb" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/hallway/station/atrium) -"agc" = (/obj/structure/grille,/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief) -"agd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"age" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"agg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agh" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agi" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/obj/structure/window/reinforced/polarized{dir = 8; id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief) -"agj" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) -"agk" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) -"agl" = (/obj/structure/grille,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/obj/structure/window/reinforced/polarized{dir = 1; id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) -"agm" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) -"agn" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/window/reinforced/polarized/full{id = "hop_office"},/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) -"ago" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/chapel/main) -"ags" = (/obj/effect/floor_decal/chapel{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"agt" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"agu" = (/obj/structure/sign/deck1,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator) -"agv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agx" = (/obj/structure/disposalpipe/sortjunction{dir = 8; name = "Chapel"; sortType = "Chapel"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agy" = (/obj/effect/floor_decal/chapel{dir = 8},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"agz" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"agA" = (/obj/effect/floor_decal/chapel,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"agB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/carpet,/area/hallway/station/atrium) -"agC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/hallway/station/atrium) -"agD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/hallway/station/atrium) -"agE" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/carpet,/area/chapel/main) -"agF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/obj/machinery/light/small{dir = 1},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_al_c_snsr"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"agG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"agH" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"agI" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"agJ" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room) -"agK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"agL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"agM" = (/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"agN" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"agO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"agP" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"agQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agR" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"agT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agU" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agW" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"agZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aha" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahb" = (/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahc" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/tether,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"ahe" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/chapel/main) -"ahf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"ahg" = (/obj/structure/table/woodentable,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/chapel/main) -"ahh" = (/obj/structure/closet/wardrobe/chaplain_black,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/lino,/area/chapel/office) -"ahi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahj" = (/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"ahk" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"ahl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"ahm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"aho" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/substation/engineering) -"ahp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahq" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"ahr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"ahs" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"aht" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 2; id = "chapel_obs"; name = "Chapel Observation"},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"ahu" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahv" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ahw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahx" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) -"ahy" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"ahz" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/dark,/area/gateway) -"ahA" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway) -"ahB" = (/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"ahC" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock) -"ahE" = (/obj/effect/floor_decal/chapel{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahK" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"ahL" = (/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"ahN" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ahO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"ahP" = (/turf/simulated/floor/carpet,/area/chapel/main) -"ahQ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/shutters{dir = 2; id = "chapel_obs"; name = "Chapel Observation"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/observation) -"ahR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"ahS" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway) -"ahT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"ahU" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"ahV" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) -"ahW" = (/obj/structure/lattice,/turf/space,/area/space) -"ahX" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) -"ahY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/structure/symbol/lo{pixel_x = -32},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"ahZ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aia" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aic" = (/obj/effect/floor_decal/chapel,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aid" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aie" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aif" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aig" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/chapel/main) -"aih" = (/obj/effect/floor_decal/chapel,/obj/machinery/camera/network/civilian{dir = 8},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aii" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) -"aij" = (/turf/simulated/wall/r_wall,/area/engineering/break_room) -"aik" = (/turf/simulated/wall/r_wall,/area/maintenance/station/eng_lower) -"ail" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/bench/padded,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aim" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ain" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aio" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aip" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aiq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"air" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ais" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ait" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/carpet,/area/chapel/main) -"aiv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aix" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/bench/padded,/obj/machinery/light{dir = 4; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiy" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; pixel_x = -24; tag_airpump = "engine_airlock_pump"; tag_chamber_sensor = "eng_al_c_snsr"; tag_exterior_door = "engine_airlock_exterior"; tag_exterior_sensor = "eng_al_ext_snsr"; tag_interior_door = "engine_airlock_interior"; tag_interior_sensor = "eng_al_int_snsr"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"aiz" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green,/turf/simulated/floor,/area/gateway) -"aiA" = (/obj/effect/floor_decal/chapel{dir = 1},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiB" = (/obj/effect/floor_decal/chapel{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiC" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"aiD" = (/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "eng_al_ext_snsr"; layer = 3.3; master_tag = "engine_room_airlock"; pixel_x = -22; pixel_y = 0; req_access = list(10)},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"aiE" = (/obj/effect/floor_decal/chapel{dir = 8},/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiF" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"aiG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aiH" = (/obj/effect/floor_decal/chapel,/obj/structure/table/bench/padded,/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aiI" = (/obj/machinery/light,/turf/simulated/floor/carpet,/area/chapel/main) -"aiJ" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) -"aiK" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) -"aiL" = (/obj/machinery/door/blast/shutters{dir = 2; id = "GateShut"; layer = 3.3; name = "Gateway Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway) -"aiM" = (/turf/simulated/wall/r_wall,/area/engineering/engine_airlock) -"aiN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"aiO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aiP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aiQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"aiR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aiS" = (/turf/simulated/floor/tiled/dark,/area/gateway) -"aiT" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage) -"aiU" = (/obj/machinery/button/remote/blast_door{id = "GateShut"; name = "Gateway Shutter"; pixel_y = 24; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway) -"aiV" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aiW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aiX" = (/obj/structure/closet,/obj/random/junk,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aiY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/gateway) -"aiZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"aja" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway) -"ajb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/gateway) -"ajc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/command{name = "Gateway Electrical Shaft"; req_access = list(62); req_one_access = list()},/turf/simulated/floor,/area/gateway) -"ajd" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"aje" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajf" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/dark,/area/gateway) -"ajg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajh" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"aji" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajj" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajm" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajo" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) -"ajq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/tether,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock) -"aju" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajv" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajw" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajx" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"ajz" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajA" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"ajC" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"ajD" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) -"ajE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajF" = (/turf/simulated/floor/carpet,/area/engineering/break_room) -"ajG" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"ajH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage) -"ajJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ajL" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajM" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajN" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajO" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajR" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajS" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajT" = (/turf/simulated/floor/bluegrid,/area/gateway/prep_room) -"ajU" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/gateway/prep_room) -"ajV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajW" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"ajX" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajY" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ajZ" = (/obj/machinery/suit_cycler/medical{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"aka" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"akb" = (/obj/machinery/suit_cycler/mining{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"akc" = (/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Public Access Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway) -"akd" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ake" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"akf" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway) -"akg" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"akh" = (/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway) -"aki" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akj" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"akk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/storage) -"akl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"akm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor,/area/engineering/storage) -"akn" = (/obj/effect/floor_decal/rust,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"ako" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"akp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/engineering/storage) -"akq" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"akr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"aks" = (/turf/simulated/floor,/area/engineering/engine_gas) -"akt" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"aku" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Public Access Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway) -"akw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) -"akx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) -"aky" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway) -"akz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway) -"akA" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akB" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akC" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akE" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway) -"akF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/gateway) -"akG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/gateway) -"akH" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway) -"akI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akJ" = (/obj/structure/table/reinforced,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"akK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akL" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) -"akM" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"akN" = (/obj/machinery/door/airlock/multi_tile/metal{name = "Gateway Prep Room"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"akP" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"akR" = (/obj/machinery/camera/network/engineering{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) -"akS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) -"akT" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"akU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = 24; pixel_y = -23; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/gateway/prep_room) -"akV" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = -24; pixel_y = 24; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"akW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) -"akX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"akY" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"akZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"ala" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alb" = (/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"alc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) -"ald" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ale" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) -"alf" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Exploration Public Access"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alh" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/camera/network/exploration{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"ali" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"alj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"alk" = (/obj/machinery/floodlight,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"all" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_x = 25; pixel_y = 25; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"alm" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"aln" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/extinguisher_cabinet{pixel_x = 27},/turf/simulated/floor/tiled/dark,/area/chapel/main) -"alo" = (/obj/machinery/camera/network/exploration,/turf/simulated/floor/bluegrid,/area/gateway/prep_room) -"alp" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/camera/network/exploration{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"alq" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) -"alr" = (/obj/machinery/computer/station_alert{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) -"als" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/recharger,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/break_room) -"alt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_monitoring) -"alu" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/camera/network/exploration{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) -"alv" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) -"alw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup) -"alx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/atmos/backup) -"aly" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"alz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup) -"alA" = (/turf/simulated/wall,/area/holodeck_control) -"alB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) -"alC" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"alD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) -"alE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"alF" = (/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) -"alG" = (/turf/simulated/floor,/area/engineering/shaft) -"alH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"alI" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"alJ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) -"alK" = (/obj/structure/ladder/up,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/shaft) -"alL" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alM" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alN" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) -"alO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/start,/turf/simulated/floor/tiled,/area/storage/tools) -"alP" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools) -"alQ" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian) -"alR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) -"alS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools) -"alT" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency4) -"alU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alV" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"alW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/steeldecal/steel_decals_central6{icon_state = "steel_decals_central6"; dir = 8},/obj/machinery/alarm{pixel_y = 22},/obj/vehicle/train/engine,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) -"alX" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"alY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"alZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"ama" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cafe2"; name = "Cafe Shutters"; pixel_x = -10; pixel_y = 36; req_access = list(); req_one_access = list(25)},/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"amc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/engineering/hallway) -"amd" = (/obj/machinery/light{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"ame" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/device/gps/command,/obj/item/device/gps/command,/obj/item/device/gps/command,/turf/simulated/floor/tiled/dark,/area/teleporter) -"amf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) -"amg" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) -"amh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/supply{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"ami" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"amk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aml" = (/obj/machinery/light,/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) -"amm" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"amo" = (/obj/machinery/door/window/northright{name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"amq" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"amr" = (/obj/structure/railing{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"ams" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/engineering,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/hallway) -"amt" = (/obj/machinery/door/window{dir = 1; icon_state = "left"; name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amu" = (/obj/structure/railing{dir = 1},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"amv" = (/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"amw" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"amx" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"amy" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/device/flashlight/lamp/green,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amC" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amD" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amE" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) -"amF" = (/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amG" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_coffee/full,/turf/simulated/floor/wood,/area/hallway/station/atrium) -"amH" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) -"amI" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"amJ" = (/obj/machinery/light/flamp/noshade,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"amK" = (/turf/space,/area/shuttle/specialops/tether) -"amL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"amM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control) -"amN" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/holodeck_control) -"amO" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/storage) -"amP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"amQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"amR" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"amS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"amT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"amU" = (/turf/simulated/wall,/area/maintenance/abandonedlibrary) -"amV" = (/obj/structure/sign/department/biblio,/turf/simulated/wall,/area/hallway/station/atrium) -"amW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/hallway/station/atrium) -"amX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/hallway/station/atrium) -"amY" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"amZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"ana" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/engineering_guide,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anb" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/book/manual/engineering_hacking,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/shaft) -"and" = (/obj/machinery/computer/atmoscontrol{dir = 4},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"ane" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/shaft) -"anf" = (/obj/machinery/camera/network/civilian{dir = 2},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"ang" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"anh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"ani" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anj" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"ank" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anl" = (/obj/structure/sign/department/engine,/turf/simulated/wall/r_wall,/area/engineering/hallway) -"anm" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"ann" = (/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"ano" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"anp" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) -"anr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"ans" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"ant" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"anu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) -"anv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) -"anw" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anx" = (/obj/random/junk,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) -"any" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"anz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway) -"anA" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"anC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"anD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"anE" = (/obj/structure/symbol/lo{pixel_y = 32},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"anF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor,/area/engineering/hallway) -"anG" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anH" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room) -"anI" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"anL" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway) -"anM" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/hydroponics_pod_people,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anN" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 12},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anP" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) -"anQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"anR" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) -"anS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anT" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/book/codex/lore/news,/obj/random/contraband,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"anU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"anV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anW" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anX" = (/obj/structure/bookcase,/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"anY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"anZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aoa" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"aob" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoc" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/rust_engine,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"aod" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"aoe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) -"aof" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/civilian) -"aog" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) -"aoh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/atmos/backup) -"aoi" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) -"aoj" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aok" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aol" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aom" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aon" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aoo" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aop" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aoq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aor" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aos" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"aot" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Electrical Shaft"; req_one_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/hallway) -"aou" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aov" = (/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"aow" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) -"aox" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/hallway) -"aoz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) -"aoA" = (/obj/structure/table/woodentable,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/obj/random/medical,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoB" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aoC" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoD" = (/obj/machinery/newscaster{pixel_x = 30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoE" = (/obj/random/junk,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoF" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/engineering/break_room) -"aoG" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/foyer) -"aoH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aoI" = (/turf/simulated/floor/tiled,/area/engineering/foyer) -"aoJ" = (/turf/simulated/wall/r_wall,/area/engineering/foyer) -"aoK" = (/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoL" = (/obj/random/trash,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"aoM" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoN" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoO" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/emergency4) -"aoP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"aoR" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized/full{id = "library_study"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoS" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoT" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/book/codex,/obj/random/maintenance,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"aoU" = (/obj/structure/table,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) -"aoV" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/holodeck_control) -"aoW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoX" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aoY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"aoZ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway) -"apa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apc" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"ape" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/hallway) -"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/break_room) -"aph" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"api" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"apj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apm" = (/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"apn" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"app" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/meter,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"apq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"apr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aps" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Substation"; req_access = list(24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup) -"apt" = (/obj/item/stack/tile/wood{amount = 10},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"apv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apw" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apx" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apC" = (/obj/machinery/button/windowtint{id = "library_study"; pixel_x = 26; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apD" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/table/woodentable,/obj/random/junk,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"apF" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"apG" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apH" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"apI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apL" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apM" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"apN" = (/obj/machinery/computer/security/engineering,/turf/simulated/floor/wood,/area/engineering/break_room) -"apO" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/wood,/area/engineering/break_room) -"apP" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/wood,/area/engineering/break_room) -"apQ" = (/turf/simulated/floor/wood,/area/engineering/break_room) -"apR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) -"apS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) -"apT" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/engineering/break_room) -"apU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"apV" = (/obj/structure/table/woodentable,/obj/random/maintenance,/obj/random/mouseremains,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"apW" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"apX" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) -"apY" = (/obj/machinery/light_construct/small,/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"apZ" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibrary) -"aqa" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"aqc" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/machinery/light/small,/obj/random/drinkbottle,/obj/random/coin,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) -"aqd" = (/turf/simulated/wall,/area/maintenance/abandonedlibraryconference) -"aqe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos/backup) -"aqf" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/computer/timeclock/premade/south,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aqh" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/backup) -"aqj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqk" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aql" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqn" = (/obj/machinery/door/firedoor/glass,/obj/random/obstruction,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"aqq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqr" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqs" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aqt" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aqu" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/engineering/break_room) -"aqw" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibraryconference) -"aqx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/tether{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aqy" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqz" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"aqA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"aqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqE" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqG" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"aqH" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) -"aqI" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqJ" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqK" = (/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqL" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aqM" = (/turf/simulated/wall,/area/engineering/workshop) -"aqN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/workshop) -"aqO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqP" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"aqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aqU" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqV" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqW" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"aqX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"aqY" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"aqZ" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"ara" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"arb" = (/obj/machinery/atmospherics/valve/digital/open,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"arc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"ard" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"are" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"arf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"arg" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arh" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/civilian{dir = 1},/turf/simulated/floor/tiled,/area/holodeck_control) -"ari" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arj" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"ark" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arl" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arm" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aro" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/stack/material/wood{amount = 10},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"arp" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/contraband,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"arq" = (/turf/simulated/wall/r_wall,/area/engineering/shaft) -"arr" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/workshop) -"ars" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"art" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/tool,/turf/simulated/floor/tiled,/area/engineering/workshop) -"aru" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) -"arv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"arw" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"arx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled,/area/engineering/workshop) -"ary" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arz" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arA" = (/obj/machinery/atmospherics/valve/open,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"arB" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/down{dir = 8},/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/eng_lower) -"arD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) -"arF" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop) -"arG" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/maintenance,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"arH" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"arI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/engineering/break_room) -"arJ" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) -"arL" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arM" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/engineering) -"arN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/carpet,/area/engineering/break_room) -"arO" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) -"arP" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"arQ" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arR" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"arS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"arT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"arU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/item/weapon/flame/lighter/zippo,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) -"arW" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"arX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/hallway) -"arY" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"arZ" = (/obj/structure/disposalpipe/segment,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"asa" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"asb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/engineering/break_room) -"asc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"asd" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"ase" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) -"asf" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"asg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room) -"ash" = (/turf/simulated/wall/r_wall,/area/holodeck_control) -"asi" = (/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/holodeck_control) -"asj" = (/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"ask" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/table/woodentable,/obj/item/weapon/book/manual/supermatter_engine{pixel_x = -3},/turf/simulated/floor/carpet,/area/engineering/break_room) -"asl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"asm" = (/obj/machinery/mech_recharger,/turf/simulated/floor,/area/engineering/workshop) -"asn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"aso" = (/obj/machinery/camera/network/civilian{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) -"asp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"asq" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"asr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room) -"ass" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) -"ast" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) -"asu" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) -"asw" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"asx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/engineering/break_room) -"asy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"asz" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"asA" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/device/closet_painter,/turf/simulated/floor/tiled,/area/engineering/workshop) -"asD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"asI" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/cryo) -"asJ" = (/obj/structure/cryofeed{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"asK" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"asL" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"asN" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"asO" = (/obj/structure/cryofeed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"asP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/holodeck_control) -"asQ" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/tiled,/area/holodeck_control) -"asS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"asU" = (/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"atb" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/engineering) -"atd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/engineering/break_room) -"atf" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"atg" = (/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"ath" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled,/area/engineering/workshop) -"atj" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled,/area/engineering/workshop) -"atk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"ato" = (/obj/structure/railing{dir = 8},/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"atp" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"atq" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"ats" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"att" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"atu" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"atv" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/gear_painter,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"atx" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"aty" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"atA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) -"atB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"atF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"atG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room) -"atH" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/engineering/foyer) -"atI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"atJ" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"atK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"atN" = (/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"atO" = (/turf/simulated/wall/r_wall,/area/engineering/engine_eva) -"atQ" = (/obj/structure/window/reinforced,/obj/structure/frame,/turf/simulated/floor/tiled,/area/engineering/workshop) -"atS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"atT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"atW" = (/turf/simulated/floor/tiled,/area/engineering/hallway) -"atX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"atY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) -"atZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/bookcase/manuals/engineering,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/evaguide,/turf/simulated/floor/tiled,/area/engineering/break_room) -"aua" = (/obj/machinery/camera/network/engineering{dir = 1},/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled,/area/engineering/break_room) -"auc" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room) -"aue" = (/turf/simulated/wall,/area/engineering/atmos/backup) -"auh" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"auk" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/engineering/workshop) -"aul" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"aum" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"auo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"aur" = (/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"aus" = (/turf/simulated/wall,/area/crew_quarters/sleep/cryo) -"auv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"auw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"auy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"auz" = (/turf/simulated/wall,/area/engineering/break_room) -"auA" = (/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"auB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"auP" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"auW" = (/obj/machinery/atmospherics/omni/mixer{tag_east = 1; tag_east_con = 0.21; tag_south = 1; tag_south_con = 0.79; tag_west = 2},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"auX" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/machinery/camera/network/engineering{dir = 8},/obj/machinery/meter,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"auY" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 1; tag_south = 4; tag_west = 3},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"auZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"ava" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 4},/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"avc" = (/obj/machinery/cryopod/robot,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"avd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/engineering/workshop) -"avf" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space) -"avg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled,/area/engineering/workshop) -"avh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/workshop) -"avj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"avm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"avo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) -"avq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) -"avs" = (/obj/structure/table/reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"avw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway) -"avx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"avz" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{name = "Engineering Break Room"; sortType = "Engineering Break Room"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"avB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/engineering/break_room) -"avD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room) -"avF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"avI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) -"avL" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room) -"avP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"avS" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full/double,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) -"avZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"awa" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"awb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/camera/network/civilian{dir = 1},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"awk" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"awl" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop) -"awm" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"awn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) -"awp" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Stairwell"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"aws" = (/turf/simulated/wall,/area/tether/station/stairs_one) -"awt" = (/turf/simulated/wall,/area/storage/tools) -"awu" = (/turf/simulated/wall,/area/hallway/station/docks) -"awy" = (/turf/simulated/wall/r_wall,/area/bridge) -"awz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge) -"awA" = (/obj/structure/sign/department/bridge,/turf/simulated/wall/r_wall,/area/bridge_hallway) -"awB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop) -"awC" = (/obj/structure/sign/nanotrasen,/turf/simulated/wall/r_wall,/area/bridge_hallway) -"awD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) -"awE" = (/turf/simulated/wall/r_wall,/area/bridge_hallway) -"awF" = (/obj/effect/floor_decal/industrial/loading{dir = 1},/obj/machinery/camera/network/tether{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"awG" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/crew_quarters/heads/hop) -"awH" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/industrial/loading,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"awI" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/hop) -"awJ" = (/obj/machinery/door/airlock/maintenance/command{req_one_access = list(12)},/obj/structure/cable{icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/bridge) -"awK" = (/turf/simulated/wall,/area/maintenance/station/bridge) -"awM" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) -"awO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"awP" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"awR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/engineering/break_room) -"awT" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/glasses/square,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/break_room) -"awU" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled,/area/storage/tools) -"awZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"axb" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/hallway/station/docks) -"axc" = (/turf/simulated/mineral/floor/vacuum,/area/bridge) -"axd" = (/turf/space/cracked_asteroid,/area/bridge) -"axe" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway) -"axf" = (/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"axg" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) -"axj" = (/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"axk" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"axl" = (/obj/random/trash_pile,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"axt" = (/obj/random/trash_pile,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"axu" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"axv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"axw" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"axx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"axz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/storage/tools) -"axA" = (/obj/machinery/atmospherics/pipe/tank/oxygen{icon_state = "o2_map"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"axB" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"axC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"axD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/hallway/station/docks) -"axE" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/hallway/station/docks) -"axF" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway) -"axG" = (/obj/machinery/atmospherics/pipe/tank{dir = 1; icon_state = "air_map"; name = "Waste Tank"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"axH" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{icon_state = "n2_map"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"axM" = (/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/security,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/cargo,/turf/simulated/floor,/area/maintenance/station/bridge) -"axO" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/workshop) -"axP" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/workshop) -"axQ" = (/obj/structure/sign/deck1,/turf/simulated/wall,/area/tether/station/stairs_one) -"axR" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"axU" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) -"axW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) -"axY" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop) -"axZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/hallway/station/docks) -"ayb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aye" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) -"ayf" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"ayi" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/machinery/light_switch{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/break_room) -"ayj" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"ayl" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"aym" = (/obj/machinery/account_database,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"ayn" = (/obj/structure/cable{icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/bridge) -"ayp" = (/turf/space,/area/shuttle/excursion/tether_dockarm) -"ays" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"ayw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"ayx" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"ayy" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"ayB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools) -"ayC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks) -"ayD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"ayK" = (/obj/machinery/computer/rcon,/turf/simulated/floor/tiled/dark,/area/bridge) -"ayN" = (/obj/machinery/computer/communications,/turf/simulated/floor/tiled/dark,/area/bridge) -"ayQ" = (/obj/machinery/computer/med_data,/turf/simulated/floor/tiled/dark,/area/bridge) -"ayS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway) -"ayT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"ayU" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) -"ayW" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"ayX" = (/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"ayZ" = (/obj/structure/cable{icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/bridge) -"aza" = (/obj/structure/reagent_dispensers/fueltank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"aze" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"azf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) -"azh" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/newscaster{pixel_x = -30},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) -"azi" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/storage/tools) -"azj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"azk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Washroom"; req_one_access = list(10)},/turf/simulated/floor/tiled/white,/area/engineering/break_room) -"azl" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/hallway/station/docks) -"azm" = (/obj/machinery/computer/power_monitor{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"azn" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"azo" = (/obj/machinery/computer/station_alert{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"azp" = (/obj/machinery/computer/security{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"azq" = (/obj/machinery/computer/supplycomp{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"azr" = (/obj/machinery/computer/crew{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"azy" = (/mob/living/simple_mob/animal/passive/dog/corgi/Ian,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"azz" = (/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"azA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"azB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"azD" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"azI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium) -"azJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"azM" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"azN" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"azO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) -"azQ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 5},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"azR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"azU" = (/turf/simulated/floor/tiled/dark,/area/bridge) -"azV" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/dark,/area/bridge) -"azW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/dark,/area/bridge) -"azX" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"azY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway) -"azZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aAd" = (/obj/structure/table/reinforced,/obj/item/weapon/clipboard,/obj/item/weapon/stamp/hop,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"aAf" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Head of Personnel's Office"},/obj/structure/extinguisher_cabinet{pixel_x = 25},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"aAk" = (/turf/simulated/wall,/area/crew_quarters/toilet) -"aAm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aAo" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aAq" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/hallway/station/docks) -"aAG" = (/obj/structure/bed/chair{dir = 1},/obj/effect/landmark/start{name = "Head of Personnel"},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"aAH" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aAL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aAO" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aAP" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aAQ" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "exterior access button"; pixel_x = 0; pixel_y = -25; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/space) -"aAR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aAS" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southleft{name = "Jetpack Storage"; req_access = newlist(); req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aAT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aAV" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aAW" = (/turf/simulated/wall,/area/crew_quarters/sleep/engi_wash) -"aAX" = (/obj/structure/bed/chair,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aAZ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBb" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBd" = (/obj/structure/bed/chair,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBf" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBg" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aBh" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBi" = (/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aBj" = (/obj/machinery/computer/card{dir = 4},/obj/machinery/camera/network/command{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"aBk" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"aBl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aBm" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/obj/machinery/camera/network/engineering,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aBp" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aBq" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aBr" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light_switch{pixel_y = -26},/obj/machinery/keycard_auth{pixel_x = -28},/obj/machinery/photocopier,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"aBt" = (/obj/structure/closet/secure_closet/hop2,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"aBu" = (/obj/structure/closet/secure_closet/hop,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"aBw" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/engineering/foyer) -"aBy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) -"aBA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aBB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aBC" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aBD" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aBE" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aBH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian) -"aBJ" = (/obj/machinery/computer/secure_data{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"aBK" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge) -"aBL" = (/obj/structure/table/reinforced,/obj/item/weapon/book/codex,/turf/simulated/floor/tiled/dark,/area/bridge) -"aBM" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) -"aBO" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aBR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/turf/simulated/floor,/area/maintenance/substation/civilian) -"aBU" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aBV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aBX" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aCc" = (/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"aCe" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aCn" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCp" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCq" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals5,/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCt" = (/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCu" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCw" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aCx" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aCy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control) -"aCB" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_outer"; locked = 1; name = "Engineering Starboard External Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/engineering/engineering_airlock) -"aCC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aCD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aCE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aCF" = (/turf/simulated/wall,/area/tether/station/dock_one) -"aCG" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one) -"aCI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one) -"aCJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/docks) -"aCK" = (/turf/simulated/wall,/area/tether/station/dock_two) -"aCL" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two) -"aCM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) -"aCN" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two) -"aCO" = (/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"aCP" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled,/area/engineering/workshop) -"aCQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/workshop) -"aCR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aCS" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway Central"; dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) -"aCU" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aCW" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCY" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/machinery/light,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aCZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aDh" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"aDj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aDn" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aDp" = (/obj/machinery/shower{pixel_y = 8},/obj/item/weapon/soap/deluxe,/obj/structure/curtain/open/shower,/obj/item/weapon/bikehorn/rubberducky,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"aDq" = (/obj/machinery/light/small{dir = 1},/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"aDr" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"aDs" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/maintenance/substation/civilian) -"aDu" = (/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aDy" = (/obj/structure/sign/department/conference_room,/turf/simulated/wall/r_wall,/area/bridge_hallway) -"aDz" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/command) -"aDA" = (/turf/simulated/wall/r_wall,/area/maintenance/station/bridge) -"aDD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aDF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aDG" = (/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aDH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aDJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aDL" = (/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aDM" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/civilian) -"aDN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"aDO" = (/obj/structure/toilet{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"aDP" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/random/junk,/obj/random/tool,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) -"aDQ" = (/obj/item/device/flashlight/lamp/green,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aDR" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aDV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/camera/network/tether{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aDZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aEa" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1379; id_tag = "eng_starboard_pump"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aEb" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aEf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aEl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aEm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aEr" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue_captain,/obj/item/clothing/glasses/omnihud/all,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/weapon/stamp/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aEs" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aEt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/mob/living/simple_mob/animal/passive/fox/renault,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aEu" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aEx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aEz" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) -"aEA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aEB" = (/obj/machinery/power/terminal,/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/command) -"aEE" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aEF" = (/obj/structure/cable{icon_state = "1-8"},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/bridge) -"aEG" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"aEM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aEN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aEO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aEP" = (/obj/structure/closet/wardrobe/captain,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aEQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aER" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash) -"aET" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash) -"aEV" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aEW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian) -"aEX" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Civilian"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/substation/civilian) -"aEZ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) -"aFb" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Command Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/command) -"aFc" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/storage/emergency_storage/emergency4) -"aFe" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) -"aFf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) -"aFh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aFq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFr" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aFw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aFx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aFz" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/camera/network/tether{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aFB" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aFI" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/holodeck_control) -"aFJ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "eng_starboard_pump"},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_starboard_sensor"; pixel_x = 24; pixel_y = 10},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1379; id_tag = "eng_starboard_airlock"; pixel_x = 24; pixel_y = 0; req_access = newlist(); req_one_access = list(11,24); tag_airpump = "eng_starboard_pump"; tag_chamber_sensor = "eng_starboard_sensor"; tag_exterior_door = "eng_starboard_outer"; tag_interior_door = "eng_starboard_inner"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aFK" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aFL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aFO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aFT" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aFU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aFV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aFX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aFY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aFZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aGa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aGb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aGc" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/photo_album{pixel_y = -10},/obj/item/weapon/reagent_containers/food/drinks/flask{pixel_x = 8},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aGi" = (/obj/structure/displaycase,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"aGl" = (/obj/machinery/vending/coffee,/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"aGs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aGx" = (/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aGy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aGz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aGB" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_airlock) -"aGF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aGI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian) -"aGJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway South"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge_hallway) -"aGK" = (/turf/simulated/wall/r_wall,/area/teleporter) -"aGP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/civilian) -"aGZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aHa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aHb" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aHc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aHd" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aHf" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/teleporter) -"aHi" = (/obj/structure/sign/securearea,/turf/simulated/wall/r_wall,/area/teleporter) -"aHk" = (/obj/structure/table/standard,/obj/item/weapon/hand_tele,/turf/simulated/floor/tiled/dark,/area/teleporter) -"aHs" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aHt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aHv" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aHw" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aHx" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aHz" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aHB" = (/obj/machinery/camera/network/command{c_tag = "COM - Teleport Access"},/turf/simulated/floor/tiled,/area/teleporter) -"aHE" = (/obj/machinery/computer/teleporter{dir = 8},/turf/simulated/floor/tiled/dark,/area/teleporter) -"aHM" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled,/area/teleporter) -"aHN" = (/turf/simulated/floor/tiled,/area/teleporter) -"aHO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/teleporter) -"aHP" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/teleporter) -"aHQ" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aHR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/teleporter) -"aHS" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/teleporter) -"aHT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aHU" = (/obj/machinery/teleport/station{dir = 2},/turf/simulated/floor/tiled/dark,/area/teleporter) -"aHY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_eva) -"aIb" = (/turf/space,/area/shuttle/antag_space/docks) -"aIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aId" = (/obj/structure/closet/crate,/obj/item/weapon/tool/crowbar,/turf/simulated/floor/tiled,/area/teleporter) -"aIf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) -"aIh" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/teleporter) -"aIi" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aIj" = (/obj/machinery/teleport/hub{dir = 2},/turf/simulated/floor/tiled/dark,/area/teleporter) -"aIl" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aIn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aIo" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aIp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aIq" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tool,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aIs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aIu" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled/dark,/area/teleporter) -"aIv" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled/dark,/area/teleporter) -"aIy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aIA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aIM" = (/obj/effect/floor_decal/sign/dock/one,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aIO" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aIR" = (/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aIS" = (/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aIT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aIU" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aIY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"aJa" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"aJh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_airlock) -"aJi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"aJj" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "interior access button"; pixel_x = 24; pixel_y = 25; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) -"aJk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) -"aJl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aJm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aJn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/atmospherics/binary/passive_gate/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aJo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"aJr" = (/turf/space,/area/shuttle/trade/station) -"aJs" = (/turf/simulated/wall/r_wall,/area/engineering/storage) -"aJw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aJx" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop) -"aJy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aJS" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aJV" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) -"aKb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aKl" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/soap,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aKr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aKt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aKz" = (/obj/machinery/atmospherics/pipe/zpipe/up,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower) -"aKN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aKQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aKU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aLc" = (/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = null; name = "Holodeck"; req_access = list()},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monofloor,/area/holodeck_control) -"aLh" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aLi" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) -"aLj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aLl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aLp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) -"aLr" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/camera/network/engineering{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aLy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) -"aLK" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aLX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aLY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMa" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "CE Office"; sortType = "CE Office"},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aMl" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aMp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aMr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aMt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/railing,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aMu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/railing,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower) -"aMx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aMB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"aML" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aMZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) -"aNa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop) -"aNb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"aNd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) -"aNe" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) -"aNo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "CEdoor"; name = "Chief Engineer"; req_access = list(56)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/chief) -"aNr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) -"aNF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) -"aNH" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) -"aOj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aOL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aOO" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/holodeck_control) -"aOS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aOW" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = 10; req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = 10; req_access = list(10)},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aOY" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aPa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aPq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/engineering/foyer) -"aPG" = (/obj/structure/railing{dir = 1},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aPH" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aQa" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aQh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aQk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aQl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/snakesnackbox,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aQn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aQs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/engineering{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aQv" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"aQw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aQD" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aQJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aQQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) -"aQX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/engineering/foyer) -"aQZ" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled,/area/engineering/workshop) -"aRb" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) -"aRc" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/carpet,/area/engineering/foyer) -"aRd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"aRi" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aRr" = (/obj/machinery/atmospherics/valve/open,/obj/structure/railing{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aRw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"aRy" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled,/area/engineering/workshop) -"aRA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) -"aRV" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aRX" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aRZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aSa" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/computer/station_alert/all{icon_state = "computer"; dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aSe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/button/windowtint{id = "ce_office"; layer = 3.3; pixel_x = 26; pixel_y = 29},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = 26; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 38; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/airlock{id = "CEdoor"; name = "CE Office Door Control"; pixel_x = 26},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aSo" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"aSu" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aSz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) -"aSB" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aSC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_eva) -"aSD" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled,/area/engineering/foyer) -"aSF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aSL" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/vending/cola,/turf/simulated/floor/carpet,/area/engineering/foyer) -"aSO" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aTi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aTm" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aTA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aTE" = (/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aTJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aTK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aTL" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aTQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aTR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"aTW" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/reagent_containers/food/snacks/snakesnack,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) -"aTX" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aUk" = (/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aUl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aUm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aUo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) -"aUp" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/engineering,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) -"aUE" = (/obj/structure/railing,/obj/structure/disposalpipe/segment,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aUF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/medical/lite,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aUI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aUU" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) -"aUX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aVx" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/holodeck_control) -"aVz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aVB" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = -32},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = -32; specialfunctions = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aVG" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) -"aVH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aVK" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aVN" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aVP" = (/obj/machinery/computer/power_monitor{icon_state = "computer"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aVW" = (/obj/machinery/computer/rcon{icon_state = "computer"; dir = 1},/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aWd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aWj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) -"aWn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aWJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aXl" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control) -"aXw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/holodeck_control) -"aXy" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/camera/network/civilian{dir = 8},/turf/simulated/floor/tiled,/area/holodeck_control) -"aXC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/hatch{name = "Server Room"; req_access = list(59); req_one_access = list(19)},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"aXR" = (/obj/structure/window/basic{dir = 1},/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 0; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief) -"aXX" = (/obj/structure/table/reinforced,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aXY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) -"aXZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/foyer) -"aYa" = (/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer) -"aYb" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer) -"aYc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) -"aYf" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower) -"aYg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/foyer) -"aYt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aYE" = (/obj/structure/table/reinforced,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 10; pixel_y = 36},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aYF" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aYH" = (/obj/structure/table/reinforced,/obj/item/weapon/rcd,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aYJ" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/device/radio{pixel_x = -4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aYW" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/holodeck_control) -"aZg" = (/obj/structure/table/reinforced,/obj/item/device/megaphone,/obj/machinery/keycard_auth{pixel_w = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"aZn" = (/obj/machinery/computer/security/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) -"aZq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aZr" = (/obj/machinery/computer/atmos_alert,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aZP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"aZU" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) -"aZV" = (/obj/effect/floor_decal/corner/yellow/full{dir = 8},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge) -"aZW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/foyer) -"bay" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"baA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"baI" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"baQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"baT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"baV" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/camera/network/engineering{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/telecomms/relay/preset/tether/station_mid,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"bbs" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/foyer) -"bbx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) -"bbE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bbT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bch" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bck" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"bcl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"bcn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"bcp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"bcr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"bcs" = (/obj/structure/filingcabinet/filingcabinet,/turf/simulated/floor/tiled/dark,/area/bridge) -"bcw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"bcx" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"bcE" = (/obj/effect/floor_decal/corner/yellow/full{dir = 1},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge) -"bcK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bcO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bdi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/camera/network/tether{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bds" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) -"bdu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bdZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bed" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bee" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beg" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beh" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bei" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bej" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bek" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bem" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bep" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"ber" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bev" = (/obj/structure/noticeboard{pixel_y = -32},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bez" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beE" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/computer/id_restorer{dir = 1; pixel_y = -28},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer) -"beK" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) -"beM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) -"beN" = (/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/foyer) -"beP" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair,/obj/machinery/camera/network/engineering,/turf/simulated/floor/carpet,/area/engineering/foyer) -"beS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"beY" = (/obj/machinery/door/airlock/multi_tile/metal{dir = 2; icon_state = "door_closed"; name = "Cryogenic Storage"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) -"bfk" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bfo" = (/obj/structure/window/reinforced,/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/foyer) -"bft" = (/obj/item/modular_computer/console/preset/command{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"bfv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"bfF" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bfG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"bfJ" = (/obj/structure/sign/directions/command{dir = 4},/obj/structure/sign/directions/elevator{dir = 4; pixel_y = 8},/turf/simulated/wall,/area/tether/station/stairs_one) -"bfQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bfT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) -"bfW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway) -"bfY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway) -"bgf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bgr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bgC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) -"bgD" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) -"bgE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) -"bgF" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/engineering/foyer) -"bgG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"bgH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"bgJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 32; pixel_z = -8},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"bgN" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/camera/network/tether,/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"bgO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) -"bha" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bhc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bhg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/hallway/station/docks) -"bhj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"bhr" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bht" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bhH" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bhJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bhK" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bhL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bid" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"bir" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) -"biC" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"biK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) -"bjo" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bjt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bjC" = (/obj/structure/table/reinforced,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/blast/shutters{density = 0; dir = 2; icon_state = "shutter0"; id = "hop_office_desk"; name = "HoP Office Privacy Shutters"; opacity = 0},/obj/machinery/door/window/northleft{name = "Reception Window"; icon_state = "right"; dir = 1},/obj/machinery/door/window/brigdoor/eastright{dir = 2; name = "Head of Personnel's Desk"; req_access = list(57)},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bjX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bkm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled/steel_grid,/area/tether/station/stairs_one) -"bkp" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/tools) -"bkq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks) -"bks" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools) -"bkx" = (/obj/structure/table/reinforced,/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/tiled,/area/engineering/workshop) -"bky" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bkC" = (/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge) -"bkE" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 8},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge) -"bll" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/camera/network/command{c_tag = "Bridge Hallway North"; dir = 9},/turf/simulated/floor/tiled,/area/bridge_hallway) -"blr" = (/obj/machinery/computer/card{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"blx" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/structure/disposalpipe/segment,/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "hop_office_desk"; layer = 3.3; name = "Desk Privacy Shutter"; pixel_x = -29; pixel_y = 29},/obj/machinery/button/windowtint{id = "hop_office"; layer = 3.3; pixel_x = 26; pixel_y = 29},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"blF" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue_hop,/obj/item/weapon/pen,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"blS" = (/obj/effect/floor_decal/corner/blue/full{dir = 1},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled/dark,/area/bridge) -"bmc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/reagent_dispensers/watertank,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"bmv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bmA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bmM" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bne" = (/obj/machinery/vending/tool,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled,/area/storage/tools) -"bnl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/hallway/station/docks) -"bno" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/hallway/station/docks) -"bnv" = (/obj/structure/noticeboard{pixel_x = -32},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 10},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge_hallway) -"bnw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"bnB" = (/obj/effect/floor_decal/corner/paleblue/full{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/flora/pottedplant,/obj/machinery/camera/network/command{c_tag = "Bridge Northeast"; dir = 9},/turf/simulated/floor/tiled/dark,/area/bridge) -"bnI" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) -"bnL" = (/obj/machinery/disposal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/trunk,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bnW" = (/obj/machinery/computer/communications,/obj/machinery/keycard_auth{pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bnY" = (/obj/machinery/light{dir = 8},/obj/structure/bed/chair/office/dark{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/landmark/start{name = "Colony Director"},/obj/item/weapon/storage/secure/safe{pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bnZ" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"boc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"boq" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bou" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) -"boH" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled/dark,/area/bridge) -"boL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge) -"boM" = (/obj/structure/disposalpipe/sortjunction/flipped{name = "HoP Office"; sortType = "HoP Office"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"boN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"boU" = (/obj/machinery/recharger/wallcharger{pixel_x = 32; pixel_y = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bpd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bpf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bph" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/camera/network/tether{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bpi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bpl" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bpm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bpv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/tools) -"bpz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor,/area/hallway/station/docks) -"bpD" = (/obj/machinery/light{dir = 8},/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/obj/machinery/photocopier,/turf/simulated/floor/tiled/dark,/area/bridge) -"bpJ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/fireaxecabinet{pixel_x = 32; pixel_y = 0},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/bridge) -"bpM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bpQ" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"bqb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/toilet) -"bqf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bqj" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/hallway/station/docks) -"bql" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donut,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/turf/simulated/floor/tiled/dark,/area/bridge) -"bqo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/dark,/area/bridge) -"bqs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/bridge) -"bqx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/hologram/holopad,/obj/item/device/radio/beacon,/turf/simulated/floor/tiled/dark,/area/bridge) -"bqA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge) -"bqD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"bqF" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled/dark,/area/bridge) -"bqP" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bqR" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) -"bqU" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j1"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) -"brd" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"brf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"brj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/command{name = "Head of Personnel"; req_access = list(57)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/hop) -"bro" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"brv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/storage/tools) -"brD" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"brV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"brX" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"bsl" = (/obj/structure/flora/pottedplant,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bsv" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bsH" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/secure/briefcase,/obj/machinery/button/remote/blast_door{id = "bridge blast"; name = "Bridge Blastdoors"; pixel_x = 0; pixel_y = -20},/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/turf/simulated/floor/tiled/dark,/area/bridge) -"bsM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bsN" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bsO" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/papershredder,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bsP" = (/obj/structure/table/reinforced,/obj/item/clothing/glasses/omnihud,/obj/machinery/light,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bsR" = (/obj/machinery/camera/network/command{c_tag = "Head of Personnel Office"; dir = 9},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/hop) -"bto" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"btr" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"bts" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btt" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bty" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"btS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bvb" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge) -"bvd" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals8{dir = 1},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) -"bvk" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge) -"bvs" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"bvt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bvu" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bvE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bvN" = (/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/item/weapon/folder/blue,/obj/item/weapon/folder/red,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge) -"bvS" = (/obj/structure/table/reinforced,/obj/machinery/recharger{pixel_y = 0},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/dark,/area/bridge) -"bvW" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/device/radio{pixel_x = 2; pixel_y = 3},/obj/item/device/radio,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/bridge) -"bvY" = (/obj/machinery/photocopier/faxmachine{department = "Bridge"},/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/bridge) -"bwb" = (/turf/space,/area/shuttle/tether/station) -"bwc" = (/obj/item/device/aicard,/obj/item/weapon/storage/box/PDAs{pixel_x = 4; pixel_y = 4},/obj/item/weapon/storage/box/ids,/obj/structure/table/reinforced,/turf/simulated/floor/tiled/dark,/area/bridge) -"bwh" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bwl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "bridge blast"; name = "Bridge Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge) -"bwn" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bwq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway) -"bwx" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/dark,/area/bridge) -"bwV" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one) -"bxa" = (/obj/structure/cable/green{icon_state = "0-8"},/obj/structure/cable/green{icon_state = "16-0"},/obj/effect/decal/cleanable/dirt,/obj/structure/symbol/da{pixel_y = 32},/turf/simulated/floor,/area/maintenance/station/bridge) -"bxe" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two) -"bxE" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 2; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) -"bxJ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Colony Director's Office"; req_access = list(20)},/turf/simulated/floor/tiled/dark,/area/crew_quarters/captain) -"bxL" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 2; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) -"bxY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bya" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Bridge"; req_access = list(19)},/turf/simulated/floor/tiled/steel_grid,/area/bridge_hallway) -"byf" = (/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/bridge_hallway) -"byy" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"byA" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) -"byD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"byE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"byG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"byN" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"byP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"byV" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"byW" = (/obj/machinery/camera/network/command,/obj/machinery/requests_console{announcementConsole = 1; department = "Bridge"; departmentType = 5; name = "Bridge RC"; pixel_x = -32; pixel_y = 0},/obj/structure/closet/emcloset,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"byY" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/item/device/megaphone,/obj/machinery/light{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bza" = (/obj/structure/table/woodentable,/obj/item/weapon/melee/chainofcommand,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/item/weapon/coin/phoron{desc = "The face of the coin shows a portrait of the explorer who discovered the Virgo-Erigone system. The back depicts a Zodiac symbol that represents Virgo."; name = "limited edition phoron coin"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bzc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) -"bzn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"bzq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bzI" = (/obj/structure/sink{icon_state = "sink"; dir = 8; pixel_x = -12; pixel_y = 2},/obj/structure/mirror{pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"bzR" = (/obj/structure/flora/pottedplant,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bzY" = (/obj/structure/table/woodentable,/obj/machinery/recharger{pixel_y = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bAk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "cap_office"; layer = 3.1; name = "Colony Directo's Shutters"},/turf/simulated/floor/plating,/area/crew_quarters/captain) -"bAr" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge_hallway) -"bAv" = (/obj/machinery/cell_charger,/obj/structure/table/steel,/obj/machinery/light/small{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/plating,/area/maintenance/substation/command) -"bAz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command) -"bAB" = (/obj/structure/table/reinforced,/obj/item/device/megaphone,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/turf/simulated/floor/carpet,/area/crew_quarters/heads/hop) -"bAC" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/command) -"bAK" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command) -"bAP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"bAQ" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/bridge) -"bAS" = (/obj/structure/cable{icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/bridge) -"bBo" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bBr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Private Restroom"; req_access = newlist(); req_one_access = newlist()},/turf/simulated/floor/tiled/white,/area/crew_quarters/captain) -"bBw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bBz" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 4},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bBH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/airlock/command{id_tag = "captaindoor"; name = "Colony Director's Office"; req_access = list(20)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/captain) -"bBJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bBK" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bBP" = (/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/command) -"bBY" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/substation/command) -"bCb" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/bridge) -"bCd" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/metal/mait{dir = 1; name = "Command Substation"; req_one_access = list(11,24,47)},/turf/simulated/floor,/area/maintenance/substation/command) -"bCg" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bCh" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable,/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/bridge) -"bDr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bDv" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/light_switch{pixel_y = -26},/turf/simulated/floor/tiled/dark,/area/bridge) -"bDX" = (/obj/structure/bed/chair/comfy/brown,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bEa" = (/obj/structure/table/woodentable,/obj/machinery/computer/skills,/obj/item/device/perfect_tele{desc = "Seems absurd, doesn't it? Yet, here we are. Generally considered dangerous contraband unless the user has permission from Central Command. This one is the Colony Director's, and they are authorized to use it."; name = "director's translocator"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bEe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bEC" = (/obj/machinery/disposal,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bEG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/bridge_hallway) -"bEN" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bES" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Command Subgrid"; name_tag = "Command Subgrid"},/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/maintenance/substation/command) -"bEW" = (/obj/structure/flora/pottedplant,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bFe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Electrical Maintenance"; req_access = list(19)},/turf/simulated/floor,/area/bridge_hallway) -"bFf" = (/obj/structure/flora/pottedplant,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bFg" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Command"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/command) -"bFp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall,/area/maintenance/station/bridge) -"bFE" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bFH" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bFN" = (/obj/machinery/papershredder,/turf/simulated/floor/tiled/dark,/area/bridge) -"bFP" = (/obj/item/weapon/bedsheet/captain,/obj/structure/bed/padded,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bFQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Colony Director's Quarters"; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bFT" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bFV" = (/obj/structure/table/woodentable,/obj/machinery/photocopier/faxmachine{department = "Captain's Office"},/obj/structure/cable/green,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bFW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/bridge_hallway) -"bGf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bGo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"bGy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bGQ" = (/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bGW" = (/obj/structure/closet/secure_closet/captains,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bHe" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bHg" = (/obj/structure/flora/pottedplant,/obj/machinery/button/remote/blast_door{id = "cap_office"; name = "Security Shutters"; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bHi" = (/obj/structure/table/rack,/obj/item/weapon/tank/jetpack/oxygen,/obj/item/clothing/mask/gas,/obj/item/clothing/suit/armor/captain,/obj/item/clothing/head/helmet/space/capspace,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/card/id/gold/captain/spare,/obj/machinery/door/window/brigdoor/westright{name = "Colony Director's Storage"; req_access = list(20)},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bHk" = (/obj/machinery/camera/network/command{dir = 1},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bHt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a2_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bHu" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bHw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a2_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a2_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a2_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a2_dock_pump"; tag_chamber_sensor = "d1a2_dock_sensor"; tag_exterior_door = "d1a2_dock_outer"; tag_interior_door = "d1a2_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bHy" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a2_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bHz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bHG" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "specops_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bHN" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bHO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "specops_dock_pump"},/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "specops_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "specops_dock_sensor"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bHV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "specops_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bHY" = (/obj/machinery/camera/network/tether{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bIL" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/monotile,/area/bridge_hallway) -"bJl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_one) -"bJm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bJJ" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/dark,/area/teleporter) -"bJQ" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/crew_quarters/captain) -"bJT" = (/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/teleporter) -"bJY" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/teleporter) -"bKo" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bLL" = (/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/teleporter) -"bLN" = (/obj/machinery/light_switch{pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/teleporter) -"bLV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter) -"bMd" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/teleporter) -"bMi" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/teleporter) -"bML" = (/obj/machinery/hologram/holopad,/obj/item/device/radio/beacon,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/teleporter) -"bMN" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/teleporter) -"bNK" = (/obj/structure/closet/crate,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled,/area/teleporter) -"bNL" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/teleporter) -"bNV" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/teleporter) -"bNW" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/teleporter) -"bNZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"bPc" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bPj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bPl" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bPp" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bPq" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bPr" = (/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a1_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a1_dock_pump"; tag_chamber_sensor = "d1a1_dock_sensor"; tag_exterior_door = "d1a1_dock_outer"; tag_interior_door = "d1a1_dock_inner"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a1_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bPs" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a1_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bPt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d2a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two) -"bPx" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two) -"bPz" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d2a1_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d2a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2a1_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d2a1_dock_pump"; tag_chamber_sensor = "d2a1_dock_sensor"; tag_exterior_door = "d2a1_dock_outer"; tag_interior_door = "d2a1_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two) -"bPD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"bPE" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bPF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bPN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bPO" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bPP" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 4},/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bPQ" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"bPS" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bPX" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bPY" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQa" = (/turf/simulated/floor,/area/tether/station/stairs_one) -"bQc" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQd" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQe" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQj" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQk" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "nuke_shuttle_dock"; pixel_x = -28; pixel_y = 0; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQq" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/camera/network/tether{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQt" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "nuke_shuttle_dock_sensor"; pixel_x = -30; pixel_y = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQu" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQv" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"bQx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQz" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"bQC" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "exterior access button"; pixel_x = -28; pixel_y = -6; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bQD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bQF" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bWH" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/command_guide,/obj/item/weapon/book/manual/standard_operating_procedure,/obj/item/weapon/book/manual/security_space_law,/turf/simulated/floor/wood,/area/crew_quarters/captain) -"bXl" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bXm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) -"bXn" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two) -"bXs" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/action_figure,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/binary/passive_gate/on,/turf/simulated/floor/plating,/area/hallway/station/docks) -"bXG" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/engineering/foyer) -"bXI" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer) -"bXJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) -"bXK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) -"bYf" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"bYg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"bYh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"bYi" = (/obj/structure/closet/crate,/obj/random/junk,/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bYj" = (/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bYk" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bYl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bYm" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bYr" = (/turf/space,/area/syndicate_station/arrivals_dock) -"bYt" = (/obj/structure/window/reinforced,/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/foyer) -"bYE" = (/obj/machinery/recharge_station,/turf/simulated/floor/carpet,/area/engineering/foyer) -"bYJ" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/machinery/telecomms/relay/preset/tether/station_high,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"bYK" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/telecomms/relay/preset/tether/station_low,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) -"bYN" = (/obj/item/device/instrument/violin,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bYP" = (/turf/simulated/wall,/area/vacant/vacant_restaurant_lower) -"bZc" = (/obj/structure/table/reinforced,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/wood,/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop) -"bZd" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/workshop) -"bZi" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop) -"bZk" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZt" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"bZv" = (/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower) -"bZz" = (/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZD" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZF" = (/obj/structure/closet/crate,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZH" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower) -"bZJ" = (/obj/random/drinkbottle,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower) -"bZK" = (/obj/item/weapon/bananapeel,/obj/item/trash/unajerky,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZO" = (/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZP" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cell/potato,/obj/item/frame/apc,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZQ" = (/obj/random/trash,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZR" = (/obj/random/junk,/obj/structure/closet,/obj/random/maintenance/clean,/obj/item/taperoll/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZS" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZT" = (/obj/structure/stairs/west,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"bZY" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"bZZ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"cae" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/camera/network/tether{dir = 4},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/station/docks) -"cah" = (/obj/structure/girder,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) -"cak" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"cal" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/engineering/engine_eva) -"cbY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/airless,/area/engineering/atmos/backup) -"cce" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"ccg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) -"cch" = (/turf/space,/area/shuttle/cruiser/station) -"ccl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/thermoregulator,/turf/simulated/floor,/area/engineering/storage) -"ccx" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/bridge_hallway) -"col" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two) -"dlV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_one) -"ezX" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two) -"eAf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) -"gkC" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/bridge) -"hPi" = (/obj/machinery/light/small,/turf/simulated/floor,/area/engineering/shaft) -"jys" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"jRS" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) -"klO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) -"kCH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"kLN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "tether_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "tether_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "tether_dock_pump"; tag_chamber_sensor = "tether_dock_sensor"; tag_exterior_door = "tether_dock_outer"; tag_interior_door = "tether_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"lxQ" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 8},/turf/simulated/floor/tiled,/area/bridge_hallway) -"lGA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one) -"mbn" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/sortjunction{dir = 4; icon_state = "pipe-j1s"; name = "Library"; sortType = "Library"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"mNU" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one) -"nov" = (/obj/structure/railing,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/engineering/shaft) -"oEH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/docks) -"qBc" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"scB" = (/obj/machinery/computer/shuttle_control/tether_backup{icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"tpQ" = (/obj/structure/morgue/crematorium{dir = 8},/obj/structure/cable/green{icon_state = "0-8"},/turf/simulated/floor/tiled/dark,/area/chapel/chapel_morgue) -"tKI" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "tether_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) -"uiN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/donut/chaos,/turf/simulated/floor/grass,/area/hallway/station/atrium) -"uWS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = 28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) -"vbm" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"vyI" = (/mob/living/simple_mob/animal/passive/snake/noodle,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) -"wlD" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_one) -"xfY" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) -"xMk" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor,/area/engineering/shaft) - -(1,1,1) = {" -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahWahVahVahVahVahVaaaaaaaaaahVahVahVahVahVahVahWahVahVahVahVahVahVahVahWahWaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabnabnabnaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabQabSabRabTabQaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaacaacaacaaaaaaaajackabSacaabTackacbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaacaacaacaacaacaacaacabCabCaamackackackaceabCabCaaaaaaaaaaataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJagJagJagJagJaanagJagJagJagJacLacLacLacLacLacLacLacLaczaczaczaacaacabCacAacjackackacjackacBabCaacaacaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacLaasaaAaazaaGaaCaaLacLaaNacRaczaacaacabCadgacjackadhacjacjadiabCaacaacaacaacaataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaanagJaaQagJagJacJacJacJacJacJacJacJacJacJacLaaRaaXaaXabeabbabgabfadvaduaczaacaacabCabiackackacjacjackadwabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaarabrabuabtaebaeaabwaaBabyabxaczaacaacabCaegaefackacjacjachabAabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaaEabDabGabFabIabHabMaaFabOabNarMarMarMarMarMabPackackackaeLabCabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjabjabjacJacJacJacJacJacJacJacJacJacJabWalFalFaaUalFalFalFacdacuacqarMacxacOatbarMabCabCaaYabCabCabCaacaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJagJacJabkacJagJacJacJacJacJacJacJacJacJacJadfacXadoafMafQaaOagPafPadsadqadCadtadFadDadIadGadKadGadGadLabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfadQagNafLagOafLahZafPadVadUarMadWadZahoarMahqackackackaehaikaikaikaikaikaikaikaikaikaikaadaapaaqaavaavaavaaeaaeaaeaaeaaeaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJaewaetaaSaibaezaidaeCaeAaeEaeDaJsaJsaJsaJsaJsaJsaJsaJsackaeGaikackackackackackackackackackaadaawaaqaaDaaDaaDaaeaahaakaalaaeaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaeQagNafLaiQaiPaeSafPacuaeVaJsaiTaiTaeWaeXaiVcclaJsachaeGaikackackackackackackackackackaadaaMaaqaaZaaZaclaaeaaoaauaaxaaeaataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaffalrafiafjajyafkafPacuafmaJsafpajDaeWaeWaJVafsaJsackaeGaikackackackackackackackackackaadacPaepaeTaeYagGaayaaHaaIaaJaaeaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaanacJacJacJacJacJacJacJacJacJacJacJacJacJacJalFalFalFalFalFafSalFacdafZafXaJsakmakmaeWaeWaknakoaJsakqagfaikackackackackackackackackackaadagHagKagMagSahjaaeaaKaaPtpQaaeaataataataacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksaksacJacJacJacJacJacJacJacJaiMagFagIajtagLakOahdaiMacuaeVaJsakRakSaeWaeWakTakTaJsapiahfaikackackackackackackackackackaadahkahlaaWabaabaaaWabcaaWaaWaaWaataacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgaksaksacgacgacJacJacJacJacJacJacJacJabqahsahyabsahBalbahKahDahOahMaJsalBalDahRahTalEalHaJsahYaeGaikackackackackackackackackackaadabJahraaWabdablabmabpabzahhaaWaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgacJacJacJacJacJacJacJacJaiMaiyaiCajtaiDamlaiFaiMadVaiGaJsaLhaLiaeWaiNamqamqaJsaiRaiOaikackackackackackackackackackaadahtahQaaWabKabLabUabVabYaccadNadOadOadOadOadOadOadOadOadOadOadOaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgagJagJagJajpagJagJagJagJaiMaiMaiMaiMaiMaiMaiMaiMajCajBaJsajGaLiaeWaiNamOajIaJsamRaiOaikackackackackackackackacNacNacNacQacVabaadjadjadradAadBadJadNajvajwahvajzajAaiZajdajhajxajxadOaacaacadPadPadPadPadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaczadsakeaJsakgakjaeWaklakkakpaJsangaiOaikaikackackackackackackacNaedaejacQacVabaaemaeoaeuadjaevaexadNajeajiajjajjajjajlajLajPajSajXadOaacaacadPaeBahxahzadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacarqarqarqarqarqaczaczaczaczaczaczaczanlakXakWaJsaJsaJsakZalcaJsaJsaJsaikaeGackaikackackackackackackacNaeHacNacQacVaaWabaabaaeJabaabaaaWadNakJajEaeyaeyaeyakKaeyaeyalJajxadOaacaacadPahAahSahXadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgalxalwalzabZaacaacaacarqnovxMkalKalGaczanLanPalNaowalRalWanRambalZamfamcamkamjamnanZamsampaczaeGackaikackackackackackackacNaeKaeNacQacVaeZacQafbafdacQacQafhacNajmajnajqajqajqajHaeyaeyalialCadOaacaacadPaiiaiJaiKadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWabZabvabBabEabZabZabZabZabZalGhPianeancaczaopaoraoqaoqaoqaoqanoanranqanuantantantanzanyanCanBanFanDackaikackackackackackackacNacNacNaflafHafIafRafTagracQagsagtacNajMakMalhajQajRajJaeyaeyaljaeyadPadPadPadPaiLaiLaiLadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaadbahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaohaoXaojaolaokaonaomaooabZaczaczaotaczaoyaoZapcapbapbapbapbapbapeaoBaoFapgapgapgaijapgapgapgaijaoHjRSaikackackackackackackackackacNagyagAacQagEaheahgacQagyagAacNadOadOadOadOadOajNaeyaeyaljallakcakfaiSaiUaiSaiSakhadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahVahVahVaaaaaaahWaohaqKaqIappapoaprapqapuapsapwapvapyapxapDapBapIapGapKapJapJapJapMapLapgapNapPapOapTapQapQapXaijapUachaikackackackackackackackackacNalmahiahiahmahnahpahuahualnacNajTajUaloajUajTakiakrakraktakuakvakwakxakyakzaiYajaadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaacbYaqeaqfadSaqaaqJaqhadYaqjaqiaqlaqkaqoaqmaquaqqaqDaqBaqFaqEaqQaqOaqSaqRapgaqvajFaqGaqGajFapQaqHaijapUachaikackackackackackackackackacNahCahEahLacVahPahUahLahCahEacNakAajVajVajVajWakBajOajOakCakDakcajbakEakFakGaiSakHadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahWahWahWahWabZarzaryaRdccearBadeaqMaqMaqMaqMacSaqNaqNarEarKaqNaqNacSarVarTaqTarXasgasbasnaskasraspasxassaijapUacjaikackackackackackackackackacNaiaaicaieaifaigahUacQagyaihacNajYajZakaakbakIakUakdalkalpalqadPajcadPakLalualealeadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlarQarnatgaqLatfaqMathatjarraruartarxatkatBatAarFaqNarVarTarHatFapgarIatIatGarNatJapQarOaijatTaiRaikackackackackackackackackacNailainainaitaiuaivaiwaiwaixacNadOadOadOadOakNakPadOadOadOadOadPaizadPadPadPajfajfadPaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlccgauWarRauYauXaqMavdavhavgavhavhavoavmaslavqasmaqNarVavwavzavxavDavBajFavFavIajFapQavLaijavPapiaikackackackackackackackackacNaiAaiBacQacVahPahUacQagsaiBacNajoacmahwajgakValUakYafCaacaacadPadPadPaacadPadPadPadPaacaacaacaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlarnawkaswaszasyaqMasAaenaenaenaenaenasUasUatAawBacSawMawDarHawOapgatdapQawRapQapQapQawTaijavPaiXaikackackackackackackackackacNaiEaiHahLacVaiIahUahLaiEaiHacNajoacmalLalaajkakQalfafCaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWabZabZarkaxBaxAaxHaxGaqMbkxaxPaxObZcatQbZdatNatSaxUaxYaxWatXatWarHaybapgatYatZawRayiauaalsaucaijaysabCaikaikaikaikaikaikafCafCafCafCaaTafaabhafWabhafcabhafaaaTafCafCafCafCalgafCafCafCafCaacaacaacaacaacaacaacaacaacaacaacaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahWahWahWahWabZaueaueaueaueaueaqMaqMaqMaqMacSaukaenaulazeaenaenaqNauwauvauyazfauzauzauzazkauzauzauzauzaijavPanEachazDazBazBazJazJazIazXafYacfagdagqagvagBagCagDahNafgaiWajrajsafeagvaldajuaALaAHashashashashashashashashashashashashaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaAQavfavfatOaARaATaASaBlamdaBpaBmavsaBqaqNbZiafUasUasUaenawlaByatXawnaBBaBAaAWaBCaBXaBDaBEaAWaciaDDaaVavPalQaBHaBRalQalTalTalTalTagwabXacnacmaCeacpacpacpagxacpxfYacpacpacpacpacpacractaCxaCwaCyamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaCBaCBatOauAauAauAauBaJlaCEauAauAaJwaCMaJxaenasUasUaCPaCQacSaCTaCRaKtaCVaAWaAWaAWaKNaLjaKUaLlaDjaaVapUalQaDsaDMalQasuaDPamEalTaDVacwadzacyacyacyacFamJacmacmadHacmamJacFacyacyacyadabNZaDZamMamgamgamgamgamgamgamgamgamgamgamNalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaEaaLIatOaEbauAauAavjaLXaEfauAauAaJwaCMaJxaMZaMBaNbaNaaenaqNaEzaExaKtaEAaAWaEEaBXaOLaEMaAWaETaERaaVapUaBHaEWaEXalQaFcaEZaFfaFeaFhacmacyacyacyacGacIamCamoadxadyamtamDacKacGacyacyacyadHaFzamMamgamgamgamgamgamgamgamgamgamgaFIalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaFKaFJatOaFLaFOaFLaFOaQvaFXbZtcalcakaqNaQZaQZaRwaRAaRyaRyaqNaEzaCRaKtaGsaAWaAWaAWaRZaGxaaVaaVaaVaaVaGyaGPaGIaofalQaogavSaoialTaHbacmacYacDadcacFacIacEacHadnagaacHamiacKacFacYuiNadcadHaHzamMamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaHTaHQatOatOaSCaSCaSCaSCaHYaSCaSCaSCacSaqNaqNaByaIfaqNaqNacSaEzaIiaKtaIlaAWaBCaBXaTiaInaaVatpaIoaIqaIpalQalQalQalQaoOaoOalTalTaIsacmacYadladcacGacIacEacHamaamyacHamiacKacGacYadladcadHaITaoVamgamgamgamgamgamgamgamgamgamgalAaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaJjaJnaJmbdsaoqaTKaTJaJyaTLaoqaoqaJSaoqaUlaTQaUoaUnaTKaUpaUlatWaKtaKbaAWaAWaAWaUUaKlaaVapiaKraUXaKzaeOaeOaeOaeOaeOaeOaesaeraeMacmacyacyacyacFacIacEacHamGadMacHamiacKacFacyacyacyadHaKQaLcamgamgamgamgamgamgamgamgamgamgalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaLpaLtaLraLAaLyaLGaLCaLKaLHaLOaLLaLUaLPaMaaLYaMdaMcaMgaLUaLPaMhaMkaMjaAWaMlaBXaUUaMpaaVaMtaMraMxaMuaeOafyafyafyafyaeOaePacmadHacmacTacyacyamJacIacEacHacHacHacHamiacKamJacyacyacTadHaMLamMamgamgamgamgamgamgamgamgamgamgalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaNeaNdaRbaRbagcagcagcagcaNoagcaRbaRbaltaltaNraltaltalvaXZaXZaXZaNFaNHaXZaoJaoJaoJaaVaaVaaVaqsaqtaOjaYfaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacIammammamFamFammammacKacmacmacmacmadHaFzamMamgamgamgamgamgamgamgamgamgamgaOOalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaGBaGBaRbaYEaYHaYFaYJaBgaOSaRVaZgaRbaOYaOWaPaalyalIaltaoGaZraZUaPjaZWaBwaPqbePbYEaoJaacaikaPGarbaPHardaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacHacUacUacUacUacUacUacHacmacmacmacmadHaCwamMamgamgamgamgamgamgamgamgamgamgarhalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWagiaQaaRVaRXbaAaTmaQkaQhaQlaRbaQsaQnaQwalXamYaltbbsaQDbbxaQJaQWaQQaQXaQXaRcaoJaacaikaRiarAaRrarCaeOafyafyafyafyaguafzacmadHacmacTacyacyacFacHacHacHacHacHacHacHacHacFacyacyacTadHaCwamMamgamgamgamgamgamgamgamgamgamgalAalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagiaSabcpaSebcnbcrbcwaRVaSuaRbandamZasSanQawmaSzbeJaSDbeLaSFbeNbeMbfobYtaSLaoJaacaikarZasaaSOascaeOaeOaeOaeOaeOaeOafAacmadHacmacyaddaddaddacGacFamIacmacmamIacFacGaddaddaddacyadHaTAashashashashashashashashasiamMasialAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagibftbfvaRXaTRaRXbfTklOaTWaRbaTXaIOaIOaSBaXXaltaoIaUkbgCaUmbgEbgDaoIbgFaoJaeiaacaikaUEasDaUIaUFafCafCafCafCafCafCafDacmadHacmacyadladladlacyacyacyacmacmacyacyacyadladladlacyadHaCwasIasJasKasLaSoasNasOasIasPasQaVxalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaRbbhjbnwaVzaVBbnIaVHaVGvyIaRbaVNaVKaVWaVPaZnaltaTEbXGbXIaWdbXKbXJaoIbgFaoJaacaacaikaqsatoaWjatqafCafEafJafFafNafCaWnacmadHacmacyacCadEamuamradladcacmacmacYuiNadkadEamuacZacyadHaWJasIasJasKatxatyasNasOasIaXwaXlaXyalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWaRbaRbaXCaRbaRbaXRaRbaRbaRbaRbalvalvalvalvalvalvaoJatHaYaaXYaYcaYbaYgaYgaoJafCafCagbafCafCacoafCafCafnageageaggaYtaghacmadHacmacyadmamvamvamwadladcacmacmacYadlamxamvamvamHacyadHaFzasIasJasKatxatyasNasOasIaYWalAalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbbYfbYhbYgaRbaRbaRbbYibYjbYjbYlbYkbYmbYlbYlacsagRagQagTaZqagVagUagWagWagYagXagYagZahbahaaZPahcahGahFahHacpacrahIacpacpbayahJacyacyacyacyacyacyacTacmacmacTacyacyacyacyacyacyacWbaIasIasIasIauobaQasIasIasIbaTaurausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbbYJbaVbYKaRbbYNbYPbYjbYjbYjbYlacvamhacMadpadRadTadXadXaecaeeacpacpacpacpacpahHaimacpacpbbEacpaipaioaiqacpacpairacpacpacpaisahHacpacpaCxacmbbTacpacpacpacpacpacpacpacpacpmbnqBcbchbclbckbcxauZavaaeqavcasIbcObcKausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbaRbaRbaRbaRbbYPbYPbYjbYjbYjbYjbYjbYjbZkbZmacsajKbdibdqbdnbdubdrbdFbdxbdKbdHbdSbdLbdWbdTbdZbdTbeebedbehbegbegbeibegbegbegbedbekbejbepbembevberbeBbezbezbeEbeHbeFbeKaqgaqxagoagpbeSbeYavZavZawaawbagzavcasIbaTbfkausaacaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYPbYjbYjbYjbYjbYjbZzbYlbfFawsawpbfGbfJawsawsawsawtawtawtawuarebfQarfaaTaaTaaTawyawzawzawzawzawzawzawzawzawzawAbfWawCbfYawEawFawGawGawGawGawHawIawJawKawKalMaePbgfasIasIasIasIasIasIasIasIbcObgrausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYjbYjbZFbZDbZmbYjbYjbYlbYjawsawPbgGbgJbgHbgNawsawUbgObrvawubhcafoawZawubhgaxbawyaxcaxcaxcaxcaxcaxcaxcaxcaxdawEaxeaxfaxgawEbhrbhtaxjaxjaxjbmMawIaxkaxlawKamLacmbhHbhKbhJbhJbhLbidbhLbhJbhJbiraxtausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZHbZJbZvcahbYjbZDbZDbZmbYlbZKbYjbYjawsaxuaxvaxwaxxbiCawsaxzalObiKawuaxCafqafrawuaxDaxEawyaxcaxdaxcaxcaxcaxcaxcaxcaxcawElxQbjtbjoawEagjbjCagkagkagkaglawIaxkaxMawKamPaCebjXausausausausausausausausausausausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZHbZHbYPbZObZPbYjbZzbYlbYjbZQbYjawsbkmawsaxQaxRaxRawsbkpalPbksbkqbkyaftafuawuaxZbXsawyafvafwafwafwafwafwafwafwafxawyayeayfbllawIblrblxayjblFaylaymawIaynbmcawKamLacmbmvbmAageatsageatuattageageatvaaTaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbYPbYPbYPbYPbYPbYPbZRbYlbZSbYlbYlbYlbYjbYjawsaywayxawsayyayyawsbnealSayBayCayDafBafGaekbnobnlgkCaZVayKbcEbkCayNblSbkEayQbnBgkCaySayTayUawIbnLayWayXayXayXbnZawIayZazaawKbocamQamSatKacmacmacmacmacmacmacmboqaaTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacbYPbZTbYjbYjbYlbZDbZDbYjbYlbYjbYjawsaxRbouawsawsawsawsazhalSaziawuazjbhaawZawuaelazlawyazmaznazoazpaznazqazraznboHboLaxFboMafKagmboNayWazyazzazAboUawIaxkawKawKauhaumamTbpfbpdalYbphbpibpibpmbplauPaaTaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaacaacaacaacaacbYPbZTbYjbYjbYjbZmbYjbYlbZkbYjbYjawsazMazNawsbQabQaawsazOazObpvawuazQbhaazRawubpzazlawybpDazUazVazUazUazUazWazUbpJawyazYayTazZagnbpMayWbpQaAdbABaAfawIaxkawKamUaaTamVamWamXaaTaaTaaTaAkaAkaAkbqbaAkaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaacaacaacbYPawuawuawuaeFaeFaeFawuaeIaeRawuawsawsawsawsawsawsawsawtawtawtawuaAmbqfaAoawubqjaAqawybqlbqsbqobqAbqxbqAbqDbqAbqFbqRbqPbrdbqUbrjbrfbroayXaAGayXbrDawIaxkawKanaanbanfanhanianjankanmaAkaAOaAPbrVbrXaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawubZYbzRbZZaAVaAVbCgaBiaBibslaAZaBaaBbbEWaAVaAVaBdaAXbsvaBfbFfaBhbhaaBiawuawuawuawyaBjaBKaBkbsHazUazUbvkazUbwxawybnvbsNbsMawIaBrbsOaBtaBubsPbsRawIayZawKannanpansanvanwannanxanAaAkaAkaAkbtobtraAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawubttbtsbtybtubtubtubtubtubtubtCbtubtFbtubtubtubtubtubtMbtFbtubtSbtOaBiawuaacaacawyaBJaBKazUaBLazUazUazUazUaBMbvbaBObsNbvdawIawIawIawIawIawIawIawIayZawKanmanGanIanJanKanpanMannaAkaAOaBUaBVbvsaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawucaebvtaBZbvuaBZaBZaBZaBZoEHaBZaBZaBZaBZaBZoEHaBZaBZaBZaBZbvubvEbhaaCcawuaacaacawybvNbvWbvSbwcbvYazUbcsbFNbDvbwlbwhbwnaCnbwqaCpaCqafVaCsaCtaCuawEayZawKanNanOanSanTanUanVannanWaAkaAkaAkaCCaCDaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFaCGbwVaCIaCFawuaCJaCJaCJawuawuaCJaCJaCJawuawuaCJaCJaCJawuaCKaCLbxeaCNaCKaacaCOaCOaCOaCOaCObJQaCObxJbxEbxLaCOaCOaCSbxYaCUbyaaCWbyfaCYaCZaCtaCuawEaxkawKanXanmanYaoaaobanpanmaocaAkbyyaDhbyAbvsaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFbyEbyDbyGaCFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCKbyNaDnbyPaCKaacaCOaDpaDqaDraCObyWbyVaDuaDubzabyYbzcaxFbsNaxgaDyaDzaDzaDzaDzaDAaDAaDAaxkawKaodannaoeaosaobannaoeaouamUamUamUamUamUaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKaacaCObzIaDNaDOaCObnWaDQaDRaDuaDubzYbAkazYbsNbArawEbAvbACbAzbAKbxabAQbAPbASawKaovaoxaozanvaoeaoAaoCaoDamUaoEaoKaoLamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEnbBoaCKaacaCOaCObBraCOaCObnYaEraEsaEtaEubBwbBHbBzbBKbBJawEbBPaEBbBYbCdbCbaEFaEGbChawKaoMaoNaoeanvanwaoPanYaoQaoRaoSanYanYamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaENaDFaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEObDraCKaacaCOaEPaEQbDXaCObEebEaaDuaDuaDubECaCOaEVbENbEGbFebESbFgaFbaDzbFpawKawKawKawKaoTaoUaoeaoWaoYapaapdapfaphapjapkaplamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFbFEaFqaFraCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaDJaFtbFHaCKaacaCObFPaFwaFxbFQbFTaDuaDuaDuaDubFVaCOaFBbGfbFWawEaDzaDzaDzaDzaacaacaacaacamUapmapnaptapzaobapAanpapmaoRapCanpapEamUaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypbGoaFTaFUaFVaFWaDFaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbGyaFYaFZaGaaGbaDKaCKaacaCOaGcbGQbGWaCObWHbHeaGibHgbHkbHiaCOeAfbGfayUaGlawEaacaacaacaacaacaacaacamUapFapHanpapRapSapVapWapYapZaqbaqcamUamUaacaacaacaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbHtbHwbHubHyaGzbHzaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbHGbHObHNbHVaGFbHYaCKaacaCOaCOaCOaCOaCOaCOaCOaCOaCOaCOaCOaCOccxbILaGJawEaGKaGKaGKaacaacaacaacaacaqdaqdaqdaqnaqpaqraqdaqwaqdamUamUamUamUaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbJlaGZaFUaHaaDFaDGaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbJmaHcaFZaHdaDKaDLaCKaacaacaacaacaacaacaacaacaacaGKaHfbJJaGKaGKbJTaHiaGKbJYaHkaGKaacaacaacaacaqdaqdaqyaqzaqAaqCaqPaqUaqVaqdaqdaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFaHsaHtbKoaCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaHvaHwaHxaCKaacaacaacaacaacaacaacaacaacaGKaHfaHfbLNbLLbLVaHBbMibMdaHEaGKaacaacaacaacaqdaqWaqXaqAaqAaqYaqZaraarcargaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKaacaacaacaacaacaacaacaacaacaGKaHMaHNaHOaHPbMLaHRaHSbMNaHUaGKaacaacaacaacaqdariaqXarjarmaroarpaqXaqXariaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaaaaabaaaaaaaaaaaaaaaaypaypaypaaaaabbznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaabzqaDJaEnaIcaCKaacaacaacaacaacaacaacaacaacaGKaIdbNKbNLbNLbNVaIhaIhbNWaIjaGKaacaacaacaacaqdarsarvarwarDarGarJarLarParSaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaabznaDEaENaDFaFUlGAaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaacolaDJaEObDraCKaacaacaacaacaacaacaacaacaacaGKaGKaGKameaIuaIuaIuaIvaGKaGKaGKaacaacaacaacaqdarUarParParWarYasdaqAaqAaseaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbFEaIybHzscBmNUaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaIAaDJaFtbPcaCKaacaacaacaacaacaacaacaacaacaacaacaGKaGKaGKaGKaGKaGKaGKaacaacaacaacaacaacaqdasfasjariaqXasoarPariasjasqaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbGoaFTaFUaFVaFWaDGwlDwlDdlVbwbbwbbwbbwbbwbaabaIbaIbaIbaIbaIbbPjezXbXlaGaaGbbPlaCKaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaqdaqdaqdastastastastastaqdaqdaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPpbPrbPqbPsaIMuWSjyskLNtKIbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPtbPzbPxalVaIRaISaCKaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaataataataataataataataataataacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPDaGZaFUaIUaDGaDGwlDkCHvbmbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPEbXnbXlbPNbPFbPOaCKaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaataataataataataataataataataataataataacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbPPaIYbPQaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCFaJabXmbPSaCKaaaaaaaaaaaaaaaaaaaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaataataataaaaaaaaaaaaaaaaaaaataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbPYbPXaFUaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCKaFZbQcbQdaCKaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznbQjbQeaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQkbQlaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznbQqbQmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQtbQuaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaabQvbQzbQxaJoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabJmbQCbQFbQDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa -"} +"aaa" = (/turf/space,/area/space) +"aab" = (/obj/effect/landmark{name = "carpspawn"},/turf/space,/area/space) +"aac" = (/turf/simulated/mineral/vacuum,/area/mine/explored/upper_level) +"aad" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"aae" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aaf" = (/turf/space,/area/shuttle/excursion/tether_nearby) +"aag" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/space) +"aah" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aai" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aaj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aak" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aal" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aam" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aan" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"aao" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aap" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aaq" = (/turf/simulated/wall/r_wall,/area/tether/station/burial) +"aar" = (/obj/structure/cable/cyan{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aas" = (/obj/machinery/power/smes/buildable{charge = 2e+006; input_attempt = 1; input_level = 100000; output_level = 200000; RCon_tag = "Engine - Core"},/obj/structure/cable/cyan{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes) +"aat" = (/turf/simulated/mineral/floor/vacuum,/area/mine/explored/upper_level) +"aau" = (/turf/simulated/wall,/area/tether/station/burial) +"aav" = (/obj/machinery/alarm{pixel_y = 22},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaw" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aax" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aay" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaz" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/engineering/engine_smes) +"aaA" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 8},/obj/structure/cable/yellow{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/engineering/engine_smes) +"aaB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aaC" = (/obj/machinery/power/grid_checker,/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes) +"aaD" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaE" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/hatch{icon_state = "door_locked"; id_tag = "engine_electrical_maintenance"; locked = 1; name = "Electrical Maintenance"; req_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aaF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aaG" = (/obj/machinery/power/smes/buildable{charge = 2e+007; cur_coils = 4; input_attempt = 1; input_level = 500000; output_level = 1e+006; RCon_tag = "Power - Main"},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/engineering/engine_smes) +"aaH" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/tether/station/burial) +"aaI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock{name = "Burial Services"; req_access = list(27)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaL" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Master Grid"; name_tag = "Master"},/turf/simulated/floor,/area/engineering/engine_smes) +"aaM" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaN" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aaO" = (/obj/machinery/light_switch{pixel_y = 24},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/computer/pickengine,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aaP" = (/obj/structure/table/standard,/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaQ" = (/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineVent"; name = "Reactor Vent"; p_open = 0},/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"aaR" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/cyan{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/airlock{id = "engine_electrical_maintenance"; name = "Door Bolt Control"; pixel_x = -25; pixel_y = 0; req_access = list(10); specialfunctions = 4},/obj/structure/table/steel,/obj/machinery/cell_charger,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aaS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aaT" = (/turf/simulated/wall,/area/hallway/station/atrium) +"aaU" = (/obj/machinery/door/airlock/maintenance_hatch{name = "SMES Access"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) +"aaV" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/engi_wash) +"aaW" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aaX" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aaY" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aaZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aba" = (/obj/structure/bed/chair{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abb" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/paper{info = "The big blue box recently installed in here is a 'grid checker' which will shut off the power if a dangerous power spike from the engine erupts into the powernet. Shutting everything down protects everything from electrical damage, however the outages can be disruptive to colony operations, so it is designed to restore power after a somewhat significant delay, up to ten minutes or so. The grid checker can be manually hacked in order to end the outage sooner. To do that, you must cut three specific wires which do not cause a red light to shine, then pulse a fourth wire. Electrical protection is highly recommended when doing maintenance on the grid checker."; name = "grid checker info"},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abc" = (/obj/structure/table/standard,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abd" = (/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abe" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/table/steel,/obj/item/weapon/storage/toolbox/electrical,/obj/item/clothing/gloves/yellow,/obj/item/device/multitool{pixel_x = 5},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abf" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_smes) +"abg" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abh" = (/obj/machinery/button/remote/driver{id = "chapelgun"; name = "Chapel Mass Driver"; pixel_x = 32; pixel_y = 2},/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abi" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abj" = (/turf/simulated/floor/reinforced/nitrogen{nitrogen = 82.1472},/area/engineering/engine_room) +"abk" = (/turf/simulated/floor/reinforced,/area/engineering/engine_room) +"abl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"abm" = (/obj/structure/cable/green{icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abp" = (/obj/machinery/mass_driver{icon_state = "mass_driver"; dir = 4; id = "chapelgun"},/obj/machinery/door/window{dir = 8; name = "Mass Driver"; req_access = list(22)},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abq" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_interior"; locked = 0; name = "Engine Airlock Interior"; req_access = list(11)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"abr" = (/obj/structure/cable/cyan{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abs" = (/obj/machinery/door/airlock/maintenance_hatch{frequency = 1379; icon_state = "door_closed"; id_tag = "engine_airlock_exterior"; locked = 0; name = "Engine Airlock Exterior"; req_access = list(11)},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock) +"abt" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abu" = (/obj/structure/cable/yellow{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abv" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 4},/obj/structure/table/reinforced,/obj/item/device/pipe_painter,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"abw" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abx" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aby" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"abz" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor,/area/tether/station/burial) +"abA" = (/obj/effect/floor_decal/rust,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abB" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"abC" = (/turf/simulated/wall,/area/maintenance/station/eng_lower) +"abD" = (/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abE" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for the engine control room blast doors."; id = "EngineEmitterPortWest2"; name = "Engine Room Blast Doors"; pixel_x = 25; pixel_y = 0; req_access = null; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"abF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abG" = (/obj/structure/cable/yellow{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/yellow{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abH" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light_switch{dir = 1; pixel_y = -24},/obj/machinery/light/small,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abJ" = (/obj/machinery/door/blast/regular{dir = 8; id = "chapelgun"; name = "Chapel Launcher Door"},/obj/structure/fans/tiny,/turf/simulated/floor,/area/tether/station/burial) +"abK" = (/obj/structure/cable/green{icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abL" = (/obj/structure/closet/coffin,/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"abN" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor,/area/maintenance/substation/engineering) +"abO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"abP" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abQ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abR" = (/obj/structure/table/steel,/obj/random/action_figure,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abS" = (/obj/structure/bed/chair{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abT" = (/obj/structure/bed/chair{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"abU" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/obj/structure/cable/green,/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"abV" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"abW" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) +"abX" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"abY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"abZ" = (/turf/simulated/wall/r_wall,/area/engineering/atmos/backup) +"aca" = (/obj/structure/table/steel,/obj/item/weapon/deck/cards,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"acb" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"acc" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acd" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) +"ace" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"acf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acg" = (/turf/simulated/wall/r_wall,/area/engineering/engine_gas) +"ach" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aci" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/standard,/obj/random/soap,/obj/machinery/alarm{pixel_y = 22},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"acj" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"ack" = (/turf/simulated/floor,/area/maintenance/station/eng_lower) +"acl" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/gear_painter,/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acm" = (/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aco" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium) +"acp" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acq" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"acr" = (/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acs" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium) +"act" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"acv" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/scrubbers{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"acw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acx" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/power/sensor{name = "Powernet Sensor - Engineering Subgrid"; name_tag = "Engineering Subgrid"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"acy" = (/turf/simulated/floor/grass,/area/hallway/station/atrium) +"acz" = (/turf/simulated/wall/r_wall,/area/engineering/hallway) +"acA" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet,/obj/random/contraband,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"acB" = (/obj/structure/table/steel,/obj/random/tool,/obj/random/maintenance/medical,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"acC" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"acD" = (/obj/item/weapon/reagent_containers/food/snacks/donut/cherryjelly,/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"acE" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"acF" = (/obj/structure/flora/ausbushes/ppflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"acG" = (/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"acH" = (/turf/simulated/floor/wood,/area/hallway/station/atrium) +"acI" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"acJ" = (/turf/simulated/floor,/area/engineering/engine_room) +"acK" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"acL" = (/turf/simulated/wall/r_wall,/area/engineering/engine_smes) +"acM" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/broken{icon_state = "pipe-b"; dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"acN" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acO" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Engineering"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/camera/network/engineering,/turf/simulated/floor,/area/maintenance/substation/engineering) +"acP" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm1) +"acQ" = (/turf/simulated/wall,/area/maintenance/station/spacecommandmaint) +"acR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) +"acS" = (/turf/simulated/wall/r_wall,/area/engineering/workshop) +"acT" = (/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"acU" = (/obj/structure/bed/chair/wood{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"acV" = (/turf/simulated/wall/r_wall,/area/bridge/secondary) +"acW" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"acX" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 9},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"acY" = (/obj/structure/bed/chair/wood{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium) +"acZ" = (/obj/structure/railing{dir = 4},/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"ada" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/grass,/area/hallway/station/atrium) +"adb" = (/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Gateway Access Shutters"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway) +"adc" = (/obj/structure/bed/chair/wood{dir = 8},/turf/simulated/floor/grass,/area/hallway/station/atrium) +"add" = (/obj/structure/bed/chair/wood,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"ade" = (/obj/machinery/atmospherics/portables_connector,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"adf" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring) +"adg" = (/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adh" = (/obj/structure/girder,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adi" = (/obj/structure/table/steel,/obj/random/drinkbottle,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adj" = (/turf/simulated/wall,/area/maintenance/substation/spacecommand) +"adk" = (/obj/structure/railing{dir = 1},/obj/structure/railing{dir = 8},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"adl" = (/obj/structure/table/woodentable,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"adm" = (/obj/structure/railing{dir = 8},/obj/structure/railing,/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"adn" = (/obj/structure/table/marble,/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = 8; pixel_y = 12},/obj/item/weapon/reagent_containers/food/drinks/cup{pixel_x = -4; pixel_y = 12},/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ado" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"adp" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/rust,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"adq" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"adr" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/blue/full{dir = 8},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"ads" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"adt" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"adu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"adv" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"adw" = (/obj/structure/curtain/open/bed,/obj/structure/bed/padded,/obj/item/weapon/bedsheet/blue,/obj/random/plushie,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adx" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ady" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/window/reinforced{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"adz" = (/obj/structure/disposalpipe/trunk{dir = 1},/obj/machinery/disposal,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"adA" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"adB" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/computer/communications,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"adC" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/turf/simulated/floor,/area/maintenance/substation/engineering) +"adD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"adE" = (/obj/structure/railing{dir = 1},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"adF" = (/obj/machinery/power/terminal{icon_state = "term"; dir = 1},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/turf/simulated/floor,/area/maintenance/substation/engineering) +"adG" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adH" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"adI" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Substation"; req_one_access = list(10)},/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/maintenance/substation/engineering) +"adJ" = (/obj/machinery/computer/security,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"adK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adL" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"adM" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_soft/full,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"adN" = (/obj/structure/flora/pottedplant,/obj/effect/floor_decal/corner/blue/full{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"adO" = (/turf/simulated/wall/r_wall,/area/gateway/prep_room) +"adP" = (/turf/simulated/wall/r_wall,/area/gateway) +"adQ" = (/obj/machinery/computer/power_monitor{dir = 4; throwpass = 1},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"adR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/atrium) +"adS" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"adT" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"adU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"adV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"adW" = (/obj/structure/cable/green,/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/turf/simulated/floor,/area/maintenance/substation/engineering) +"adX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"adY" = (/obj/machinery/atmospherics/binary/pump{dir = 8},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"adZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aea" = (/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aeb" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled/techmaint,/area/engineering/engine_smes) +"aec" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aed" = (/obj/machinery/computer/supplycomp,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aee" = (/obj/structure/disposalpipe/junction{icon_state = "pipe-j2"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aef" = (/obj/random/junk,/obj/random/trash,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aeg" = (/obj/random/trash,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aeh" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aei" = (/turf/simulated/wall/r_wall,/area/mine/explored/upper_level) +"aej" = (/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aek" = (/obj/machinery/door/airlock/maintenance/common,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) +"ael" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/effect/decal/cleanable/dirt,/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor,/area/hallway/station/docks) +"aem" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aen" = (/turf/simulated/floor/tiled,/area/engineering/workshop) +"aeo" = (/obj/machinery/computer/station_alert/all{icon_state = "computer"; dir = 4},/obj/machinery/ai_status_display{pixel_x = -32},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aep" = (/obj/machinery/light{dir = 8},/obj/machinery/computer/power_monitor{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeq" = (/obj/machinery/computer/cryopod{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 5},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aer" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aes" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/station_map{pixel_y = 32},/obj/machinery/status_display{pixel_x = -32},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aet" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/computer/security/engineering{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aeu" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aev" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aew" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; icon_state = "pdoor0"; id = "EngineBlast"; name = "Engine Monitoring Room Blast Doors"; opacity = 0},/turf/simulated/floor,/area/engineering/engine_monitoring) +"aex" = (/obj/structure/flora/pottedplant/stoutbush,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aey" = (/turf/simulated/floor/tiled,/area/gateway/prep_room) +"aez" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/engine_monitoring) +"aeA" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engine Monitoring Room"; req_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) +"aeB" = (/obj/machinery/gateway{dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway) +"aeC" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aeD" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aeE" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aeF" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) +"aeG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aeH" = (/obj/machinery/light{dir = 4},/obj/machinery/computer/crew{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeI" = (/obj/machinery/door/airlock/multi_tile/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) +"aeJ" = (/obj/machinery/requests_console{announcementConsole = 1; department = "Secondary Bridge"; departmentType = 5; name = "Secondary Bridge RC"; pixel_x = -32; pixel_y = 0},/obj/structure/table/reinforced,/obj/item/weapon/book/codex,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeK" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeL" = (/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/random/tool,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aeM" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aeN" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/structure/table/reinforced,/obj/machinery/computer/med_data/laptop{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeO" = (/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator) +"aeP" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aeQ" = (/obj/machinery/computer/rcon{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 8},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aeR" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/docks) +"aeS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aeT" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/structure/table/reinforced,/obj/item/weapon/folder/blue,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeU" = (/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aeV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aeW" = (/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"aeX" = (/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"aeY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"aeZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"afa" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"afb" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"afc" = (/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary) +"afd" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary) +"afe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aff" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/industrial/danger{icon_state = "danger"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afh" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge/secondary) +"afi" = (/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afj" = (/obj/machinery/light,/obj/machinery/newscaster{layer = 3.3; pixel_x = 0; pixel_y = -32},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/bridge/secondary) +"afm" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway) +"afn" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afo" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afp" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) +"afq" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afr" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afs" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/solar,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aft" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/status_display{layer = 4; pixel_x = 32; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afv" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock/glass_command{name = "Secondary Control Room"},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"afw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"afx" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/bridge/secondary) +"afy" = (/turf/simulated/floor/holofloor/tiled/dark,/area/tether/elevator) +"afz" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afA" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afB" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afC" = (/turf/simulated/wall/r_wall,/area/hallway/station/atrium) +"afD" = (/obj/structure/table/reinforced,/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"afE" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afF" = (/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afG" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"afH" = (/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary) +"afI" = (/turf/simulated/wall,/area/tether/station/visitorhallway/office) +"afJ" = (/obj/machinery/vending/snack,/obj/machinery/light{dir = 1},/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afK" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/button/windowtint{id = "secondary_bridge"; pixel_x = 4; pixel_y = 26},/obj/machinery/button/remote/blast_door{id = "secondary_bridge_blast"; name = "Secondary Command Office Blastdoors"; pixel_x = -6; pixel_y = 28},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/bridge/secondary) +"afL" = (/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afM" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afN" = (/obj/machinery/disposal,/obj/effect/floor_decal/corner/lightgrey{dir = 9},/obj/effect/floor_decal/corner/lightgrey{dir = 6},/obj/structure/disposalpipe/trunk,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afO" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) +"afP" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_monitoring) +"afQ" = (/obj/machinery/light{dir = 1},/obj/machinery/recharge_station,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"afR" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/blue/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio{pixel_x = -2; pixel_y = -2},/obj/item/device/radio{pixel_x = 2; pixel_y = 2},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled,/area/bridge/secondary) +"afS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_monitoring) +"afT" = (/obj/machinery/atmospherics/pipe/manifold/visible/yellow{dir = 4},/obj/machinery/meter,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"afU" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/turf/simulated/floor/tiled,/area/engineering/workshop) +"afV" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge/secondary) +"afW" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afX" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"afZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aga" = (/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/vending/boozeomat,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"agb" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/hallway/station/atrium) +"agc" = (/obj/structure/grille,/obj/structure/cable/green,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief) +"agd" = (/obj/structure/table/reinforced,/obj/fiftyspawner/rods,/obj/fiftyspawner/rods,/obj/item/stack/material/glass/phoronrglass{amount = 20},/obj/fiftyspawner/wood,/turf/simulated/floor/tiled,/area/engineering/workshop) +"age" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light/small{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"agg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agh" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agi" = (/obj/structure/grille,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/window/reinforced/polarized/full{id = "ce_office"},/obj/structure/window/reinforced/polarized{dir = 8; id = "ce_office"},/turf/simulated/floor,/area/crew_quarters/heads/chief) +"agj" = (/obj/machinery/status_display,/turf/simulated/wall,/area/tether/station/visitorhallway/office) +"agk" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/visitorhallway/office) +"agl" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"agm" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary) +"agn" = (/turf/simulated/floor/tiled,/area/bridge/secondary) +"ago" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agr" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary) +"ags" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agt" = (/obj/machinery/light{dir = 4},/obj/machinery/photocopier,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agu" = (/obj/structure/sign/deck1,/turf/simulated/shuttle/wall/voidcraft/green{hard_corner = 1},/area/tether/elevator) +"agv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agw" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agx" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agy" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/tiled,/area/bridge/secondary) +"agz" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/obj/effect/landmark{name = "JoinLateCyborg"},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"agA" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agB" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agC" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/blue/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agE" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 9},/obj/machinery/light/small{dir = 1},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_al_c_snsr"; pixel_x = -25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"agG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/papershredder,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/blue/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agH" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/folder/yellow,/turf/simulated/floor/tiled,/area/engineering/break_room) +"agI" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/structure/closet/emcloset,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"agJ" = (/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"agK" = (/obj/machinery/computer/secure_data{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agL" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"agM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/machinery/computer/skills{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agN" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"agO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"agP" = (/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"agQ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agR" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agS" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary) +"agT" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agU" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agV" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agW" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agX" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"agZ" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aha" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahb" = (/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahc" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"ahd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"ahe" = (/obj/structure/filingcabinet/filingcabinet,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary) +"ahf" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"ahg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"ahh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary) +"ahi" = (/obj/machinery/ai_status_display,/turf/simulated/wall,/area/tether/station/visitorhallway/office) +"ahj" = (/turf/simulated/wall/r_wall,/area/bridge/secondary/teleporter) +"ahk" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/disposal,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/blue/border{dir = 6},/turf/simulated/floor/tiled,/area/bridge/secondary) +"ahl" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "secondary_bridge"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/secondary) +"ahm" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "secondary_bridge"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/secondary) +"ahn" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green,/obj/structure/grille,/obj/structure/window/reinforced/polarized/full{id = "secondary_bridge"},/obj/machinery/door/blast/regular{density = 0; dir = 8; icon_state = "pdoor0"; id = "secondary_bridge_blast"; name = "Secondary Command Office Blast Doors"; opacity = 0},/turf/simulated/floor/plating,/area/bridge/secondary) +"aho" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/substation/engineering) +"ahp" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"ahq" = (/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"ahr" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"ahs" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"aht" = (/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ahu" = (/obj/machinery/computer/transhuman/resleeving{dir = 8},/obj/machinery/status_display{pixel_x = 32; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"ahv" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/weapon/storage/firstaid/regular,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ahw" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahx" = (/obj/machinery/gateway{dir = 1},/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) +"ahy" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"ahz" = (/obj/machinery/gateway{dir = 5},/turf/simulated/floor/tiled/dark,/area/gateway) +"ahA" = (/obj/machinery/gateway{dir = 8},/turf/simulated/floor/tiled/dark,/area/gateway) +"ahB" = (/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"ahC" = (/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"ahD" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance_hatch{icon_state = "door_closed"; locked = 0; name = "Engine Access"; req_one_access = list(11)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_airlock) +"ahE" = (/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"ahF" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahG" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 2},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahH" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahI" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahJ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ahK" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"ahL" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"ahM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"ahN" = (/turf/simulated/wall/r_wall,/area/bridge/secondary/meeting_room) +"ahO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"ahP" = (/obj/machinery/computer/security/telescreen/entertainment{icon_state = "frame"; pixel_x = 0; pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"ahQ" = (/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"ahR" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"ahS" = (/obj/machinery/gateway/centerstation,/turf/simulated/floor/tiled/dark,/area/gateway) +"ahT" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"ahU" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"ahV" = (/obj/structure/lattice,/obj/structure/grille,/turf/space,/area/space) +"ahW" = (/obj/structure/lattice,/turf/space,/area/space) +"ahX" = (/obj/machinery/gateway{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) +"ahY" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/structure/symbol/lo{pixel_x = -32},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"ahZ" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aia" = (/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aib" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aic" = (/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"aid" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aie" = (/obj/structure/bed/chair/office/dark,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"aif" = (/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"aig" = (/obj/structure/bed/chair/office/dark{dir = 4},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"aih" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aii" = (/obj/machinery/gateway{dir = 10},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"aij" = (/turf/simulated/wall/r_wall,/area/engineering/break_room) +"aik" = (/turf/simulated/wall/r_wall,/area/maintenance/station/eng_lower) +"ail" = (/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aim" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ain" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Space Civ/Com Substation"},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"aio" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aip" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aiq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"air" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ais" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ait" = (/obj/structure/cable{icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"aiu" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"aiv" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/yellow,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"aiw" = (/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/bridge/secondary) +"aix" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aiy" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/embedded_controller/radio/airlock/advanced_airlock_controller{id_tag = "engine_room_airlock"; name = "Engine Room Airlock"; pixel_x = -24; tag_airpump = "engine_airlock_pump"; tag_chamber_sensor = "eng_al_c_snsr"; tag_exterior_door = "engine_airlock_exterior"; tag_exterior_sensor = "eng_al_ext_snsr"; tag_interior_door = "engine_airlock_interior"; tag_interior_sensor = "eng_al_int_snsr"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"aiz" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green,/turf/simulated/floor,/area/gateway) +"aiA" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"aiB" = (/obj/structure/filingcabinet/chestdrawer,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aiC" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1379; id_tag = "engine_airlock_pump"},/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"aiD" = (/obj/machinery/airlock_sensor/airlock_exterior{id_tag = "eng_al_ext_snsr"; layer = 3.3; master_tag = "engine_room_airlock"; pixel_x = -22; pixel_y = 0; req_access = list(10)},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/camera/network/engine{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"aiE" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 30},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aiF" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"aiG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aiH" = (/obj/machinery/keycard_auth{pixel_x = -24},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aiI" = (/obj/structure/closet,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aiJ" = (/obj/machinery/gateway,/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"aiK" = (/obj/machinery/gateway{dir = 6},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled/dark,/area/gateway) +"aiL" = (/obj/machinery/door/blast/shutters{dir = 2; id = "GateShut"; layer = 3.3; name = "Gateway Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/dark,/area/gateway) +"aiM" = (/turf/simulated/wall/r_wall,/area/engineering/engine_airlock) +"aiN" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"aiO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aiP" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aiQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"aiR" = (/obj/effect/decal/cleanable/dirt,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/junk,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aiS" = (/turf/simulated/floor/tiled/dark,/area/gateway) +"aiT" = (/obj/machinery/portable_atmospherics/canister/nitrogen,/turf/simulated/floor,/area/engineering/storage) +"aiU" = (/obj/machinery/button/remote/blast_door{id = "GateShut"; name = "Gateway Shutter"; pixel_y = 24; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway) +"aiV" = (/obj/machinery/space_heater,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aiW" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/status_display{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aiX" = (/obj/structure/closet,/obj/random/junk,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aiY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled/dark,/area/gateway) +"aiZ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/structure/disposalpipe/trunk,/obj/machinery/disposal,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"aja" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway) +"ajb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/dark,/area/gateway) +"ajc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/command{name = "Gateway Electrical Shaft"; req_access = list(62); req_one_access = list()},/turf/simulated/floor,/area/gateway) +"ajd" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 30},/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"aje" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajf" = (/obj/structure/closet/crate,/turf/simulated/floor/tiled/dark,/area/gateway) +"ajg" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/purple/border{icon_state = "bordercolor"; dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 1},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajh" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"aji" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajj" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajk" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/purple/bordercorner2,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajl" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajm" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajn" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajo" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajp" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/engine_room) +"ajq" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajs" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/engineering/engine_airlock) +"aju" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajv" = (/obj/structure/table/reinforced,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/obj/item/device/communicator,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajw" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/adv,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajx" = (/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajy" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"ajz" = (/obj/structure/table/reinforced,/obj/item/roller,/obj/item/roller,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajA" = (/obj/structure/table/reinforced,/obj/item/bodybag/cryobag,/obj/item/bodybag/cryobag,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajB" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"ajC" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"ajD" = (/obj/machinery/portable_atmospherics/canister/phoron,/turf/simulated/floor,/area/engineering/storage) +"ajE" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajF" = (/turf/simulated/floor/carpet,/area/engineering/break_room) +"ajG" = (/obj/effect/floor_decal/rust,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"ajH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajI" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/closet/crate/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor,/area/engineering/storage) +"ajJ" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajK" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ajL" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajM" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajN" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajO" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajP" = (/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajR" = (/obj/machinery/recharge_station,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajS" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajT" = (/turf/simulated/floor/bluegrid,/area/gateway/prep_room) +"ajU" = (/obj/machinery/mech_recharger,/turf/simulated/floor/bluegrid,/area/gateway/prep_room) +"ajV" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajW" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"ajX" = (/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajY" = (/obj/machinery/suit_cycler/engineering{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ajZ" = (/obj/machinery/suit_cycler/medical{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"aka" = (/obj/machinery/suit_cycler/security{req_access = null},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"akb" = (/obj/machinery/suit_cycler/mining{req_access = null},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"akc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Gateway Access Shutters"},/turf/simulated/floor/tiled/dark,/area/gateway) +"akd" = (/obj/machinery/floodlight,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"ake" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"akf" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_y = 22; req_access = list(62)},/turf/simulated/floor/tiled/dark,/area/gateway) +"akg" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/shield_gen/external,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"akh" = (/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/tiled/dark,/area/gateway) +"aki" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akj" = (/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"akk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/engineering/storage) +"akl" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"akm" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldwallgen,/turf/simulated/floor,/area/engineering/storage) +"akn" = (/obj/effect/floor_decal/rust,/obj/machinery/power/port_gen/pacman{anchored = 1},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"ako" = (/obj/effect/floor_decal/rust,/obj/structure/closet/crate,/obj/item/stack/material/phoron{amount = 25},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"akp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/engineering/storage) +"akq" = (/obj/structure/closet,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"akr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"aks" = (/turf/simulated/floor,/area/engineering/engine_gas) +"akt" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"aku" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower) +"akw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) +"akx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/gateway) +"aky" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway) +"akz" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway) +"akA" = (/obj/effect/floor_decal/industrial/warning,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/light{dir = 8; icon_state = "tube1"},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akB" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akC" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akD" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akE" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway) +"akF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/dark,/area/gateway) +"akG" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/dark,/area/gateway) +"akH" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled/dark,/area/gateway) +"akI" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akJ" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 10},/turf/simulated/floor/tiled/dark,/area/gateway) +"akK" = (/obj/structure/disposalpipe/segment,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akL" = (/obj/structure/closet/firecloset,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/light,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) +"akM" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/structure/extinguisher_cabinet{dir = 1; icon_state = "extinguisher_closed"; pixel_y = -32},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"akN" = (/obj/machinery/door/airlock/multi_tile/metal{name = "Gateway Prep Room"},/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akO" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"akP" = (/obj/machinery/door/blast/shutters{dir = 2; id = "PubPrepFront"; layer = 3.3; name = "Gateway Prep Shutter"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akQ" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/purple/border,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"akR" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"akS" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) +"akT" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"akU" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = 24; pixel_y = -23; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/gateway/prep_room) +"akV" = (/obj/machinery/button/remote/blast_door{id = "PubPrepFront"; name = "Gateway Shutter"; pixel_x = -24; pixel_y = 24; req_access = list(62)},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"akW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) +"akX" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"akY" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/purple/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/purple/bordercorner2{dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"akZ" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"ala" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"alb" = (/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"alc" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Hard Storage"; req_access = list(11); req_one_access = newlist()},/turf/simulated/floor/tiled{icon_state = "techmaint"},/area/engineering/storage) +"ald" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ale" = (/obj/structure/closet/crate,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled/dark,/area/gateway) +"alf" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/purple/border{dir = 6},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"alg" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass{name = "Exploration Public Access"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"alh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ali" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"alj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"alk" = (/obj/machinery/floodlight,/obj/item/device/radio/intercom{pixel_y = -24},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"all" = (/obj/machinery/button/remote/blast_door{id = "PubPrep"; name = "Public Access Shutter"; pixel_x = 25; pixel_y = 25; req_access = list(62)},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"alm" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aln" = (/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"alo" = (/obj/structure/table/standard,/obj/machinery/light{dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/holodeck_control) +"alp" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/obj/machinery/meter{frequency = 1443; id = "dist_aux_meter"; name = "Distribution Loop"},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"alq" = (/obj/structure/closet/excavation,/obj/item/device/multitool,/obj/item/device/multitool,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"alr" = (/obj/machinery/computer/station_alert{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engine_monitoring) +"als" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/recharger,/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/break_room) +"alt" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_monitoring) +"alu" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) +"alv" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_monitoring) +"alw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup) +"alx" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'RADIOACTIVE AREA'"; icon_state = "radiation"; name = "RADIOACTIVE AREA"; pixel_x = 0; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/atmos/backup) +"aly" = (/obj/machinery/computer/atmos_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"alz" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/blast/regular{dir = 4; icon_state = "pdoor1"; id = "EngineEmitterPortWest2"; layer = 3.3; name = "Engine Gas Storage"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup) +"alA" = (/turf/simulated/wall,/area/holodeck_control) +"alB" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) +"alC" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning{dir = 1},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"alD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/shieldgen,/turf/simulated/floor,/area/engineering/storage) +"alE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"alF" = (/turf/simulated/wall/r_wall,/area/engineering/engine_monitoring) +"alG" = (/turf/simulated/floor,/area/engineering/shaft) +"alH" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"alI" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"alJ" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/turf/simulated/floor/tiled,/area/gateway/prep_room) +"alK" = (/obj/structure/ladder/up,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/engineering/shaft) +"alL" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"alM" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"alN" = (/turf/simulated/wall/r_wall,/area/maintenance/abandonedlibrary) +"alO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/effect/landmark/start,/turf/simulated/floor/tiled,/area/storage/tools) +"alP" = (/obj/structure/cable{icon_state = "1-4"},/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools) +"alQ" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian) +"alR" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"alS" = (/obj/effect/landmark/start{name = "Assistant"},/turf/simulated/floor/tiled,/area/storage/tools) +"alT" = (/turf/simulated/wall,/area/storage/emergency_storage/emergency4) +"alU" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"alV" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"alW" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/steeldecal/steel_decals_central6{icon_state = "steel_decals_central6"; dir = 8},/obj/machinery/alarm{pixel_y = 22},/obj/vehicle/train/engine,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"alX" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"alY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"alZ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"ama" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for shutters."; id = "cafe2"; name = "Cafe Shutters"; pixel_x = -10; pixel_y = 36; req_access = list(); req_one_access = list(25)},/obj/item/weapon/hand_labeler,/obj/item/weapon/reagent_containers/glass/rag,/obj/item/weapon/reagent_containers/food/condiment/sugar,/obj/item/weapon/reagent_containers/spray/cleaner,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amb" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"amc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/turf/simulated/floor/tiled,/area/engineering/hallway) +"amd" = (/obj/machinery/light{dir = 1},/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/gps/engineering{pixel_x = 3; pixel_y = 6},/obj/item/device/gps/engineering{pixel_y = 3},/obj/item/device/gps/engineering{pixel_x = -3},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"ame" = (/obj/effect/landmark{name = "lightsout"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"amf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) +"amg" = (/turf/simulated/floor/reinforced{name = "Holodeck Projector Floor"},/area/holodeck/alphadeck) +"amh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/cap/visible/supply{dir = 4},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"ami" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amj" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"amk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aml" = (/obj/machinery/light,/obj/structure/closet/radiation,/obj/item/clothing/glasses/meson,/obj/item/clothing/glasses/meson,/turf/simulated/floor/tiled,/area/engineering/engine_airlock) +"amm" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amn" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"amo" = (/obj/machinery/door/window/northright{name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/hallway) +"amq" = (/obj/machinery/floodlight,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"amr" = (/obj/structure/railing{dir = 1},/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"ams" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair,/turf/simulated/floor/carpet,/area/engineering/foyer) +"amt" = (/obj/machinery/door/window{dir = 1; icon_state = "left"; name = "Cafe"; req_one_access = list(25)},/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amu" = (/obj/structure/railing{dir = 1},/mob/living/simple_mob/animal/passive/fish/koi/poisonous,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"amv" = (/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"amw" = (/obj/structure/railing,/obj/structure/railing{icon_state = "railing0"; dir = 4},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"amx" = (/obj/structure/railing,/obj/structure/railing{dir = 8},/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"amy" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/item/weapon/reagent_containers/food/drinks/shaker,/obj/item/device/flashlight/lamp/green,/obj/item/weapon/reagent_containers/food/snacks/donut/jelly,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amz" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tool,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/random/maintenance/engineering,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"amA" = (/obj/structure/disposalpipe/up{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"amB" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"amC" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 8; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amD" = (/obj/structure/table/woodentable,/obj/machinery/door/blast/shutters{dir = 4; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amE" = (/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) +"amF" = (/obj/machinery/door/blast/shutters{dir = 2; id = "cafe2"; layer = 3.1; name = "Cafe Shutters"},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/condiment/small/sugar,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amG" = (/obj/structure/table/marble,/obj/machinery/floor_light/prebuilt{on = 1},/obj/machinery/chemical_dispenser/bar_coffee/full,/turf/simulated/floor/wood,/area/hallway/station/atrium) +"amH" = (/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor/water/pool,/area/hallway/station/atrium) +"amI" = (/obj/structure/flora/ausbushes/brflowers,/obj/machinery/light/flamp/noshade,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"amJ" = (/obj/machinery/light/flamp/noshade,/obj/structure/flora/ausbushes/brflowers,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"amK" = (/turf/space,/area/shuttle/specialops/tether) +"amL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"amM" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control) +"amN" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/light{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control) +"amO" = (/obj/structure/dispenser,/turf/simulated/floor,/area/engineering/storage) +"amP" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"amQ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"amR" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"amS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"amT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"amU" = (/turf/simulated/wall,/area/maintenance/abandonedlibrary) +"amV" = (/obj/structure/sign/department/biblio,/turf/simulated/wall,/area/hallway/station/atrium) +"amW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass,/turf/simulated/floor/tiled/monofloor{dir = 8},/area/hallway/station/atrium) +"amX" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/turf/simulated/floor/tiled/monofloor{dir = 4},/area/hallway/station/atrium) +"amY" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"amZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"ana" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/engineering_guide,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anb" = (/obj/machinery/light{dir = 1},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/obj/item/weapon/book/manual/engineering_hacking,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anc" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/engineering/shaft) +"and" = (/obj/machinery/computer/atmoscontrol{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"ane" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/engineering/shaft) +"anf" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ang" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"anh" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"ani" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anj" = (/obj/machinery/newscaster{pixel_y = 32},/obj/structure/bed/chair/comfy/brown{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"ank" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/machinery/light_construct{icon_state = "tube-construct-stage1"; dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anl" = (/obj/structure/sign/department/engine,/turf/simulated/wall/r_wall,/area/engineering/hallway) +"anm" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"ann" = (/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"ano" = (/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"anp" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/disposalpipe/junction{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) +"anr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"ans" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"ant" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"anu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) +"anv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) +"anw" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anx" = (/obj/random/junk,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) +"any" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"anz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway) +"anA" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"anC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"anD" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"anE" = (/obj/structure/symbol/lo{pixel_y = 32},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"anF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/maintenance/engi,/turf/simulated/floor,/area/engineering/hallway) +"anG" = (/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anH" = (/turf/simulated/floor/greengrid/nitrogen,/area/engineering/engine_room) +"anI" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anK" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"anL" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway) +"anM" = (/obj/structure/bookcase,/obj/item/weapon/book/manual/hydroponics_pod_people,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anN" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/machinery/light_switch{dir = 4; pixel_x = -28; pixel_y = 12},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anP" = (/obj/effect/landmark/engine_loader_pickable{clean_turfs = list(list(20,93,30,118),list(31,94,35,96),list(29,97,43,118),list(44,113,46,118))},/turf/space,/area/space) +"anQ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"anR" = (/obj/effect/floor_decal/industrial/warning/corner,/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/button/remote/blast_door{desc = "A remote control-switch for engine core."; id = "EngineVent"; name = "Engine Ventillatory Control"; pixel_x = 6; pixel_y = -32},/obj/machinery/button/remote/airlock{desc = "A remote control-switch for the engine core airlock hatch bolts."; id = "engine_access_hatch"; name = "Engine Hatch Bolt Control"; pixel_x = -6; pixel_y = -32; specialfunctions = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"anS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anT" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/decal/cleanable/dirt,/obj/item/weapon/book/codex/lore/news,/obj/random/contraband,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"anU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"anV" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anW" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anX" = (/obj/structure/bookcase,/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 8},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/nuclear,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"anY" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"anZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aoa" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"aob" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoc" = (/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/obj/item/weapon/book/manual/rust_engine,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"aod" = (/obj/item/device/radio/intercom{dir = 8; pixel_x = -24},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"aoe" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) +"aof" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Civilian Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/civilian) +"aog" = (/obj/structure/table/standard,/obj/item/device/t_scanner,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) +"aoh" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor,/area/engineering/atmos/backup) +"aoi" = (/obj/machinery/space_heater,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) +"aoj" = (/obj/machinery/atmospherics/pipe/manifold/visible/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aok" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/machinery/light{dir = 1},/obj/machinery/atmospherics/pipe/manifold/visible/scrubbers{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aol" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aom" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"aon" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 4},/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aoo" = (/obj/machinery/power/emitter,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor,/area/engineering/storage) +"aop" = (/obj/machinery/vending/cola,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aoq" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aor" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aos" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"aot" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/airlock/maintenance/engi{name = "Engineering Electrical Shaft"; req_one_access = list(10)},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/hallway) +"aou" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aov" = (/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"aow" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 1},/obj/vehicle/train/trolley,/turf/simulated/floor/tiled/monotile,/area/engineering/hallway) +"aox" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoy" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/engineering/hallway) +"aoz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) +"aoA" = (/obj/structure/table/woodentable,/obj/effect/decal/cleanable/dirt,/obj/random/tool,/obj/random/medical,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoB" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aoC" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoD" = (/obj/machinery/newscaster{pixel_x = 30},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoE" = (/obj/random/junk,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoF" = (/obj/machinery/status_display,/turf/simulated/wall/r_wall,/area/engineering/break_room) +"aoG" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/tiled,/area/engineering/foyer) +"aoH" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aoI" = (/turf/simulated/floor/tiled,/area/engineering/foyer) +"aoJ" = (/turf/simulated/wall/r_wall,/area/engineering/foyer) +"aoK" = (/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoL" = (/obj/random/trash,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"aoM" = (/obj/structure/bed/chair/comfy/black,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoN" = (/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoO" = (/turf/simulated/wall/r_wall,/area/storage/emergency_storage/emergency4) +"aoP" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoQ" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"aoR" = (/obj/structure/grille,/obj/machinery/door/firedoor/border_only,/obj/structure/window/reinforced/polarized/full{id = "library_study"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoS" = (/obj/effect/decal/cleanable/dirt,/obj/item/stack/tile/carpet,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoT" = (/obj/structure/table/woodentable,/obj/item/weapon/paper,/obj/item/weapon/pen,/obj/machinery/newscaster{pixel_x = -30},/obj/item/weapon/book/codex,/obj/random/maintenance,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"aoU" = (/obj/structure/table,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibrary) +"aoV" = (/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 1},/turf/simulated/floor/tiled/monofloor{dir = 1},/area/holodeck_control) +"aoW" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoX" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/glass,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aoY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"aoZ" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9,/turf/simulated/floor/tiled,/area/engineering/hallway) +"apa" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/decal/cleanable/dirt,/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apb" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apc" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apd" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"ape" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/hallway) +"apf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/break_room) +"aph" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/door/firedoor/glass,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"api" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"apj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apk" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apl" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apm" = (/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"apn" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apo" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/universal,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"app" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 6},/obj/machinery/meter,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"apq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/binary/pump{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"apr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aps" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_atmos{name = "Atmospherics Substation"; req_access = list(24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/atmos/backup) +"apt" = (/obj/item/stack/tile/wood{amount = 10},/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apu" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"apv" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apw" = (/obj/machinery/atmospherics/pipe/simple/visible/supply{icon_state = "intact-supply"; dir = 10},/obj/machinery/atmospherics/pipe/simple/visible/scrubbers{icon_state = "intact-scrubbers"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"apx" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apC" = (/obj/machinery/button/windowtint{id = "library_study"; pixel_x = 26; pixel_y = -26},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apD" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apE" = (/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/table/woodentable,/obj/random/junk,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"apF" = (/obj/machinery/light/small,/obj/structure/closet/emcloset,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"apG" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apH" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"apI" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/borderfloor/corner{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner{icon_state = "bordercolorcorner"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apK" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apL" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apM" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 10},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"apN" = (/obj/machinery/computer/security/engineering,/turf/simulated/floor/wood,/area/engineering/break_room) +"apO" = (/obj/structure/flora/pottedplant,/turf/simulated/floor/wood,/area/engineering/break_room) +"apP" = (/obj/machinery/computer/station_alert,/turf/simulated/floor/wood,/area/engineering/break_room) +"apQ" = (/turf/simulated/floor/wood,/area/engineering/break_room) +"apR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibrary) +"apS" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/maintenance/abandonedlibrary) +"apT" = (/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/engineering/break_room) +"apU" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"apV" = (/obj/structure/table/woodentable,/obj/random/maintenance,/obj/random/mouseremains,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"apW" = (/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"apX" = (/obj/machinery/vending/snack,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) +"apY" = (/obj/machinery/light_construct/small,/obj/structure/bookcase,/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"apZ" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibrary) +"aqa" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"aqc" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/invisible,/obj/machinery/light/small,/obj/random/drinkbottle,/obj/random/coin,/turf/simulated/floor/carpet,/area/maintenance/abandonedlibrary) +"aqd" = (/turf/simulated/wall,/area/maintenance/abandonedlibraryconference) +"aqe" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/turf/simulated/floor,/area/engineering/atmos/backup) +"aqf" = (/obj/machinery/pipedispenser/disposal,/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 10},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqg" = (/obj/machinery/suit_storage_unit/standard_unit,/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"aqh" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 6},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/atmos/backup) +"aqj" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqk" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/tiled,/area/holodeck_control) +"aql" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqm" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqn" = (/obj/machinery/door/firedoor/glass,/obj/random/obstruction,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqo" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqp" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"aqq" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqr" = (/obj/machinery/door/firedoor/glass,/obj/structure/disposalpipe/segment,/obj/machinery/door/airlock/glass,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqs" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/disposalpipe/up{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aqt" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 8},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aqu" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqv" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/wood,/area/engineering/break_room) +"aqw" = (/obj/machinery/status_display,/turf/simulated/wall,/area/maintenance/abandonedlibraryconference) +"aqx" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"aqy" = (/obj/structure/table,/obj/effect/decal/cleanable/cobweb,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqz" = (/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"aqA" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"aqB" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqC" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqE" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqF" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqG" = (/obj/structure/bed/chair/comfy/beige,/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"aqH" = (/obj/machinery/vending/coffee,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) +"aqI" = (/obj/machinery/atmospherics/pipe/simple/visible/universal,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqJ" = (/obj/machinery/atmospherics/binary/pump,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqK" = (/obj/machinery/pipedispenser,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqL" = (/obj/machinery/atmospherics/pipe/simple/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aqM" = (/turf/simulated/wall,/area/engineering/workshop) +"aqN" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/workshop) +"aqO" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 10},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqP" = (/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"aqQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqS" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction{dir = 2; name = "Engineering"; sortType = "Engineering"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqT" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aqU" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqV" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqW" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"aqX" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"aqY" = (/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"aqZ" = (/obj/structure/bed/chair/office/dark,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"ara" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"arb" = (/obj/machinery/atmospherics/valve/digital/open,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"arc" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"ard" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/reagent_dispensers/watertank,/obj/structure/railing{icon_state = "railing0"; dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"are" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/door/firedoor/glass/hidden/steel,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"arf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"arg" = (/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light_construct/small{icon_state = "bulb-construct-stage1"; dir = 4},/obj/effect/decal/cleanable/cobweb{icon_state = "cobweb2"},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arh" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"ari" = (/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arj" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"ark" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arl" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arm" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/random/maintenance,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arn" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan{dir = 9},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aro" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/item/stack/material/wood{amount = 10},/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"arp" = (/obj/structure/table/woodentable,/obj/item/weapon/packageWrap,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/random/contraband,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"arq" = (/turf/simulated/wall/r_wall,/area/engineering/shaft) +"arr" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 1},/obj/item/weapon/storage/toolbox/mechanical{pixel_y = 5},/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/workshop) +"ars" = (/obj/structure/cable/green{icon_state = "0-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"art" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/tool,/turf/simulated/floor/tiled,/area/engineering/workshop) +"aru" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"arv" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"arw" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"arx" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/vending/engivend,/turf/simulated/floor/tiled,/area/engineering/workshop) +"ary" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arz" = (/obj/machinery/atmospherics/pipe/simple/visible/red{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arA" = (/obj/machinery/atmospherics/valve/open,/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"arB" = (/obj/machinery/atmospherics/pipe/manifold/visible/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/down{dir = 8},/obj/structure/lattice,/obj/machinery/door/firedoor/glass,/turf/simulated/open,/area/maintenance/station/eng_lower) +"arD" = (/obj/structure/table/woodentable,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"arF" = (/obj/effect/floor_decal/steeldecal/steel_decals5,/obj/effect/floor_decal/steeldecal/steel_decals9,/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 8},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop) +"arG" = (/obj/structure/table/woodentable,/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/random/maintenance,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"arH" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"arI" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/engineering/break_room) +"arJ" = (/obj/structure/table,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arK" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"arL" = (/obj/structure/bed/chair/office/dark{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arM" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/engineering) +"arN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/chips,/turf/simulated/floor/carpet,/area/engineering/break_room) +"arO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"arP" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"arQ" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arR" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 1},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"arS" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"arT" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"arU" = (/obj/effect/decal/cleanable/dirt,/obj/structure/closet/crate,/obj/random/maintenance/engineering,/obj/item/weapon/flame/lighter/zippo,/obj/random/tool,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arV" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) +"arW" = (/obj/item/stack/tile/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"arX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/hallway) +"arY" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"arZ" = (/obj/structure/disposalpipe/segment,/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"asa" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/effect/decal/cleanable/dirt,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"asb" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/wood,/area/engineering/break_room) +"asc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/railing{dir = 1},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"asd" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood,/area/maintenance/abandonedlibraryconference) +"ase" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/abandonedlibraryconference) +"asf" = (/obj/random/trash,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"asg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room) +"ash" = (/turf/simulated/wall/r_wall,/area/holodeck_control) +"asi" = (/obj/machinery/door/airlock/glass{name = "Holodeck Control"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/holodeck_control) +"asj" = (/obj/machinery/light_construct/small,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"ask" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/table/woodentable,/obj/item/weapon/book/manual/supermatter_engine{pixel_x = -3},/turf/simulated/floor/carpet,/area/engineering/break_room) +"asl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"asm" = (/obj/machinery/mech_recharger,/turf/simulated/floor,/area/engineering/workshop) +"asn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"aso" = (/obj/effect/floor_decal/techfloor,/obj/effect/floor_decal/techfloor/hole,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/telecomms/relay/preset/tether/station_mid,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"asp" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"asq" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"asr" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room) +"ass" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/vending/cigarette,/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) +"ast" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/maintenance/abandonedlibraryconference) +"asu" = (/obj/machinery/floodlight,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) +"asv" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/railing,/obj/random/junk,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower) +"asw" = (/obj/machinery/atmospherics/pipe/simple/visible/green,/obj/machinery/atmospherics/pipe/simple/visible/green{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"asx" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/engineering/break_room) +"asy" = (/obj/machinery/atmospherics/pipe/simple/visible/yellow,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"asz" = (/obj/machinery/atmospherics/pipe/manifold/visible/green{dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"asA" = (/obj/structure/table/reinforced,/obj/item/device/floor_painter,/obj/item/device/t_scanner,/obj/item/device/multitool{pixel_x = 5},/obj/item/weapon/reagent_containers/spray/cleaner,/obj/item/device/closet_painter,/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"asB" = (/obj/structure/table/woodentable,/obj/item/weapon/book/manual/security_space_law,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"asC" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"asD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"asE" = (/obj/structure/bed/chair/office/dark{dir = 8},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"asF" = (/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"asG" = (/turf/simulated/wall/r_wall,/area/maintenance/abandonedlibraryconference) +"asH" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"asI" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/cryo) +"asJ" = (/obj/structure/cryofeed{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"asK" = (/obj/machinery/cryopod{dir = 4},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"asL" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 9},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"asM" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/bridge/secondary) +"asN" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"asO" = (/obj/structure/cryofeed,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"asP" = (/obj/machinery/atmospherics/unary/vent_pump/on,/turf/simulated/floor/tiled,/area/holodeck_control) +"asQ" = (/obj/machinery/computer/HolodeckControl,/turf/simulated/floor/tiled,/area/holodeck_control) +"asR" = (/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/blue/bordercorner,/turf/simulated/floor/tiled,/area/bridge/secondary) +"asS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"asT" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/shutters{dir = 8; id = "PubPrep"; layer = 3.3; name = "Gateway Access Shutters"},/turf/simulated/floor/tiled/dark,/area/gateway) +"asU" = (/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"asV" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/turf/simulated/floor,/area/bridge/secondary/meeting_room) +"asW" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"asX" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"asY" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"asZ" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/item/weapon/folder/red,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"ata" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"atb" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Engineering Substation Bypass"},/turf/simulated/floor,/area/maintenance/substation/engineering) +"atc" = (/obj/structure/table/woodentable,/obj/item/weapon/storage/box/cups,/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"atd" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/wood,/area/engineering/break_room) +"ate" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"atf" = (/obj/machinery/atmospherics/binary/pump{dir = 1},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"atg" = (/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"ath" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/belt/utility,/obj/item/weapon/storage/belt/utility,/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/stack/cable_coil{pixel_x = 3; pixel_y = 3},/obj/item/weapon/storage/box/nifsofts_engineering,/turf/simulated/floor/tiled,/area/engineering/workshop) +"ati" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/item/device/paicard,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"atj" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 1; pixel_y = 24; req_access = list()},/obj/item/device/radio/off{pixel_y = 6},/obj/item/device/radio/off{pixel_x = -6; pixel_y = 4},/obj/item/device/radio/off{pixel_x = 6; pixel_y = 4},/obj/item/device/radio/off,/turf/simulated/floor/tiled,/area/engineering/workshop) +"atk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"atl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atm" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"atn" = (/obj/structure/bed/chair/office/dark{dir = 1},/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"ato" = (/obj/structure/railing{dir = 8},/obj/structure/closet,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"atp" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"atq" = (/obj/structure/closet/crate,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/maintenance/security,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"atr" = (/obj/structure/bed/chair/office/dark{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/bcarpet,/area/tether/station/visitorhallway/office) +"ats" = (/obj/machinery/alarm{pixel_y = 22},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"att" = (/obj/machinery/atm{pixel_y = 30},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"atu" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"atv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atw" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atx" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aty" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"atz" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/bridge/secondary/meeting_room) +"atA" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"atB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"atC" = (/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atD" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atE" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atF" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 5},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"atG" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/break_room) +"atH" = (/obj/structure/sign/department/eng,/turf/simulated/wall/r_wall,/area/engineering/foyer) +"atI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"atJ" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 8},/obj/effect/landmark/start{name = "Atmospheric Technician"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"atK" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"atL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"atN" = (/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"atO" = (/turf/simulated/wall/r_wall,/area/engineering/engine_eva) +"atP" = (/obj/structure/reagent_dispensers/water_cooler/full,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"atQ" = (/obj/structure/window/reinforced,/obj/structure/frame,/turf/simulated/floor/tiled,/area/engineering/workshop) +"atR" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"atS" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"atT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"atU" = (/obj/structure/disposalpipe/sortjunction{name = "Visitor Office"; sortType = "Visitor Office"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"atV" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"atW" = (/turf/simulated/floor/tiled,/area/engineering/hallway) +"atX" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"atY" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 1},/obj/effect/floor_decal/corner/white/diagonal,/turf/simulated/floor/tiled,/area/engineering/break_room) +"atZ" = (/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/bookcase/manuals/engineering,/obj/item/weapon/book/manual/engineering_construction,/obj/item/weapon/book/manual/atmospipes,/obj/item/weapon/book/manual/engineering_guide,/obj/item/weapon/book/manual/evaguide,/turf/simulated/floor/tiled,/area/engineering/break_room) +"aua" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aub" = (/obj/structure/bed/chair/comfy/blue{icon_state = "comfychair_preview"; dir = 8},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"auc" = (/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/storage/firstaid/regular,/obj/item/bodybag/cryobag{pixel_x = 6},/obj/random/medical/lite,/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room) +"aud" = (/obj/structure/closet/emcloset,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aue" = (/turf/simulated/wall,/area/engineering/atmos/backup) +"auf" = (/obj/structure/closet/firecloset/full/double,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aug" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auh" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aui" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auj" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auk" = (/obj/structure/stairs/west,/turf/simulated/floor/tiled,/area/engineering/workshop) +"aul" = (/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals_central4{dir = 8},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"aum" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aun" = (/obj/machinery/power/breakerbox/activated{RCon_tag = "Space Civ/Com Substation Bypass"},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"auo" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/techfloor{dir = 8},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aup" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auq" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aur" = (/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"aus" = (/turf/simulated/wall,/area/crew_quarters/sleep/cryo) +"aut" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auu" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auv" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"auw" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aux" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"auy" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"auz" = (/turf/simulated/wall,/area/engineering/break_room) +"auA" = (/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"auB" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"auC" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"auD" = (/turf/simulated/wall/r_wall,/area/maintenance/station/spacecommandmaint) +"auE" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auF" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"auG" = (/obj/structure/table/standard,/obj/item/weapon/hand_tele,/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"auH" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"auI" = (/obj/machinery/computer/teleporter{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"auJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"auK" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"auL" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Space Civ/Com"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"auM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"auN" = (/obj/machinery/power/terminal{dir = 8},/obj/structure/cable,/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"auO" = (/obj/machinery/vending/fitness,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"auP" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"auQ" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi{name = "Space Civ/Com Substation"},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"auR" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"auS" = (/obj/machinery/vending/tool,/obj/machinery/ai_status_display{pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/tools) +"auT" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"auU" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"auV" = (/obj/structure/table/woodentable,/obj/item/weapon/paper_bin,/obj/item/weapon/pen,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"auW" = (/obj/machinery/atmospherics/omni/mixer{tag_east = 1; tag_east_con = 0.21; tag_south = 1; tag_south_con = 0.79; tag_west = 2},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"auX" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/structure/table/reinforced,/obj/item/weapon/folder/white,/turf/simulated/floor/tiled/dark,/area/bridge/secondary) +"auY" = (/obj/machinery/atmospherics/omni/atmos_filter{tag_east = 2; tag_north = 1; tag_south = 4; tag_west = 3},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"auZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 1},/obj/effect/floor_decal/techfloor/corner{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"ava" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/effect/floor_decal/corner_techfloor_grid{dir = 4},/obj/effect/floor_decal/techfloor/corner{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"avb" = (/turf/simulated/wall/r_wall,/area/maintenance/substation/spacecommand) +"avc" = (/obj/machinery/cryopod/robot,/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"avd" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/table/reinforced,/obj/item/weapon/tool/crowbar,/obj/item/clothing/gloves/black,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/engineering/workshop) +"ave" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"avf" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/airless,/area/space) +"avg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/blood/oil/streak{amount = 0},/turf/simulated/floor/tiled,/area/engineering/workshop) +"avh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/workshop) +"avi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"avj" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"avk" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28; req_access = list(67)},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"avl" = (/obj/machinery/teleport/station{dir = 2},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"avm" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"avn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/light_switch{dir = 1; pixel_x = 0; pixel_y = -26},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avo" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"avp" = (/obj/structure/cable/green,/obj/structure/cable/green{icon_state = "0-4"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/sensor{name = "Powernet Sensor - Space Civ/Com Subgrid"; name_tag = "Space Civ/Com Subgrid"},/turf/simulated/floor,/area/maintenance/substation/spacecommand) +"avq" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"avr" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"avs" = (/obj/structure/table/reinforced,/obj/item/device/suit_cooling_unit,/obj/item/device/suit_cooling_unit,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"avt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avu" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avv" = (/obj/structure/bed/chair/comfy/black{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"avw" = (/obj/machinery/atmospherics/pipe/manifold/hidden/red{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway) +"avx" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"avy" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avz" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/sortjunction/flipped{name = "Engineering Break Room"; sortType = "Engineering Break Room"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"avA" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/structure/closet,/obj/item/weapon/storage/pill_bottle/dice_nerd,/obj/random/coin,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avB" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/wood,/area/engineering/break_room) +"avC" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avD" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Break Room"; req_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/break_room) +"avE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"avF" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"avG" = (/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avH" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avI" = (/obj/structure/bed/chair/comfy/beige{icon_state = "comfychair_preview"; dir = 1},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/carpet,/area/engineering/break_room) +"avJ" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avK" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avL" = (/obj/structure/table/reinforced,/obj/machinery/chemical_dispenser/bar_soft/full,/obj/effect/floor_decal/corner/white/diagonal,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/break_room) +"avM" = (/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Visitor Office"; sortType = "Visitor Office"},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avN" = (/obj/structure/disposalpipe/segment,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avO" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avP" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"avQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/bed/chair/office/dark,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"avR" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/bridge/secondary/hallway) +"avS" = (/obj/machinery/light/small,/obj/effect/decal/cleanable/dirt,/obj/structure/closet/firecloset/full/double,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) +"avT" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/flora/pottedplant{icon_state = "plant-21"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avU" = (/turf/simulated/wall,/area/tether/station/visitorhallway) +"avV" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"avW" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"avX" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"avY" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"avZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"awa" = (/obj/machinery/cryopod,/obj/effect/floor_decal/corner_techfloor_grid{dir = 10},/obj/effect/floor_decal/corner_techfloor_grid{dir = 5},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"awb" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"awc" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awd" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awe" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"awf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awg" = (/obj/structure/table/reinforced,/obj/machinery/photocopier/faxmachine{department = "Secondary Command Office"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/blue/border{dir = 5},/turf/simulated/floor/tiled,/area/bridge/secondary) +"awh" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"awi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awj" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awk" = (/obj/machinery/atmospherics/pipe/simple/visible/green{icon_state = "intact"; dir = 5},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"awl" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop) +"awm" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"awn" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{dir = 6},/turf/simulated/floor/tiled,/area/engineering/hallway) +"awo" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/light,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awp" = (/obj/machinery/door/airlock/multi_tile/glass{name = "Stairwell"},/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"awq" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awr" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"aws" = (/turf/simulated/wall,/area/tether/station/stairs_one) +"awt" = (/turf/simulated/wall,/area/storage/tools) +"awu" = (/turf/simulated/wall,/area/hallway/station/docks) +"awv" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm1"; name = "Room 1"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm1) +"aww" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm2) +"awx" = (/obj/structure/table/woodentable,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"awy" = (/obj/structure/bed/chair/comfy/brown{dir = 1},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"awz" = (/obj/structure/bed/chair/comfy/blue{icon_state = "comfychair_preview"; dir = 4},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"awA" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"awB" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals9{dir = 1},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled/techmaint,/area/engineering/workshop) +"awC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"awD" = (/obj/machinery/atmospherics/pipe/simple/hidden/red{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"awE" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/tether/station/visitorhallway) +"awF" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"awG" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm2"; name = "Room 2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm2) +"awH" = (/obj/structure/flora/pottedplant,/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"awI" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"awJ" = (/obj/machinery/button/remote/airlock{id = "spacedorm1"; name = "Room 1 Lock"; pixel_x = -28; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"awK" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"awL" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"awM" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/portable_atmospherics/powered/scrubber,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) +"awN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Teleport Access"; req_access = list(17)},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/bridge/secondary/teleporter) +"awO" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"awP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"awQ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"awR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/wood,/area/engineering/break_room) +"awS" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"awT" = (/obj/structure/table/reinforced,/obj/item/weapon/storage/box/donkpockets{pixel_x = 3; pixel_y = 2},/obj/item/weapon/storage/box/glasses/square,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/break_room) +"awU" = (/obj/machinery/lapvend,/turf/simulated/floor/tiled,/area/storage/tools) +"awV" = (/obj/machinery/teleport/hub{dir = 2},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"awW" = (/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"awX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"awY" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"awZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"axa" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"axb" = (/obj/structure/reagent_dispensers/fueltank,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/plating,/area/hallway/station/docks) +"axc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{name = "Secondary Command Office"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor,/area/bridge/secondary/meeting_room) +"axd" = (/obj/structure/bed/chair/comfy/black,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"axe" = (/obj/structure/table/woodentable,/obj/item/weapon/folder/blue,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/carpet/purcarpet,/area/bridge/secondary/meeting_room) +"axf" = (/obj/machinery/button/remote/airlock{id = "spacedorm2"; name = "Room 2 Lock"; pixel_x = 28; pixel_y = 26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"axg" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"axh" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 20; pixel_y = 30},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"axi" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"axj" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"axk" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/clothing/mask/gas,/obj/item/device/gps/command,/obj/item/device/gps/command,/obj/item/device/gps/command,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"axl" = (/obj/machinery/shieldwallgen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"axm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/command,/turf/simulated/floor,/area/bridge/secondary/teleporter) +"axn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"axo" = (/obj/structure/table/woodentable,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"axp" = (/obj/structure/table/woodentable,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"axq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"axr" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/newscaster{pixel_x = -30},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"axs" = (/turf/simulated/wall/r_wall,/area/bridge/secondary/hallway) +"axt" = (/obj/random/trash_pile,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"axu" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"axv" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"axw" = (/obj/machinery/light/small,/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"axx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 1},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"axy" = (/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"axz" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/storage/tools) +"axA" = (/obj/machinery/atmospherics/pipe/tank/oxygen{icon_state = "o2_map"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"axB" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/space_heater,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"axC" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"axD" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor,/area/hallway/station/docks) +"axE" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/atmospherics/pipe/simple/hidden/universal,/turf/simulated/floor/plating,/area/hallway/station/docks) +"axF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"axG" = (/obj/machinery/atmospherics/pipe/tank{dir = 1; icon_state = "air_map"; name = "Waste Tank"},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"axH" = (/obj/machinery/atmospherics/pipe/tank/nitrogen{icon_state = "n2_map"; dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"axI" = (/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"axJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"axK" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/sortjunction{dir = 4; name = "Space Meeting Room"; sortType = "Space Meeting Room"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"axL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/junction{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary) +"axM" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"axN" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"axO" = (/obj/structure/table/reinforced,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/fiftyspawner/glass,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/workshop) +"axP" = (/obj/structure/table/reinforced,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/fiftyspawner/steel,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/workshop) +"axQ" = (/obj/structure/sign/deck1,/turf/simulated/wall,/area/tether/station/stairs_one) +"axR" = (/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"axS" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"axT" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/bluedouble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm1) +"axU" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"axV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"axW" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"axX" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/reddouble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"axY" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/workshop) +"axZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/hallway/station/docks) +"aya" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"ayc" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/light/small,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"aye" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm2) +"ayf" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm3) +"ayg" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{icon_state = "0-4"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"ayh" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/iandouble,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"ayi" = (/obj/machinery/light,/obj/structure/table/reinforced,/obj/effect/floor_decal/corner/white/diagonal,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/multi,/obj/machinery/light_switch{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/break_room) +"ayj" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"ayk" = (/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"ayl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"aym" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"ayo" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayp" = (/turf/space,/area/shuttle/excursion/tether_dockarm) +"ayq" = (/obj/machinery/computer/card{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/blue/border{dir = 10},/turf/simulated/floor/tiled,/area/bridge/secondary) +"ayr" = (/obj/structure/bed/double/padded,/obj/item/weapon/bedsheet/browndouble,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"ays" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/decal/cleanable/dirt,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"ayt" = (/turf/simulated/wall,/area/crew_quarters/sleep/spacedorm4) +"ayu" = (/obj/structure/disposalpipe/segment,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayv" = (/obj/machinery/keycard_auth{pixel_x = 24},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"ayx" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"ayy" = (/obj/structure/stairs/south,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"ayz" = (/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 4},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"ayA" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools) +"ayC" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks) +"ayD" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"ayE" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayG" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayI" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"ayJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"ayK" = (/obj/structure/table/woodentable,/obj/item/device/flashlight/lamp/green{pixel_x = 1; pixel_y = 5},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayL" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayM" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayN" = (/obj/machinery/light/small{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"ayO" = (/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayP" = (/obj/structure/disposalpipe/segment,/obj/effect/landmark{name = "lightsout"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{icon_state = "intact-supply"; dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 5},/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayQ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayR" = (/obj/structure/dispenser{phorontanks = 0},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"ayS" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayT" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/light{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayV" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayW" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayX" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4; icon_state = "borderfloorcorner2"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"ayY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/common,/turf/simulated/floor,/area/tether/station/visitorhallway) +"ayZ" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/lightgrey/border{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"aza" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green,/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"azb" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"azc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"azd" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"aze" = (/obj/effect/floor_decal/steeldecal/steel_decals_central5{icon_state = "steel_decals_central5"; dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"azf" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"azg" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/turf/simulated/floor/tiled,/area/bridge/secondary) +"azh" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/newscaster{pixel_x = -30},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) +"azi" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/computer/timeclock/premade/east,/turf/simulated/floor/tiled,/area/storage/tools) +"azj" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 8},/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"azk" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/engineering{name = "Engineering Washroom"; req_one_access = list(10)},/turf/simulated/floor/tiled/white,/area/engineering/break_room) +"azl" = (/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/atmospherics/portables_connector{dir = 8},/turf/simulated/floor/plating,/area/hallway/station/docks) +"azm" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azn" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azo" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azp" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azq" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azs" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azt" = (/obj/structure/flora/pottedplant{icon_state = "plant-21"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/lightgrey/border{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/civilian{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azu" = (/turf/simulated/wall/r_wall,/area/tether/station/visitorhallway) +"azv" = (/turf/simulated/wall,/area/tether/station/visitorhallway/lounge) +"azw" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/disposalpipe/segment,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azx" = (/turf/simulated/wall,/area/tether/station/visitorhallway/laundry) +"azy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azz" = (/turf/simulated/wall/r_wall,/area/tether/station/visitorhallway/laundry) +"azA" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"azB" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"azC" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 6; pixel_y = 32},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azD" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"azE" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azF" = (/obj/machinery/vending/fitness,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azG" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/vending/cigarette,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azH" = (/obj/machinery/washing_machine,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azI" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/common,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/hallway/station/atrium) +"azJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"azK" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azL" = (/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = -6; pixel_y = 32},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azM" = (/obj/machinery/light_switch{pixel_y = -25},/obj/structure/table/steel,/obj/item/weapon/storage/box/lights/mixed,/obj/item/weapon/storage/box/lights/mixed,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"azN" = (/obj/machinery/light/small,/obj/structure/mopbucket,/obj/item/weapon/reagent_containers/glass/bucket,/obj/item/weapon/mop,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"azO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) +"azP" = (/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azQ" = (/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"azR" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"azS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azT" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azV" = (/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azW" = (/obj/machinery/washing_machine,/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"azX" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/lightgrey/border{dir = 9},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"azY" = (/obj/machinery/firealarm{dir = 8; pixel_x = -24},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"azZ" = (/obj/effect/landmark{name = "lightsout"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/hologram/holopad,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAa" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAb" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/bed/chair/comfy/brown,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway) +"aAd" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAe" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAf" = (/obj/structure/closet/wardrobe/suit,/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAg" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAh" = (/obj/structure/bed/chair/comfy/brown{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAj" = (/obj/structure/bed/chair/comfy/brown{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAk" = (/turf/simulated/wall,/area/crew_quarters/toilet) +"aAl" = (/obj/structure/table/woodentable,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aAm" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/light{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/borderfloor/corner2{dir = 10},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aAn" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aAo" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aAp" = (/obj/machinery/light/small{icon_state = "bulb1"; dir = 1},/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aAq" = (/obj/effect/decal/cleanable/dirt,/obj/random/trash_pile,/turf/simulated/floor,/area/hallway/station/docks) +"aAr" = (/obj/machinery/light/small,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aAs" = (/obj/machinery/suit_storage_unit/standard_unit,/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled/dark,/area/bridge/secondary/teleporter) +"aAt" = (/obj/machinery/light{icon_state = "tube1"; dir = 8},/turf/simulated/floor/tiled,/area/bridge/secondary/teleporter) +"aAu" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"aAv" = (/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/bridge/secondary) +"aAw" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/multi_tile/glass{dir = 2},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/computer/id_restorer{dir = 1; icon_state = "restorer"; pixel_y = -32},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAy" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAz" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAA" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAB" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAD" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAE" = (/obj/effect/landmark{name = "lightsout"},/obj/machinery/alarm{dir = 1; pixel_y = -25},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"aAF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAG" = (/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAH" = (/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/lightgrey/border{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/newscaster{pixel_x = 30},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/blue/border,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAJ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aAK" = (/obj/structure/closet/wardrobe/black,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aAM" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAN" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAO" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aAP" = (/obj/machinery/door/airlock{name = "Unit 1"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aAQ" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "exterior access button"; pixel_x = 0; pixel_y = -25; req_one_access = list(11,24)},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor/airless,/area/space) +"aAR" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aAS" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/southleft{name = "Jetpack Storage"; req_access = newlist(); req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aAT" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{dir = 2; name = "Atmospherics Hardsuits"; req_access = list(24)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/atmos,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/atmos,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aAU" = (/obj/structure/closet/wardrobe/xenos,/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAV" = (/obj/structure/bed/chair,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aAW" = (/turf/simulated/wall,/area/crew_quarters/sleep/engi_wash) +"aAX" = (/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aAY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/visitorhallway/lounge) +"aAZ" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBa" = (/obj/structure/closet/emcloset,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBb" = (/obj/structure/closet/emcloset,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/light{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBc" = (/obj/structure/table/bench/standard,/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aBd" = (/obj/structure/bed/chair,/obj/machinery/atm{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBe" = (/obj/structure/table/bench/standard,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aBf" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBg" = (/obj/structure/closet/secure_closet/engineering_chief,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aBh" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBi" = (/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aBj" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/visitorhallway/laundry) +"aBk" = (/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"aBl" = (/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/southright{name = "Jetpack Storage"; req_one_access = list(11,24)},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/item/weapon/tank/jetpack/carbondioxide,/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aBm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "interior access button"; pixel_x = -28; pixel_y = -26; req_access = list(13)},/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/firealarm{dir = 8; pixel_x = -26},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aBn" = (/obj/machinery/alarm{dir = 4; icon_state = "alarm0"; pixel_x = -22},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"aBo" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"aBp" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/table/reinforced,/obj/item/weapon/storage/briefcase/inflatable{pixel_x = 3; pixel_y = 6},/obj/item/weapon/storage/briefcase/inflatable{pixel_y = 3},/obj/item/weapon/storage/briefcase/inflatable{pixel_x = -3; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aBq" = (/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop) +"aBr" = (/obj/structure/table/woodentable,/obj/machinery/firealarm{dir = 4; pixel_x = 24},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"aBs" = (/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"aBt" = (/obj/machinery/button/remote/airlock{id = "spacedorm3"; name = "Room 3 Lock"; pixel_x = -28; pixel_y = -26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"aBu" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm3) +"aBv" = (/obj/structure/closet/secure_closet/personal,/obj/item/clothing/shoes/black,/obj/item/clothing/suit/storage/hooded/wintercoat,/obj/random/maintenance/clean,/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"aBw" = (/obj/effect/floor_decal/borderfloor{dir = 5},/obj/effect/floor_decal/corner/yellow/border{dir = 5},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/engineering/foyer) +"aBx" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aBy" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"aBz" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/contraband,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aBA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aBB" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aBC" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/effect/landmark{name = "xeno_spawn"; pixel_x = -1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aBD" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aBE" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aBF" = (/obj/structure/closet/crate,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/mre,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aBG" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/medical,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aBH" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'HIGH VOLTAGE'"; icon_state = "shock"; name = "HIGH VOLTAGE"; pixel_y = 0},/turf/simulated/wall/r_wall,/area/maintenance/substation/civilian) +"aBI" = (/obj/machinery/button/remote/airlock{id = "spacedorm4"; name = "Room 4 Lock"; pixel_x = 28; pixel_y = -26; specialfunctions = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"aBJ" = (/obj/machinery/light_switch{dir = 8; pixel_x = 26; pixel_y = 8},/turf/simulated/floor/wood,/area/crew_quarters/sleep/spacedorm4) +"aBK" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aBL" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/maintenance/station/spacecommandmaint) +"aBM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm3"; name = "Room 3"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm3) +"aBN" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{id_tag = "spacedorm4"; name = "Room 4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/crew_quarters/sleep/spacedorm4) +"aBO" = (/turf/simulated/wall/r_wall,/area/crew_quarters/sleep/spacedorm4) +"aBP" = (/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -28},/obj/structure/cable/green,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"aBQ" = (/obj/effect/floor_decal/industrial/warning{dir = 10},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"aBR" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/turf/simulated/floor,/area/maintenance/substation/civilian) +"aBS" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{icon_state = "intact-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/camera/network/command,/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"aBT" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 8},/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aBU" = (/obj/machinery/door/airlock{name = "Unit 2"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aBV" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aBW" = (/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/wood,/area/bridge/secondary/meeting_room) +"aBX" = (/obj/machinery/door/airlock{name = "Restroom"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aBY" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/blue/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/command{icon_state = "camera"; dir = 4},/turf/simulated/floor/tiled,/area/bridge/secondary) +"aBZ" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aCa" = (/obj/machinery/recharge_station,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/carpet,/area/engineering/foyer) +"aCb" = (/obj/machinery/computer/security/engineering{dir = 1},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aCc" = (/obj/structure/table/reinforced,/obj/machinery/light_switch{dir = 2; name = "light switch "; pixel_x = 10; pixel_y = 36},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aCd" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/techfloor{dir = 9},/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aCe" = (/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCf" = (/obj/structure/table/reinforced,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/machinery/camera/network/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aCg" = (/obj/machinery/camera/network/engineering{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aCh" = (/obj/structure/table/reinforced,/obj/machinery/microwave,/obj/effect/floor_decal/corner/white/diagonal,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/break_room) +"aCi" = (/obj/machinery/atmospherics/pipe/tank/air{dir = 4},/obj/machinery/camera/network/engineering{dir = 1},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aCj" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/obj/machinery/camera/network/engineering{dir = 8},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aCk" = (/obj/effect/floor_decal/borderfloor{dir = 8; icon_state = "borderfloor"; pixel_x = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/office) +"aCl" = (/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/disposal,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/lounge) +"aCm" = (/obj/machinery/washing_machine,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/tether/station/visitorhallway/laundry) +"aCn" = (/obj/machinery/camera/network/civilian{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/burial) +"aCo" = (/obj/effect/floor_decal/industrial/hatch/yellow,/obj/machinery/camera/network/command{icon_state = "camera"; dir = 9},/turf/simulated/floor/tiled/dark,/area/gateway/prep_room) +"aCp" = (/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 1},/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"aCq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCr" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/blue/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/blue/bordercorner2,/obj/effect/floor_decal/corner/blue/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCt" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCu" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCv" = (/obj/structure/reagent_dispensers/water_cooler/full,/obj/machinery/camera/network/tether{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aCw" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCx" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/holodeck_control) +"aCz" = (/obj/structure/bed/chair,/obj/machinery/camera/network/tether,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aCA" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/camera/network/tether{dir = 9},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aCB" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_outer"; locked = 1; name = "Engineering Starboard External Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor,/area/engineering/engineering_airlock) +"aCC" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aCD" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aCE" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aCF" = (/turf/simulated/wall,/area/tether/station/dock_one) +"aCG" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one) +"aCH" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aCI" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one) +"aCJ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/hallway/station/docks) +"aCK" = (/turf/simulated/wall,/area/tether/station/dock_two) +"aCL" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two) +"aCM" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"aCN" = (/obj/machinery/door/airlock/glass,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two) +"aCO" = (/obj/structure/closet/emcloset,/obj/effect/floor_decal/industrial/warning/corner,/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aCP" = (/obj/structure/table/reinforced,/obj/machinery/cell_charger,/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/tool/wrench,/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/obj/item/weapon/cell/high{charge = 100; maxcharge = 15000},/turf/simulated/floor/tiled,/area/engineering/workshop) +"aCQ" = (/obj/structure/table/reinforced,/obj/machinery/recharger,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/cell/device,/obj/item/weapon/cell/device,/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/workshop) +"aCR" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aCS" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/machinery/camera/network/civilian,/turf/simulated/floor/tiled,/area/storage/tools) +"aCT" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) +"aCU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor,/obj/machinery/camera/network/tether{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aCV" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aCW" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/cable/green{d1 = 16; d2 = 0; icon_state = "16-0"},/turf/simulated/floor/tiled,/area/bridge/secondary/hallway) +"aCX" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aCY" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"aDh" = (/obj/machinery/door/airlock{name = "Unit 3"},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"aDj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aDn" = (/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aDs" = (/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/industrial/warning/corner,/turf/simulated/floor,/area/maintenance/substation/civilian) +"aDD" = (/obj/machinery/atmospherics/unary/vent_pump/on,/obj/structure/undies_wardrobe,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aDE" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aDF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aDG" = (/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aDH" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aDJ" = (/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aDK" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aDL" = (/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aDM" = (/obj/machinery/power/sensor{name = "Powernet Sensor - Civilian Subgrid"; name_tag = "Civilian Subgrid"},/obj/structure/cable/green,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/effect/floor_decal/industrial/warning,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor,/area/maintenance/substation/civilian) +"aDP" = (/obj/structure/table/rack{dir = 1},/obj/item/clothing/suit/fire/firefighter,/obj/item/weapon/tank/oxygen,/obj/item/clothing/mask/gas,/obj/item/weapon/extinguisher,/obj/item/clothing/head/hardhat/red,/obj/item/clothing/glasses/meson,/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/random/junk,/obj/random/tool,/obj/random/maintenance/clean,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) +"aDZ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aEa" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 2; frequency = 1379; id_tag = "eng_starboard_pump"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aEb" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aEf" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aEl" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aEm" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aEn" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aEx" = (/obj/machinery/atmospherics/pipe/manifold/hidden/cyan{icon_state = "map"; dir = 4},/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aEz" = (/obj/machinery/atmospherics/portables_connector{dir = 4},/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/portable_atmospherics/powered/pump/filled,/turf/simulated/floor/tiled{icon_state = "monotile"},/area/engineering/hallway) +"aEA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aEE" = (/obj/structure/toilet{dir = 4},/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aEM" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aEN" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aEO" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aER" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash) +"aET" = (/obj/effect/floor_decal/steeldecal/steel_decals5{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals10{dir = 10},/obj/machinery/shower{dir = 1},/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/window/northleft{name = "Shower"; req_access = list()},/obj/structure/curtain/open/shower/engineering,/turf/simulated/floor/tiled,/area/crew_quarters/sleep/engi_wash) +"aEW" = (/obj/machinery/power/terminal{dir = 4},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/light/small{dir = 8},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian) +"aEX" = (/obj/machinery/power/smes/buildable{charge = 0; output_attempt = 0; outputting = 0; RCon_tag = "Substation - Civilian"},/obj/structure/cable/green{d2 = 2; icon_state = "0-2"},/obj/structure/cable/green,/turf/simulated/floor,/area/maintenance/substation/civilian) +"aEZ" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) +"aFc" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor,/area/storage/emergency_storage/emergency4) +"aFe" = (/obj/machinery/door/airlock{name = "Emergency Storage"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/storage/emergency_storage/emergency4) +"aFf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/storage/emergency_storage/emergency4) +"aFh" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aFq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFr" = (/obj/structure/extinguisher_cabinet{pixel_x = 25},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFt" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aFI" = (/obj/structure/table/standard,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/holodeck_control) +"aFJ" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1379; id_tag = "eng_starboard_pump"},/obj/machinery/airlock_sensor{frequency = 1379; id_tag = "eng_starboard_sensor"; pixel_x = 24; pixel_y = 10},/obj/machinery/embedded_controller/radio/airlock/airlock_controller{frequency = 1379; id_tag = "eng_starboard_airlock"; pixel_x = 24; pixel_y = 0; req_access = newlist(); req_one_access = list(11,24); tag_airpump = "eng_starboard_pump"; tag_chamber_sensor = "eng_starboard_sensor"; tag_exterior_door = "eng_starboard_outer"; tag_interior_door = "eng_starboard_inner"},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aFL" = (/obj/structure/window/reinforced{dir = 8},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northleft{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aFO" = (/obj/structure/window/reinforced{dir = 4},/obj/structure/table/rack{dir = 8; layer = 2.6},/obj/machinery/door/window/northright{name = "Engineering Hardsuits"; req_access = list(11)},/obj/item/clothing/shoes/magboots,/obj/item/clothing/suit/space/void/engineering,/obj/item/clothing/mask/breath,/obj/item/clothing/head/helmet/space/void/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aFT" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aFU" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aFV" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFW" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aFX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aFY" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aFZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aGa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aGb" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aGs" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aGx" = (/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aGy" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aGz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aGB" = (/turf/simulated/wall/r_wall,/area/engineering/engineering_airlock) +"aGF" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aGI" = (/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/substation/civilian) +"aGP" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/maintenance/engi{name = "Civilian Substation"},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/maintenance/substation/civilian) +"aGZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aHa" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aHb" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/apc; dir = 8; name = "west bump"; pixel_x = -28},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aHc" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aHd" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aHt" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aHv" = (/obj/machinery/light{dir = 8},/obj/machinery/door/firedoor/glass/hidden/steel,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aHw" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aHz" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aHQ" = (/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aHT" = (/obj/machinery/atmospherics/pipe/simple/hidden,/obj/machinery/door/airlock/glass_external{frequency = 1379; icon_state = "door_locked"; id_tag = "eng_starboard_inner"; locked = 1; name = "Engineering Starboard Internal Access"},/obj/effect/floor_decal/industrial/hatch/yellow,/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aHY" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering EVA Storage"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engine_eva) +"aIb" = (/turf/space,/area/shuttle/antag_space/docks) +"aIc" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aIf" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Workshop"; req_access = newlist(); req_one_access = list(14,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/workshop) +"aIi" = (/obj/machinery/atmospherics/pipe/simple/hidden/cyan{icon_state = "intact"; dir = 9},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aIl" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aIn" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aIo" = (/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aIp" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aIs" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aIy" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/item/device/radio/beacon,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aIA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aIM" = (/obj/effect/floor_decal/sign/dock/one,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aIO" = (/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aIR" = (/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"aIT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aIU" = (/obj/machinery/light{dir = 8},/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aIY" = (/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"aJh" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engineering_airlock) +"aJi" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"aJj" = (/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1379; master_tag = "eng_starboard_airlock"; name = "interior access button"; pixel_x = 24; pixel_y = 25; req_one_access = list(11,24)},/obj/machinery/atmospherics/unary/vent_pump/on,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) +"aJk" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) +"aJl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aJm" = (/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner_steel_grid{icon_state = "steel_grid"; dir = 9},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 8},/obj/effect/floor_decal/corner/yellow/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/universal{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aJn" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/atmospherics/binary/passive_gate/on{dir = 8},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aJo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"aJr" = (/turf/space,/area/shuttle/trade/station) +"aJs" = (/turf/simulated/wall/r_wall,/area/engineering/storage) +"aJw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aJx" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/workshop) +"aJy" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aJV" = (/obj/structure/closet/crate,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/circuitboard/smes,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_capacity,/obj/item/weapon/smes_coil/super_io,/obj/item/weapon/smes_coil/super_io,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor/plating,/area/engineering/storage) +"aKb" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aKl" = (/obj/structure/table/standard,/obj/structure/bedsheetbin,/obj/random/soap,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aKr" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aKt" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aKz" = (/obj/machinery/atmospherics/pipe/zpipe/up,/obj/machinery/atmospherics/pipe/zpipe/up/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/up/supply,/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/cable{icon_state = "16-0"},/obj/structure/cable{d2 = 2; icon_state = "0-2"},/obj/structure/cable,/turf/simulated/floor/plating,/area/maintenance/station/eng_lower) +"aKN" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aKQ" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals3{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals3,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aKU" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Unisex Showers"},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aLc" = (/obj/machinery/door/airlock/multi_tile/glass{autoclose = 1; dir = 2; id_tag = null; name = "Holodeck"; req_access = list()},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/steeldecal/steel_decals_central1,/turf/simulated/floor/tiled/monofloor,/area/holodeck_control) +"aLh" = (/obj/machinery/shield_gen,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aLi" = (/obj/machinery/shield_capacitor,/obj/effect/floor_decal/industrial/outline/yellow,/turf/simulated/floor,/area/engineering/storage) +"aLj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aLl" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aLp" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/effect/floor_decal/industrial/warning{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) +"aLt" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 1; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aLy" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLA" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLG" = (/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLH" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLI" = (/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/dark,/area/engineering/engineering_airlock) +"aLK" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/firealarm{dir = 1; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLO" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLP" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLU" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/engineering/hallway) +"aLX" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aLY" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMa" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMc" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/light,/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMg" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/yellow/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMj" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMk" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/sortjunction{dir = 2; name = "CE Office"; sortType = "CE Office"},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aMl" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/recharge_station,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aMp" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/machinery/washing_machine,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aMr" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aMt" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/railing,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aMx" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aMB" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"aML" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aMZ" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/tiled,/area/engineering/workshop) +"aNa" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/turf/simulated/floor/tiled,/area/engineering/workshop) +"aNb" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"aNd" = (/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 4},/obj/machinery/power/apc{dir = 2; name = "south bump"; pixel_y = -32},/obj/structure/cable/green,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) +"aNe" = (/obj/machinery/light/small{dir = 8; pixel_y = 0},/obj/machinery/atmospherics/portables_connector{dir = 1},/obj/machinery/portable_atmospherics/canister/air/airlock,/obj/effect/floor_decal/industrial/outline/yellow,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = -32; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_airlock) +"aNo" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/command{id_tag = "CEdoor"; name = "Chief Engineer"; req_access = list(56)},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/heads/chief) +"aNr" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) +"aNF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) +"aNH" = (/obj/structure/disposalpipe/segment,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Hallway"; req_one_access = list(10)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) +"aOj" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/railing{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aOL" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aOO" = (/obj/structure/table/standard,/obj/item/weapon/soap/nanotrasen,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/turf/simulated/floor/tiled,/area/holodeck_control) +"aOS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aOW" = (/obj/structure/table/reinforced,/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 6; pixel_y = 10; req_one_access = list(10,24)},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = -6; pixel_y = 10; req_access = list(10)},/obj/machinery/recharger,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aOY" = (/obj/structure/table/reinforced,/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/item/weapon/storage/toolbox/emergency,/obj/item/weapon/storage/toolbox/electrical,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aPa" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aPj" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aPq" = (/obj/structure/bed/chair,/obj/machinery/light{dir = 1},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/turf/simulated/floor/carpet,/area/engineering/foyer) +"aQa" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/structure/window/reinforced{dir = 1},/obj/item/clothing/mask/breath,/obj/item/weapon/rig/ce/equipped,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aQh" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aQk" = (/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aQl" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/structure/table/reinforced,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aQn" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aQs" = (/obj/machinery/power/apc{dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/machinery/computer/security/engineering{dir = 4},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aQv" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"aQw" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aQD" = (/obj/structure/table/reinforced,/obj/item/weapon/folder/yellow,/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aQJ" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aQQ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aQW" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) +"aQX" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/turf/simulated/floor/carpet,/area/engineering/foyer) +"aQZ" = (/obj/structure/closet/secure_closet/engineering_welding,/turf/simulated/floor/tiled,/area/engineering/workshop) +"aRb" = (/turf/simulated/wall/r_wall,/area/crew_quarters/heads/chief) +"aRc" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/turf/simulated/floor/carpet,/area/engineering/foyer) +"aRd" = (/obj/machinery/atmospherics/pipe/simple/visible/cyan,/obj/machinery/atmospherics/valve/digital{dir = 4},/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"aRr" = (/obj/machinery/atmospherics/valve/open,/obj/structure/railing{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/obj/effect/decal/cleanable/dirt,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aRw" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"aRy" = (/obj/structure/closet/toolcloset,/obj/item/weapon/pickaxe,/turf/simulated/floor/tiled,/area/engineering/workshop) +"aRA" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/turf/simulated/floor/tiled/monotile,/area/engineering/workshop) +"aRV" = (/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aRX" = (/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aRZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aSa" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/computer/station_alert/all{icon_state = "computer"; dir = 4},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aSe" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Chief Engineer"},/obj/machinery/button/windowtint{id = "ce_office"; layer = 3.3; pixel_x = 26; pixel_y = 29},/obj/machinery/button/remote/blast_door{id = "englockdown"; name = "Engineering Lockdown"; pixel_x = 26; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/blast_door{id = "atmoslockdown"; name = "Atmospherics Lockdown"; pixel_x = 38; pixel_y = -12; req_access = list(10)},/obj/machinery/button/remote/airlock{id = "CEdoor"; name = "CE Office Door Control"; pixel_x = 26},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aSo" = (/obj/effect/landmark{name = "JoinLateCryo"},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/status_display{pixel_y = 32},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"aSu" = (/obj/structure/table/reinforced,/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/photocopier/faxmachine{department = "Chief Engineer's Office"},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aSz" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/glass_engineering{name = "Engineering Monitoring Room"; req_one_access = list(11,24)},/turf/simulated/floor/tiled/steel_grid,/area/engineering/engineering_monitoring) +"aSB" = (/obj/structure/bed/chair/office/dark,/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aSC" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/engine_eva) +"aSD" = (/obj/structure/table/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/pen/blue{pixel_x = 4; pixel_y = 4},/obj/item/weapon/pen/red,/turf/simulated/floor/tiled,/area/engineering/foyer) +"aSF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aSL" = (/obj/machinery/alarm{dir = 1; icon_state = "alarm0"; pixel_y = -22},/obj/item/device/radio/intercom{dir = 4; pixel_x = 24},/obj/machinery/vending/cola,/turf/simulated/floor/carpet,/area/engineering/foyer) +"aSO" = (/obj/machinery/atmospherics/pipe/simple/hidden/universal,/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aTi" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aTm" = (/obj/machinery/hologram/holopad,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aTA" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/light{dir = 4; icon_state = "tube1"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/machinery/status_display{pixel_x = 32},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aTE" = (/obj/structure/table/reinforced,/obj/item/weapon/packageWrap,/obj/item/weapon/hand_labeler,/obj/machinery/status_display{pixel_y = -32},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aTJ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aTK" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aTL" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aTQ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aTR" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/obj/structure/table/reinforced,/obj/item/weapon/paper_bin{pixel_x = -3; pixel_y = 7},/obj/item/weapon/folder/yellow_ce,/obj/item/weapon/pen/multi,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"aTW" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/structure/window/reinforced{dir = 1},/obj/item/weapon/reagent_containers/food/snacks/snakesnack,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) +"aTX" = (/obj/machinery/computer/general_air_control{dir = 4; frequency = 1443; level = 3; name = "Distribution and Waste Monitor"; sensors = list("dist_main_meter" = "Surface - Distribution Loop", "scrub_main_meter" = "Surface - Scrubbers Loop", "mair_main_meter" = "Surface - Mixed Air Tank", "dist_aux_meter" = "Station - Distribution Loop", "scrub_aux_meter" = "Station - Scrubbers Loop", "mair_aux_meter" = "Station - Mixed Air Tank", "mair_mining_meter" = "Mining Outpost - Mixed Air Tank")},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aUk" = (/obj/machinery/door/window/westleft{dir = 4; name = "Engineering Reception Desk"; req_access = list(10)},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aUl" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aUm" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aUn" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aUo" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled,/area/engineering/hallway) +"aUE" = (/obj/structure/railing,/obj/structure/disposalpipe/segment,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aUF" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/medical/lite,/obj/random/tool,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aUI" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aUU" = (/turf/simulated/floor/tiled/white,/area/crew_quarters/sleep/engi_wash) +"aUX" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aVx" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/holodeck_control) +"aVz" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/machinery/requests_console{announcementConsole = 1; department = "Chief Engineer's Desk"; departmentType = 6; name = "Chief Engineer RC"; pixel_x = 0; pixel_y = -32},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aVG" = (/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) +"aVH" = (/obj/effect/floor_decal/industrial/warning/corner{icon_state = "warningcorner"; dir = 8},/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aVK" = (/obj/structure/table/reinforced,/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aVN" = (/obj/structure/table/reinforced,/obj/machinery/firealarm{dir = 1; pixel_y = -24},/obj/machinery/newscaster{layer = 3.3; pixel_x = -27; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aVP" = (/obj/machinery/computer/power_monitor{icon_state = "computer"; dir = 1},/obj/machinery/light,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aVW" = (/obj/machinery/computer/rcon{icon_state = "computer"; dir = 1},/obj/machinery/requests_console/preset/engineering{pixel_y = -30},/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aWd" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aWj" = (/obj/structure/disposalpipe/segment,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor,/area/maintenance/station/eng_lower) +"aWn" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aWJ" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aXl" = (/obj/item/weapon/stool/padded,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light/small,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor/tiled,/area/holodeck_control) +"aXw" = (/obj/structure/cable/green{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/holodeck_control) +"aXC" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock/hatch{name = "Server Room"; req_access = list(59); req_one_access = list(19)},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"aXR" = (/obj/structure/window/basic{dir = 1},/obj/machinery/button/remote/driver{id = "enginecore"; name = "Emergency Core Eject"; pixel_x = 0; pixel_y = -21},/turf/simulated/floor/tiled/freezer,/area/crew_quarters/heads/chief) +"aXX" = (/obj/structure/table/reinforced,/obj/item/weapon/deck/cards,/turf/simulated/floor/tiled,/area/engineering/engineering_monitoring) +"aXY" = (/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) +"aXZ" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/engineering/foyer) +"aYa" = (/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer) +"aYb" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor/plating,/area/engineering/foyer) +"aYc" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/obj/machinery/door/airlock/glass_engineering{name = "Engineering Lobby"; req_one_access = newlist()},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled/steel_grid,/area/engineering/foyer) +"aYf" = (/obj/structure/lattice,/obj/machinery/atmospherics/pipe/zpipe/down{dir = 1},/obj/structure/cable{icon_state = "32-1"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers,/obj/machinery/atmospherics/pipe/zpipe/down/supply,/obj/structure/disposalpipe/down{dir = 8},/turf/simulated/open,/area/maintenance/station/eng_lower) +"aYg" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/machinery/door/blast/regular{density = 0; dir = 4; icon_state = "pdoor0"; id = "englockdown"; name = "Engineering Lockdown"; opacity = 0},/turf/simulated/floor,/area/engineering/foyer) +"aYt" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/firealarm{dir = 2; layer = 3.3; pixel_x = 0; pixel_y = 26},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aYF" = (/obj/structure/table/reinforced,/obj/machinery/computer/skills,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aYH" = (/obj/structure/table/reinforced,/obj/item/weapon/rcd,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/obj/item/weapon/rcd_ammo,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aYJ" = (/obj/structure/table/reinforced,/obj/item/weapon/book/manual/supermatter_engine,/obj/item/device/radio{pixel_x = -4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aYW" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/holodeck_control) +"aZg" = (/obj/structure/table/reinforced,/obj/item/device/megaphone,/obj/machinery/keycard_auth{pixel_w = 28},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"aZq" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aZr" = (/obj/machinery/computer/atmos_alert,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aZP" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"aZU" = (/obj/effect/floor_decal/borderfloor{dir = 9},/obj/effect/floor_decal/corner/yellow/border{dir = 9},/obj/effect/floor_decal/borderfloor/corner2{dir = 1},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 1},/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/turf/simulated/floor/tiled,/area/engineering/foyer) +"aZW" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bay" = (/obj/structure/disposalpipe/segment{dir = 8; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"baA" = (/obj/machinery/atmospherics/unary/vent_scrubber/on,/obj/structure/table/reinforced,/obj/item/clothing/glasses/meson{pixel_y = 4},/obj/item/clothing/glasses/welding/superior,/obj/item/device/flashlight/lamp,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"baI" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 5},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"baQ" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/effect/floor_decal/techfloor{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"baT" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bbs" = (/obj/structure/bed/chair/office/dark{dir = 4},/obj/effect/landmark/start{name = "Station Engineer"},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bbx" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bbE" = (/obj/structure/disposalpipe/segment{dir = 4},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bbT" = (/obj/structure/disposalpipe/segment{dir = 4; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bch" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bck" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/newscaster{pixel_y = 32},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"bcl" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/firedoor/glass,/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"bcn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/table/reinforced,/obj/item/weapon/stamp/ce,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bcp" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bcr" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/bed/chair{dir = 8},/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bcw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bcx" = (/obj/structure/cable/green{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"bcK" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/junk,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bcO" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bdi" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 1},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdq" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bds" = (/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/yellow/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/engineering/hallway) +"bdu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdx" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdH" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdK" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/light,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdL" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 1},/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner{dir = 8},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdT" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdW" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor/corner,/obj/effect/floor_decal/corner/lightgrey/bordercorner,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bdZ" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bee" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"beJ" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/engineering/foyer) +"beL" = (/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) +"beM" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) +"beN" = (/obj/structure/disposalpipe/segment,/obj/machinery/hologram/holopad,/turf/simulated/floor/tiled,/area/engineering/foyer) +"beS" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold4w/hidden/supply,/obj/machinery/atmospherics/pipe/manifold4w/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"beY" = (/obj/machinery/door/airlock/multi_tile/metal{dir = 2; icon_state = "door_closed"; name = "Cryogenic Storage"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/techfloor,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/sleep/cryo) +"bfk" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bfo" = (/obj/structure/window/reinforced,/obj/structure/table/woodentable,/turf/simulated/floor/carpet,/area/engineering/foyer) +"bft" = (/obj/item/modular_computer/console/preset/command{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bfv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bfF" = (/obj/machinery/light_switch{dir = 8; pixel_x = 24},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bfG" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals_central1{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"bfJ" = (/obj/structure/sign/directions/command{dir = 4},/obj/structure/sign/directions/elevator{dir = 4; pixel_y = 8},/turf/simulated/wall,/area/tether/station/stairs_one) +"bfQ" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bfT" = (/obj/structure/disposalpipe/segment,/turf/simulated/floor/carpet/oracarpet,/area/crew_quarters/heads/chief) +"bgf" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/borderfloor/corner2{dir = 6},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bgr" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/medical,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bgC" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/yellow/border{dir = 8},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bgD" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/yellow/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bgE" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bgF" = (/obj/structure/stairs/east,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bgG" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/effect/floor_decal/steeldecal/steel_decals6{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"bgH" = (/obj/structure/cable{d2 = 8; icon_state = "0-8"},/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"bgJ" = (/obj/structure/cable{icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/sign/directions/engineering{dir = 1; pixel_y = 32; pixel_z = -8},/obj/effect/floor_decal/borderfloor{dir = 1; icon_state = "borderfloor"; pixel_y = 0},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/borderfloor/corner2{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"bgO" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 28},/obj/structure/cable{d2 = 2; icon_state = "0-2"; pixel_y = 0},/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) +"bha" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bhc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bhg" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/hallway/station/docks) +"bhj" = (/obj/machinery/disposal,/obj/structure/disposalpipe/trunk{dir = 4},/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bhH" = (/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 9},/obj/structure/cable/green{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/effect/floor_decal/borderfloor{dir = 4},/obj/effect/floor_decal/corner/lightgrey/border{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bhJ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bhK" = (/obj/machinery/door/airlock/maintenance/common,/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/door/firedoor/glass,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bhL" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bid" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/alarm{pixel_y = 22},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/random/junk,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"bir" = (/obj/structure/cable/green{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/crew_quarters/sleep/cryo) +"biC" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"biK" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/random/tech_supply,/obj/random/tech_supply,/turf/simulated/floor/tiled,/area/storage/tools) +"bkm" = (/obj/machinery/door/firedoor/glass,/obj/machinery/door/airlock{name = "Secondary Janitorial Closet"; req_access = list(26)},/turf/simulated/floor/tiled/steel_grid,/area/tether/station/stairs_one) +"bkp" = (/obj/machinery/vending/assist,/obj/machinery/light/small{dir = 8; pixel_y = 0},/turf/simulated/floor/tiled,/area/storage/tools) +"bkq" = (/obj/machinery/door/firedoor/glass,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/door/airlock/glass{name = "Auxiliary Tool Storage"},/turf/simulated/floor/tiled/steel_grid,/area/hallway/station/docks) +"bks" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals4,/turf/simulated/floor/tiled,/area/storage/tools) +"bkx" = (/obj/structure/table/reinforced,/obj/item/stack/material/plasteel{amount = 30},/obj/fiftyspawner/plastic,/obj/fiftyspawner/plastic,/turf/simulated/floor/tiled,/area/engineering/workshop) +"bky" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bmv" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/borderfloor/corner{dir = 4},/obj/effect/floor_decal/corner/lightgrey/bordercorner{dir = 4},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/structure/disposalpipe/segment{dir = 1; icon_state = "pipe-c"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bmA" = (/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/obj/machinery/computer/guestpass{pixel_y = 32},/obj/effect/floor_decal/borderfloor{dir = 1},/obj/effect/floor_decal/corner/lightgrey/border{dir = 1},/obj/effect/floor_decal/steeldecal/steel_decals7,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bnl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 9; icon_state = "intact"},/obj/machinery/light/small{dir = 4; pixel_y = 0},/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/hallway/station/docks) +"bno" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 1; icon_state = "map"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9},/turf/simulated/floor,/area/hallway/station/docks) +"bnw" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"bnI" = (/obj/effect/floor_decal/industrial/warning,/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/crew_quarters/heads/chief) +"boc" = (/obj/structure/extinguisher_cabinet{dir = 4; icon_state = "extinguisher_closed"; pixel_x = -30},/obj/effect/floor_decal/borderfloor{dir = 8},/obj/effect/floor_decal/corner/lightgrey/border{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 6},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 5},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bou" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/stairs_one) +"bpd" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/lightgrey/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bpf" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/steeldecal/steel_decals6,/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bpi" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bpm" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/effect/floor_decal/borderfloor,/obj/effect/floor_decal/corner/lightgrey/border,/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/lightgrey/bordercorner2{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 1},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bpv" = (/obj/structure/table/standard,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/random/tech_supply,/obj/random/tech_supply,/obj/machinery/atmospherics/unary/vent_pump/on{dir = 1},/turf/simulated/floor/tiled,/area/storage/tools) +"bpz" = (/obj/effect/decal/cleanable/dirt,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor,/area/hallway/station/docks) +"bqb" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/door/firedoor/glass,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/door/airlock{name = "Unisex Restrooms"},/turf/simulated/floor/tiled/steel_grid,/area/crew_quarters/toilet) +"bqf" = (/obj/machinery/door/firedoor/glass/hidden/steel{dir = 1},/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bqj" = (/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/clean,/obj/random/maintenance/medical,/obj/random/tool,/turf/simulated/floor,/area/hallway/station/docks) +"brV" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 9},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 4},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"brX" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/machinery/light{dir = 1},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"bsv" = (/obj/structure/bed/chair,/obj/machinery/power/apc{dir = 1; name = "north bump"; pixel_x = 0; pixel_y = 24},/obj/structure/cable{icon_state = "0-2"; d2 = 2},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bto" = (/obj/structure/cable/green,/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"btr" = (/obj/machinery/alarm{dir = 8; pixel_x = 25; pixel_y = 0},/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"bts" = (/obj/structure/cable{d1 = 2; d2 = 4; icon_state = "2-4"},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/effect/floor_decal/sign/dock/one,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btt" = (/obj/machinery/computer/guestpass{dir = 4; pixel_x = -28; pixel_y = 0},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btu" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bty" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btC" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btF" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btM" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btO" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable{icon_state = "1-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/effect/floor_decal/sign/dock/two,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"btS" = (/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bvs" = (/obj/structure/sink{dir = 4; icon_state = "sink"; pixel_x = 11; pixel_y = 0},/obj/structure/mirror{dir = 4; pixel_x = 28; pixel_y = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"bvt" = (/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bvu" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/item/device/radio/intercom{dir = 2; pixel_y = -24},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bvE" = (/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bwb" = (/turf/space,/area/shuttle/tether/station) +"bwV" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_one) +"bxe" = (/obj/machinery/door/airlock/glass,/obj/structure/cable{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/door/firedoor/glass,/turf/simulated/floor/tiled/steel_grid,/area/tether/station/dock_two) +"byy" = (/obj/machinery/recharge_station,/obj/machinery/light/small{dir = 8; pixel_x = 0},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"byA" = (/obj/machinery/firealarm{dir = 1; pixel_x = 0; pixel_y = -24},/turf/simulated/floor/tiled/white,/area/crew_quarters/toilet) +"byD" = (/obj/structure/cable{d1 = 1; d2 = 4; icon_state = "1-4"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"byE" = (/obj/machinery/light{dir = 8; icon_state = "tube1"; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"byG" = (/obj/machinery/power/apc{dir = 4; name = "east bump"; pixel_x = 28},/obj/structure/cable{d2 = 8; icon_state = "0-8"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"byN" = (/obj/machinery/power/apc{cell_type = /obj/item/weapon/cell/super; dir = 8; name = "west bump"; pixel_x = -28},/obj/structure/cable{icon_state = "0-4"; d2 = 4},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"byP" = (/obj/machinery/light{dir = 4; icon_state = "tube1"; pixel_x = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bzn" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"bzq" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bzR" = (/obj/structure/flora/pottedplant,/obj/machinery/status_display{pixel_y = 30},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bBo" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bCg" = (/obj/machinery/alarm{pixel_y = 22},/obj/structure/flora/pottedplant,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bDr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/structure/extinguisher_cabinet{dir = 8; icon_state = "extinguisher_closed"; pixel_x = 30},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bEW" = (/obj/structure/flora/pottedplant,/obj/machinery/newscaster{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bFf" = (/obj/structure/flora/pottedplant,/obj/machinery/computer/guestpass{pixel_y = 32},/turf/simulated/floor/tiled,/area/hallway/station/docks) +"bFE" = (/obj/machinery/alarm{dir = 4; pixel_x = -23; pixel_y = 0},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"bFH" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bGo" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"bGy" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bHt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a2_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bHu" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a2_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bHw" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a2_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a2_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a2_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a2_dock_pump"; tag_chamber_sensor = "d1a2_dock_sensor"; tag_exterior_door = "d1a2_dock_outer"; tag_interior_door = "d1a2_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bHy" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a2_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"bHz" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"bHG" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "specops_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bHN" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "specops_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bHO" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "specops_dock_pump"},/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "specops_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "specops_dock_sensor"; pixel_x = 0; pixel_y = -25},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bHV" = (/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 4; icon_state = "map"},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "specops_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bJl" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_one) +"bJm" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bKo" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/obj/machinery/door/firedoor/glass/hidden/steel{dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"bNZ" = (/obj/machinery/atmospherics/unary/vent_scrubber/on{dir = 4},/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"bPc" = (/obj/machinery/firealarm{dir = 4; layer = 3.3; pixel_x = 26},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 9; pixel_y = 0},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bPj" = (/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bPl" = (/obj/machinery/alarm{dir = 8; icon_state = "alarm0"; pixel_x = 24},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bPp" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d1a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bPq" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d1a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bPr" = (/obj/machinery/light/small,/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d1a1_dock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d1a1_dock_pump"; tag_chamber_sensor = "d1a1_dock_sensor"; tag_exterior_door = "d1a1_dock_outer"; tag_interior_door = "d1a1_dock_inner"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d1a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d1a1_dock_pump"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bPs" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "d1a1_dock"; name = "interior access button"; pixel_x = -28; pixel_y = 26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning{dir = 8},/obj/machinery/atmospherics/pipe/manifold4w/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"bPt" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "d2a1_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two) +"bPx" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "d2a1_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two) +"bPz" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 4; frequency = 1380; id_tag = "d2a1_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "d2a1_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "d2a1_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "d2a1_dock_pump"; tag_chamber_sensor = "d2a1_dock_sensor"; tag_exterior_door = "d2a1_dock_outer"; tag_interior_door = "d2a1_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_two) +"bPD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"bPE" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bPF" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bPN" = (/obj/effect/floor_decal/industrial/warning/corner{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 5; icon_state = "intact"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bPO" = (/obj/machinery/light{icon_state = "tube1"; dir = 4},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bPS" = (/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "interior access button"; pixel_x = 26; pixel_y = -26; req_one_access = list(13)},/obj/effect/floor_decal/industrial/warning,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bPX" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bPY" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_inner"; locked = 1; name = "Dock One Internal Access"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bQa" = (/turf/simulated/floor,/area/tether/station/stairs_one) +"bQc" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQd" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_inner"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQe" = (/obj/effect/floor_decal/industrial/warning{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "trade_shuttle_dock_airlock"; pixel_x = 28; pixel_y = 0; req_one_access = list(13); tag_airpump = "trade_shuttle_dock_pump"; tag_chamber_sensor = "trade_shuttle_dock_sensor"; tag_exterior_door = "trade_shuttle_dock_outer"; tag_interior_door = "trade_shuttle_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bQj" = (/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/light/small{dir = 8},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bQk" = (/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "nuke_shuttle_dock"; pixel_x = -28; pixel_y = 0; req_one_access = list(13); tag_airpump = null; tag_chamber_sensor = null; tag_exterior_door = null; tag_interior_door = null},/obj/effect/floor_decal/industrial/warning{dir = 9},/obj/machinery/atmospherics/pipe/manifold/hidden{dir = 8; icon_state = "map"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQl" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 10; icon_state = "intact"},/obj/machinery/light/small{dir = 4},/obj/effect/floor_decal/industrial/warning{dir = 5},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQm" = (/obj/effect/floor_decal/industrial/warning{dir = 6},/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "trade_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "trade_shuttle_dock_sensor"; pixel_x = 30; pixel_y = 8},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bQt" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "nuke_shuttle_dock_sensor"; pixel_x = -30; pixel_y = 8},/obj/effect/floor_decal/industrial/warning{dir = 10},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQu" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 1; frequency = 1380; id_tag = "nuke_shuttle_dock_pump"},/obj/effect/floor_decal/industrial/warning{dir = 6},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQv" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/firedoor/glass,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"bQx" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "trade_shuttle_dock_airlock"; name = "exterior access button"; pixel_x = 28; pixel_y = -6; req_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bQz" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "trade_shuttle_dock_outer"; locked = 1; name = "Dock One External Access"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"bQC" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "nuke_shuttle_dock"; name = "exterior access button"; pixel_x = -28; pixel_y = -6; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bQD" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/obj/structure/window/reinforced{dir = 4},/obj/machinery/door/firedoor/glass,/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bQF" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "nuke_shuttle_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bXl" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bXm" = (/obj/effect/floor_decal/industrial/warning,/obj/machinery/atmospherics/pipe/simple/hidden,/turf/simulated/floor/tiled,/area/tether/station/dock_two) +"bXn" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_two) +"bXs" = (/obj/structure/closet/crate,/obj/item/clothing/mask/gas,/obj/item/device/flashlight,/obj/item/device/flashlight,/obj/effect/decal/cleanable/dirt,/obj/random/maintenance/clean,/obj/random/maintenance/clean,/obj/random/maintenance/cargo,/obj/random/action_figure,/obj/item/clothing/mask/gas,/obj/machinery/atmospherics/binary/passive_gate/on,/turf/simulated/floor/plating,/area/hallway/station/docks) +"bXG" = (/obj/structure/table/reinforced,/obj/machinery/light,/obj/structure/window/reinforced{dir = 4},/obj/item/weapon/clipboard,/obj/item/weapon/tape_roll,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bXI" = (/obj/effect/floor_decal/borderfloor{dir = 10},/obj/effect/floor_decal/corner/yellow/border{dir = 10},/obj/effect/floor_decal/borderfloor/corner2{dir = 9},/obj/effect/floor_decal/corner/yellow/bordercorner2{dir = 9},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bXJ" = (/obj/effect/floor_decal/borderfloor{dir = 6},/obj/effect/floor_decal/corner/yellow/border{dir = 6},/obj/effect/floor_decal/borderfloor/corner2,/obj/effect/floor_decal/corner/yellow/bordercorner2,/obj/effect/floor_decal/steeldecal/steel_decals7{dir = 10},/turf/simulated/floor/tiled,/area/engineering/foyer) +"bXK" = (/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 8},/obj/effect/floor_decal/steeldecal/steel_decals4{dir = 5},/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/engineering/foyer) +"bYg" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 8},/obj/effect/floor_decal/techfloor{dir = 5},/obj/machinery/light/small{dir = 4},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"bYh" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 5},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 9},/obj/effect/floor_decal/techfloor{dir = 1},/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"bYi" = (/obj/structure/closet/crate,/obj/random/junk,/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bYj" = (/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bYk" = (/obj/structure/reagent_dispensers/fueltank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bYl" = (/obj/effect/decal/cleanable/dirt,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bYm" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bYr" = (/turf/space,/area/syndicate_station/arrivals_dock) +"bYt" = (/obj/structure/window/reinforced,/obj/structure/bed/chair{dir = 1},/turf/simulated/floor/carpet,/area/engineering/foyer) +"bYJ" = (/obj/effect/floor_decal/techfloor{dir = 10},/obj/machinery/telecomms/relay/preset/tether/station_high,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"bYK" = (/obj/effect/floor_decal/techfloor{dir = 6},/obj/machinery/telecomms/relay/preset/tether/station_low,/turf/simulated/floor/tiled/techfloor,/area/crew_quarters/heads/chief) +"bYN" = (/obj/item/device/instrument/violin,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bYP" = (/turf/simulated/wall,/area/vacant/vacant_restaurant_lower) +"bZd" = (/obj/structure/window/reinforced,/turf/simulated/floor/tiled,/area/engineering/workshop) +"bZi" = (/obj/structure/window/reinforced{dir = 1},/obj/structure/closet/secure_closet/engineering_electrical,/obj/item/clothing/gloves/yellow,/turf/simulated/floor/tiled,/area/engineering/workshop) +"bZk" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/caution/cone,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZm" = (/obj/effect/decal/cleanable/dirt,/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZt" = (/obj/structure/dispenser{phorontanks = 0},/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"bZv" = (/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower) +"bZz" = (/obj/effect/decal/cleanable/dirt,/obj/random/tool,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZD" = (/obj/effect/floor_decal/rust,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZF" = (/obj/structure/closet/crate,/obj/random/tool,/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZH" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower) +"bZJ" = (/obj/random/drinkbottle,/obj/effect/floor_decal/rust,/turf/simulated/floor/plating,/area/vacant/vacant_restaurant_lower) +"bZK" = (/obj/item/weapon/bananapeel,/obj/item/trash/unajerky,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZO" = (/obj/random/junk,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZP" = (/obj/effect/decal/cleanable/dirt,/obj/item/weapon/cell/potato,/obj/item/frame/apc,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZQ" = (/obj/random/trash,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZR" = (/obj/random/junk,/obj/structure/closet,/obj/random/maintenance/clean,/obj/item/taperoll/engineering,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZS" = (/obj/effect/landmark{name = "blobstart"},/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZT" = (/obj/structure/stairs/west,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"bZZ" = (/obj/structure/bed/chair,/obj/machinery/atmospherics/unary/vent_scrubber/on,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"cah" = (/obj/structure/girder,/turf/simulated/floor,/area/vacant/vacant_restaurant_lower) +"cak" = (/obj/machinery/suit_cycler/engineering,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"cal" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor/tiled,/area/engineering/engine_eva) +"cbY" = (/obj/machinery/atmospherics/unary/vent_pump/on{dir = 4},/turf/simulated/floor/airless,/area/engineering/atmos/backup) +"cce" = (/obj/machinery/atmospherics/pipe/manifold/visible/red,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"ccg" = (/obj/machinery/atmospherics/pipe/manifold4w/visible/cyan,/obj/machinery/meter,/turf/simulated/floor/tiled,/area/engineering/atmos/backup) +"cch" = (/turf/space,/area/shuttle/cruiser/station) +"ccl" = (/obj/effect/floor_decal/industrial/outline/yellow,/obj/machinery/power/thermoregulator,/turf/simulated/floor,/area/engineering/storage) +"col" = (/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/machinery/door/firedoor/glass,/obj/structure/window/reinforced{dir = 8},/turf/simulated/floor/plating,/area/tether/station/dock_two) +"dlV" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced{dir = 1},/obj/structure/sign/securearea{desc = "A warning sign which reads 'EXTERNAL AIRLOCK'"; icon_state = "space"; layer = 4; name = "EXTERNAL AIRLOCK"; pixel_x = 0},/turf/simulated/floor/plating,/area/tether/station/dock_one) +"ezX" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/turf/simulated/floor/plating,/area/tether/station/dock_two) +"eIG" = (/turf/space,/area/ninja_dojo/orbit) +"hPi" = (/obj/machinery/light/small,/turf/simulated/floor,/area/engineering/shaft) +"jys" = (/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_inner"; locked = 1; name = "Docking Port Airlock"},/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"jRS" = (/obj/random/junk,/turf/simulated/floor,/area/maintenance/station/eng_lower) +"klO" = (/obj/structure/window/reinforced{dir = 8},/obj/machinery/door/window/northleft,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) +"kCH" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"kLN" = (/obj/machinery/atmospherics/unary/vent_pump/high_volume{dir = 8; frequency = 1380; id_tag = "tether_dock_pump"},/obj/machinery/light/small,/obj/machinery/airlock_sensor{frequency = 1380; id_tag = "tether_dock_sensor"; pixel_x = 0; pixel_y = -25},/obj/machinery/embedded_controller/radio/airlock/docking_port{frequency = 1380; id_tag = "tether_dock_airlock"; pixel_x = 0; pixel_y = 30; req_one_access = list(13); tag_airpump = "tether_dock_pump"; tag_chamber_sensor = "tether_dock_sensor"; tag_exterior_door = "tether_dock_outer"; tag_interior_door = "tether_dock_inner"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"lGA" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 1},/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one) +"mNU" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/turf/simulated/floor/plating,/area/tether/station/dock_one) +"nov" = (/obj/structure/railing,/obj/structure/table/rack{dir = 8; layer = 2.9},/obj/random/maintenance/engineering,/obj/random/maintenance/engineering,/obj/random/tech_supply,/turf/simulated/floor,/area/engineering/shaft) +"oEH" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/station/docks) +"qBc" = (/obj/structure/disposalpipe/junction{dir = 1; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"scB" = (/obj/machinery/computer/shuttle_control/tether_backup{icon_state = "computer"; dir = 8},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"ssv" = (/turf/space,/area/skipjack_station/orbit) +"tKI" = (/obj/machinery/access_button{command = "cycle_exterior"; frequency = 1380; master_tag = "tether_dock"; name = "exterior access button"; pixel_x = -5; pixel_y = -26; req_one_access = list(13)},/obj/machinery/door/airlock/glass_external{frequency = 1380; icon_state = "door_locked"; id_tag = "tether_dock_outer"; locked = 1; name = "Docking Port Airlock"},/turf/simulated/floor/tiled/dark,/area/tether/station/dock_one) +"uiN" = (/obj/structure/table/woodentable,/obj/item/weapon/reagent_containers/food/snacks/donut/chaos,/turf/simulated/floor/grass,/area/hallway/station/atrium) +"uWS" = (/obj/machinery/atmospherics/pipe/simple/hidden{dir = 4},/obj/machinery/access_button{command = "cycle_interior"; frequency = 1380; master_tag = "tether_dock"; name = "interior access button"; pixel_x = 28; pixel_y = 26; req_one_access = list(13)},/turf/simulated/floor/tiled,/area/tether/station/dock_one) +"vbm" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/obj/structure/window/reinforced{dir = 4},/obj/structure/window/reinforced,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"vyI" = (/mob/living/simple_mob/animal/passive/bird/parrot/poly,/turf/simulated/floor/outdoors/grass/forest,/area/crew_quarters/heads/chief) +"wlD" = (/obj/machinery/door/firedoor/glass,/obj/structure/grille,/obj/structure/window/reinforced/full,/turf/simulated/floor/plating,/area/tether/station/dock_one) +"xfY" = (/obj/structure/disposalpipe/junction{dir = 8; icon_state = "pipe-j2"},/turf/simulated/floor/tiled,/area/hallway/station/atrium) +"xMk" = (/obj/structure/cable/green{icon_state = "16-0"},/obj/structure/cable/green{d2 = 4; icon_state = "0-4"},/obj/structure/railing{dir = 4},/obj/structure/railing,/turf/simulated/floor,/area/engineering/shaft) + +(1,1,1) = {" +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafaafaafaafaafaafaafaafaafaafaafaafaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahWahVahVahVahVahVaaaaaaaaaahVahVahVahVahVahVahWahVahVahVahVahVahVahVahWahWaagaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaafaafaafaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvaaaaaaaaassvaaaaaaaaaaaaaaassvaaaaaaaaassvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvaaaaaaaaassvssvssvssvssvssvssvaaaaaaaaassvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabnabnabnaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvaaaaaassvssvssvssvssvssvssvssvssvaaaaaassvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaiabQabSabRabTabQaboaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvaaaaaassvssvssvssvssvssvssvssvssvaaaaaassvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaacaacaacaaaaaaaajackabSacaabTackacbaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaacaacaacaacaacaacaacabCabCaamackackackaceabCabCaaaaaaaaaaataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJagJagJagJagJaanagJagJagJagJacLacLacLacLacLacLacLacLaczaczaczaacaacabCacAacjackackacjackacBabCaacaacaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacLaasaaAaazaaGaaCaaLacLaaNacRaczaacaacabCadgacjackadhacjacjadiabCaacaacaacaacaataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaaanagJaaQagJagJacJacJacJacJacJacJacJacJacJacLaaRaaXaaXabeabbabgabfadvaduaczaacaacabCabiackackacjacjackadwabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaarabrabuabtaebaeaabwaaBabyabxaczaacaacabCaegaefackacjacjachabAabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjanHabjacJacJacJacJacJacJacJacJacJacJaaEabDabGabFabIabHabMaaFabOablarMarMarMarMarMabPackackackaeLabCabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaagJabjabjabjacJacJacJacJacJacJacJacJacJacJabWalFalFaaUalFalFalFacdacuacqarMacxacOatbarMabCabCaaYabCabCabCaacaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJagJacJabkacJagJacJacJacJacJacJacJacJacJacJadfacXadoafMafQaaOagPafPadsadqadCadtadFadDadIadGadKadGadGadLabCaacaacaacaacaacaacaataataataataataataataataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfadQagNafLagOafLahZafPadVadUarMadWabNahoarMahqackackackaehaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaikaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJaewaetaaSaibaezaidaeCaeAaeEaeDaJsaJsaJsaJsaJsaJsaJsaJsackaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaeQagNafLaiQaiPaeSafPacuaeVaJsaiTaiTaeWaeXaiVcclaJsachaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaagJacJacJacJacJacJacJacJacJacJacJacJacJacJacJadfaffalrafiafjajyafkafPacuafmaJsafpajDaeWaeWaJVafsaJsackaeGaikackackackackackackackackackackackackackackackackackackackaikaataataataataataataataataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaanacJacJacJacJacJacJacJacJacJacJacJacJacJacJalFalFalFalFalFafSalFacdafZaCjaJsakmakmaeWaeWaknakoaJsakqagfaikackackackackackackackackackackackackackackackackackackackaikaataataataacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksaksacJacJacJacJacJacJacJacJaiMagFagIajtagLakOahdaiMacuaeVaJsakSakSaeWaeWakTaooaJsapiahfaikackackackackackackackackackackackackackackackackackackackaikaataacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaassvssvssvssvssvssvssvaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgaksaksacgacgacJacJacJacJacJacJacJacJabqahsahyabsahBalbahKahDahOahMaJsalBalDahRahTalEalHaJsahYaeGaikackackackackackackackackackackackackackackackackackackackaikaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgacJacJacJacJacJacJacJacJaiMaiyaiCajtaiDamlaiFaiMadVaiGaJsaLhaLiaeWaiNamqamqaJsaiRaiOaikackackackackackackackackackackackackackackackackackackackaikadOadOadOadOadOadOadOadOadOadOadOaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgagJagJagJajpagJagJagJagJaiMaiMaiMaiMaiMaiMaiMaiMajCajBaJsajGaLiaeWaiNamOajIaJsamRaiOaikackackackackackackackackackackackackackackackackackackackaikajvajwahvajzajAaiZajdajhajxajxadOaacaacadPadPadPadPadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacaacaacaacaacaacaacaacaacaacaacaacaacaczadsakeaJsakgakjaeWaklakkakpaJsangaiOaikaikackackackackackackackackackackackackackackackackackackaikajeajiajjajjajjajlajLajPajSajXadOaacaacadPaeBahxahzadPaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaacgaksaksaksaksaksacgaacaacaacarqarqarqarqarqaczaczaczaczaczaczaczanlakXakWaJsaJsaJsakZalcaJsaJsaJsaikaeGackaikackackackackackackackackackackackackackackackackackackaikafDajEaeyaeyaeyakKaeyaeyalJaCoadOaacaacadPahAahSahXadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaaaaaaaacgacgacgalxalwalzabZaacaacaacarqnovxMkalKalGaczanLadAaadaowalRalWafOambalZamfamcamkamjamnanZadZampaczaeGackaikackackackackackackackackackackackackackackackackackackaikajmajnajqajqajqajHaeyaeyalialCadOaacaacadPaiiaiJaiKadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWabZabvabBabEabZabZabZabZabZalGhPianeancaczaopaoraoqaoqaoqaoqanoanranqanuantantantanzanyanCanBanFanDackaikackackackackackackackackackackackackackackackackackackaikajMakMajQajQajRajJaeyaeyaljaeyadPadPadPadPaiLaiLaiLadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaanPahVaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaohaoXaojaolaokaonaaeapwabZaczaczaotaczaoyaoZapcapbapbapbapbapbapeaoBaoFapgapgapgaijapgapgapgaijaoHjRSaikackackackackackackackackackackackackackackackackackackaikadOadOadOadOadOajNaeyaeyaljalladbakfaiSaiUaiSaiSakhadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahVahVahVahVahVahVahVaaaaaaahWaohaqKaqIappapoaprapqapuapsarOapvapyapxapDapBapIapGapKapJapJapJapMapLapgapNapPapOapTapQapQapXaijapUachaikackackackackackackackackackackackackackackackackackackaikajTajUajTajUajTakiakrakraktakuakcakwakxakyakzaiYajaadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaacbYaqeaqfadSaqaaqJaqhadYaqjaqiaqlaeraqoaqmaquaqqaqDaqBaqFaqEaqQaqOaqSaqRapgaqvajFaqGaqGajFapQaqHaijapUachaikackackackackackackackackackackackackackackackackackackaikakAajVajVajVajWakBajOajOakCakDasTajbakEakFakGaiSakHadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahWahWahWahWabZarzaryaRdccearBadeaqMaqMaqMaqMacSaqNaqNarEarKaqNaqNacSarVarTaqTarXasgasbasnaskasraspasxassaijapUacjaikackackackackackackackackackackackackackackackackackackaikajYajZakaakbakIakUakdalkafbalqadPajcadPakLakJalealeadPaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlarQarnatgaqLatfaqMathatjarraruartarxatkatBatAarFaqNarVarTarHatFapgarIatIatGarNatJapQaChaijatTaiRaikackackackackackackackackackackackackackackackackackackaikadOadOadOadOakNakPadOadOadOadOadPaizadPadPadPajfajfadPaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaagaaaaaaaaaaaaaaaaaaahVaaaaaaahWaoharlccgauWarRauYafTaqMavdavhavgavhavhavoavmaslavqasmaqNarVavwavzavxavDavBajFavFavIajFapQavLaijavPapiaikackackackackackackackackackackackackackackackackackackaikajoacmahwajgakValUakYafCaacaacadPadPadPaacadPadPadPadPaacaacaacaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWaohaCiarnawkaswaszasyaqMasAaenaenaenaenaenasUasUatAawBacSawMawDarHawOapgatdapQawRapQapQapQawTaijavPaiXaikackackackackackackackackackackackackackackackackackackaikajoacmafXalaajkakQalfafCaacaacaacaacaacaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaahWabZabZarkaxBaxAaxHaxGaqMbkxaxPaxOagdatQbZdatNatSaxUaxYaxWatXatWarHaybapgatYatZawRayiagHalsaucaijaysabCaikaikaikaikaikaikafCafCafCafCaaTaaTaaTaaTaaTaaTaaTaaTaaTafCafCafCafCalgafCafCafCafCaacaacaacaacaacaacaacaacaacaacaacaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVahWahWahWahWabZaueaueaueaueaueaqMaqMaqMaqMacSaukaenaulazeaenaBqaqNauwauvauyahcauzauzauzazkauzauzauzauzaijavPanEachazDazBazBazJazJazIazXafYacfaihagqaALaahaahaahaakafgaiWajrajsafeagvaldajuaCtaAHashashashashashashashashashashashashaacaacaataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaAQavfavfatOaARaATaASaBlamdaBpakRavsaCfaqNbZiafUasUasUaenawlaByatXawnaBBaBAaAWaBCaBXaBDaBEaAWaciaDDaaVavPalQaBHaBRalQalTalTalTalTagwabXacnacmaCeacpacpacpacpacpxfYacpacpacpacpacpacractaCxaCwaCyamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaCBaCBatOaCgauAauAauBaJlaCEauAauAaJwaCMaJxaenasUasUaCPaCQacSaCTaCRaKtaCVaAWaAWaAWaKNaLjaKUaLlaDjaaVapUalQaDsaDMalQasuaDPamEalTalhacwadzacyacyacyacFamJacmacmadHacmamJacFacyacyacyadabNZaDZamMamgamgamgamgamgamgamgamgamgamgaloalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGaaaaaaaaaeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaEaaLIatOaEbauAauAavjaLXaEfauAauAaJwaCMaJxaMZaMBaNbaNaaenaqNaEzaExaKtaEAaAWaEEaBXaOLaEMaAWaETaERaaVapUaBHaEWaEXalQaFcaEZaFfaFeaFhacmacyacyacyacGacIamCamoadxadyamtamDacKacGacyacyacyadHaCwamMamgamgamgamgamgamgamgamgamgamgaFIalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGaaaaaaaaaeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBalpaFJatOaFLaFOaFLaFOaQvaFXbZtcalcakaqNaQZaQZaRwaRAaRyaRyaqNaEzaCRaKtaGsaAWaAWaAWaRZaGxaaVaaVaaVaaVaGyaGPaGIaofalQaogavSaoialTaHbacmacYacDadcacFacIacEacHadnagaacHamiacKacFacYuiNadcadHaHzamMamgamgamgamgamgamgamgamgamgamgalAalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaHTaHQatOatOaSCaSCaSCaSCaHYaSCaSCaSCacSaqNaqNaByaIfaqNaqNacSaEzaIiaKtaIlaAWaBCaBXaTiaInaaVatpaIoamzaIpalQalQalQalQaoOaoOalTalTaIsacmacYadladcacGacIacEacHamaamyacHamiacKacGacYadladcadHaITaoVamgamgamgamgamgamgamgamgamgamgalAaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaJjaJnaJmbdsaoqaTKaTJaJyaTLaoqaoqaalaoqaUlaTQaUoaUnaTKaluaUlatWaKtaKbaAWaAWaAWaUUaKlaaVapiaKraUXaKzaeOaeOaeOaeOaeOaeOaesasYaeMacmacyacyacyacFacIacEacHamGadMacHamiacKacFacyacyacyadHaKQaLcamgamgamgamgamgamgamgamgamgamgalAaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaJhaJkaLpaLtalLaLAaLyaLGaLCaLKaLHaLOaLLaLUaLPaMaaLYaMdaMcaMgaLUaLPaMhaMkaMjaAWaMlaBXaUUaMpaaVaMtaMraMxasvaeOafyafyafyafyaeOaePacmadHacmacTacyacyamJacIacEacHacHacHacHamiacKamJacyacyacTadHaMLamMamgamgamgamgamgamgamgamgamgamgalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaNeaNdaRbaRbagcagcagcagcaNoagcaRbaRbaltaltaNraltaltalvaXZaXZaXZaNFaNHaXZaoJaoJaoJaaVaaVaaVaqsaqtaOjaYfaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacIammammamFamFammammacKacmacmacmacmadHaCwamMamgamgamgamgamgamgamgamgamgamgaOOalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWaGBaGBaGBaRbaCcaYHaYFaYJaBgaOSaRVaZgaRbaOYaOWaPaalyalIaltaoGaZraZUaPjaZWaBwaPqamsaCaaoJaacaikamAamBarbakvaeOafyafyafyafyafyaeUacmadHacmacmacmacmacmacHacUacUacUacUacUacUacHacmacmacmacmadHaCuamMamgamgamgamgamgamgamgamgamgamgamNalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWagiaQaaRVaRXbaAaTmaQkaQhaQlaRbaQsaQnaQwalXamYaltbbsaQDbbxaQJaQWaQQaQXaQXaRcaoJaacaikardarAaRrarCaeOafyafyafyafyaguafzacmadHacmacTacyacyacFacHacHacHacHacHacHacHacHacFacyacyacTadHaCwamMamgamgamgamgamgamgamgamgamgamgalAalAaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagiaSabcpaSebcnbcrbcwaRVaSuaRbandamZasSanQawmaSzbeJaSDbeLaSFbeNbeMbfobYtaSLaoJaacaikarZasaaSOascaeOaeOaeOaeOaeOaeOafAacmadHacmacyaddaddaddacGacFamIacmacmamIacFacGaddaddaddacyadHaTAashashashashashashashashasiamMasialAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaagibftbfvaRXaTRaRXbfTklOaTWaRbaTXaIOaIOaSBaXXaltaoIaUkbgCaUmbgEbgDaoIbgFaoJaeiaacaikaUEasDaUIaUFafCafCafCafCafCafCanfacmadHacmacyadladladlacyacyacyacmacmacyacyacyadladladlacyadHaCwasIasJasKasLaSoawaasOasIasPasQaVxalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaeIGeIGeIGeIGeIGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahVaaaaaaaaaaRbbhjbnwaVzanRbnIaVHaVGvyIaRbaVNaVKaVWaVPaCbaltaTEbXGbXIaWdbXKbXJaoIbgFaoJaacaacaikaqsatoaWjatqafCafEafJafFafNafCaWnacmadHacmacyacCadEamuamradladcacmacmacYuiNadkadEamuacZacyadHaWJasIasJasKatxatyasNasOasIaXwaXlaqkalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaahWahWahWahWaRbaRbaXCaRbaRbaXRaRbaRbaRbaRbalvalvalvalvalvalvaoJatHaYaaXYaYcaYbaYgaYgaoJafCafCagbafCafCacoafCafCafnageageaggaYtaghacmadHacmacyadmamvamvamwadladcacmacmacYadlamxamvamvamHacyadHaCwasIasJasKatxatyasNasOasIaYWalAalAalAaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbaCdbYhbYgaRbaRbaRbbYibYjbYjbYlbYkbYmbYlbYlacsagRagQagTaZqagVagUagWagWawPagXagYagZahbahaaZParhahGahFahHacpacrahIacpacpbayahJacyacyacyacyacyacyacTacmacmacTacyacyacyacyacyacyacWbaIasIasIasIauobaQasIasIasIbaTaurausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbbYJasobYKaRbbYNbYPbYjbYjbYjbYlacvamhacMadpadRadTadXadXaecaeeacpacpacpacpacpahHaimacpacpbbEacpaipaioaiqacpacpairacpacpacpaisahHaCxacmacmacmbbTaCXacpacpacpacpacpacpacpacpahHqBcbchbclbckbcxauZavaaeqavcasIbcObcKausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaRbaRbaRbaRbaRbbYPbYPbYjbYjbYjbYjbYjbYjbZkbZmacsajKbdibdqbdnbdubdubdFbdxbdKbdHbdSbdLbdWbdTbdZbdTbeeafWagoatMaCqaAwatMatMatMaAxaAyaAzaAAbdHaAFaABaCraccaADacNacNaACaAGaAIaAIazbagpbeSbeYavZavZaCUauaagzavcasIbaTbfkausaacaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYPbYjbYjbYjbYjbYjbZzbYlbfFawsawpbfGbfJawsawsawsawtawtawtawuarebfQarfaaTaaTaaTafIagjagkagkafIafIagkagkahiafIacQaglacQacQacVafcacVaiwacVahmahmahmahmahmacValMaePbgfasIasIasIasIasIasIasIasIbcObgrausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZvbZvbYjbYjbZFbZDbZmbYjbYjbYlbYjawsaCpbgGbgJbgHauPawsawUbgOaCSawubhcafoawZawubhgaxbafIahrahCahCahEahPahCahCahQafIahpahLaApaBGacVafHaAvasRacVadradJadBaedadNacVamLacmbhHbhKbhJbhJbhLbidbhLbhJbhJbiraxtausaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZHbZJbZvcahbYjbZDbZDbZmbYlbZKbYjbYjawsaxuaxvaxwaxxbiCawsaxzalObiKawuaxCafqafrawuaxDaxEafIahUaicaieaieaieaieaicaifafIaudahLailaixacVagmagnafdacVaeoaejaemaejahuacVamPaCeaCsausausausausausausausausausausausaaqaaqaaqaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbZvbZvbZvbZHbZHbYPbZObZPbYjbZzbYlbYjbZQbYjawsbkmawsaxQaxRaxRawsbkpalPbksbkqbkyaftafuawuaxZbXsafIaCkaigaivaiAasCaiAasEaifafIaufahLailaBxacVagmagnafdacVaepaeuaejaevaeHacVamLacmbmvbmAageatsasYatuattabVabYaclaauaavaawaayaaDaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacbYPbYPbYPbYPbYPbYPbYPbZRbYlbZSbYlbYlbYlbYjbYjawsaywayxawsayyayyawsauSalSayBayCayDafBafGaekbnobnlafIahUaigasZateaiAatiasEatlafIaugauiaujaupacVagmagnafdacVaeJaejaeKaejaeNacVbocamQamSatKacmacmacmacmacmacmaaoaapaaIaaJaaKaaMaaPaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacaacaacaacaacbYPbZTbYjbYjbYlbZDbZDbYjbYlbYjbYjawsaxRbouawsawsawsawsazhalSaziawuazjbhaawZawuaelazlafIahUaicatmatnatnatraicatvafIauqaBKaBLautacVagmagnagAacVaeTaeYaeZafaauXacVauhaumamTbpfbpdalYbpibpibpibpmaaxaexaauaaWaaZabaabcaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaacaacaacaacaacbYPbZTbYjbYjbYjbZmbYjbYlbZkbYjbYjawsazMazNawsbQabQaawsazOazObpvawuawbbhaazRawubpzazlafIatwatCatDatEatLatVauxauCafIauqadjadjainacVaBYameagBacVacVafhafvafxacValNaaTamVamWamXaaTaaTaaTaAkaAkaAkbqbaAkaAkaCnabhaauaauaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaacaacaacbYPawuawuawuaeFaeFaeFawuaeIaeRawuawsawsawsawsawsawsawsawtawtawtawuaAmbqfaAoawubqjaAqafIauOauUavnavtavuavyavAavCafIauqadjaitaiuacVagragnagCafKafRaflafwawgacVanaanbanpanhanianjankanmaAkaAOaAPbrVbrXaAkabdabmabpabzabJaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawuaCvbzRbZZaAVaAVbCgaBiaBiawHaAZaBaaBbbEWaCzaAVaBdaAVbsvaBfbFfaBhbhaaBiawuawuawuafIafIagkafIavEafIagkafIafIafIauqadjaunauKacVagsagEagDagEagEahhaomagtacVannanpansanvanwannanxanAaAkaAkaAkbtobtraAkabdabKaauaauaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawubttbtsbtybtubtubtubtubtubtubtCbtuaCYbtubtubtubtubtubtMbtFbtubtSbtOaBiavGavHavJavKavKavKavMavNavOavKavTavUaAnauuadjauLauNacVagxagyahgavQazcazdasMagGacVanmanGanIanJanKanpanMannaAkaAOaBUaBVbvsaAkabdabmabLabLaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacawuaxrbvtaBZbvuaBZaBZaBZaBZoEHaBZaBZaBZaBZaBZoEHaBZaBZaBZaBZbvubvEauTauJavXawcawdawfawqawiawjawoawqawiawrawEatUavkauQavpauRacVayqagKagMagSaheazgaxLahkacVanNanOanSanTanUanVannanWaAkaAkaAkaCCaCDaAkabdabUabLabLaaHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFaCGbwVaCIaCFawuaCJaCJaCJawuawuaCJaCJaCJawuawuaCJaCJaCJawuaCKaCLbxeaCNaCKawFaxaacPacPawvacPacPawwawGawwawwauEauDavbavbavbacVacVahlahmahmahmahnafVacVacVanXanmanYaoaaobanpanmaocaAkbyyaDhbyAbvsaAkaaqaaqaaqaaqaaqaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaacaacaCFbyEbyDbyGaCFaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaCKbyNaDnbyPaCKayaaycacPawIawJawKacPawLaxfaxgawwaveavRavVavWaBSaweavYavYavYaxKavYavYaqxawhaxsaodannaoeaosaobannaoeaouamUamUamUamUamUaAkaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKayaayoacPaxjaxnaxoacPaxpaxFaxMawwailaxsawAaxqaxyaBPaxyaAEaxyawCaCWaxyaAuasFaxsaovaoxaozanvaoeaoAaoCaoDamUaoEaoKaoLamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaaabznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEnbBoaCKayaaycacPaxNaxSaxTacPaxXaydayeawwaBLahjahjawNahjahjahNahNahNaxcahNahNahNahNalNaoMaoNaoeanvanwaoPanYaoQaoRaoSanYanYamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaENaDFaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaEObDraCKazAayuacPacPacPacPacPawwawwawwawwailahjaqgaxhayzauGahNahtahtaxiaiEaiaaiaaiIalNaoTaoUaoeaoWaoYapaapdapfaphapjapkaplamUaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFbFEaFqaFraCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaDJaFtbFHaCKayaaycayfaygayhayjayfaykaynayraytailahjaAsataauHauIahNayKawxaxJaxIaxIaxIaBTalNapmapnaptapzaobapAanpapmaoRapCanpapEamUaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypbGoaFTaFUaFVaFWaDFaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbGyaFYaFZaGaaGbaDKaCKayaayoayfayIayJaBkayfaBnaBoaBraytailahjayRaviauFavlahNawyawyaxVaiaaiaaiaatcalNapFapHanpapRapSapVapWapYapZaqbaqcamUamUaacaacaacaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbHtbHwbHubHyaGzbHzaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbHGbHObHNbHVaGFazfaCKayAayLayfaBsaBtaBuayfaBvaBIaBJaytailahjavraylauFawVahNaiaaiaaxVaiaaiaaiaatPasGaqdaqdaqnaqpaqraqdaqwaqdamUamUamUamUaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypbJlaGZaFUaHaaDFaDGaDHaaaamKamKamKamKamKamKamKamKamKamKamKamKbJmaHcaFZaHdaDKaDLaCKayMayOayfayfaBMayfayfaytaBNaytaBOailahjawWawXawYaxkahNaiBaiaayEawQauVatRasGasGaqyaqzaqAaqCaqPaqUaqVaqdaqdaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaaaCFazQaHtbKoaCFaaaamKamKamKamKamKamKamKamKamKamKamKaaaaaaaaaaCKaHvaHwaCAaCKayaayPayQaAcaySayTayUayVayWayXayYailahjaAtawWaxlaxlahNaiaaiaaxVaymaiaaiaasGaqWaqXaqAaqAaqYaqZaraarcargaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaypaypaypaypaypaypaypaypaypaypaypaypaaabznaDEaDFaDGaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabzqaDJaDKaDLaCKayZazmaznazoazpazpazqazrazsaztazuaBLahjawWawWaxlaxlahNaiHaiaayFayGayHayvasGariaqXarjarmaroarpaqXaqXariaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaypaypaypaaaaabaaaaaaaaaaaaaaaaypaypaypaaaaabbznaDEaElaEmaDHaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaabzqaDJaEnaIcaCKazvazvazwazvazvazxazxazyazxazxazzauMahjahjaxmahjahjahNalmalnawSaxdalnaAJasGarsarvarwarDarGarJarLarParSaqdaacaacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaabznaDEaENaDFaFUlGAaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaacolaDJaEObDraCKaClazCazEazFazGazxazHazKazLaCmazzailailailailaBLaBzahNasHawzasBaxeaubayNasGarUarParParWarYasdaqAaqAaseaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbFEaIybHzscBmNUaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaIAaDJaFtbPcaCKazPazPazSazPazPazxazTazUazVazWazzaBFaBKaBLaArailailasVaiaawzasWasXaubazaasGasfasjariaqXarParPariasjasqaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbGoaFTaFUaFVaFWaDGwlDwlDdlVbwbbwbbwbbwbbwbaabaIbaIbaIbaIbaIbbPjezXbXlaGaaGbbPlaCKazYazPazZaAaaAbazxaAXaAdaAeaAfazzauDauDauDauDauDauDahNaiaalnavvavvalnaBWasGaqdaqdastastastastastaqdaqdaqdaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPpbPrbPqbPsaIMuWSjyskLNtKIbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPtbPzbPxalVaIRaDLaCKaAgaAhaAiaAjaAlazxaAKaAMaANaAUazzaataataataataataatahNatzatzatzatzatzatzahNaataataataataataataataataataacaacaacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchbPDaGZaFUaIUaDGaDGwlDkCHvbmbwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbbPEbXnbXlbPNbPFbPOaCKaAYaAYaAYaAYaAYazzaBcaBeaBeaBeazzaataataataataataataataataataataataataataataataataataataataataataataataataataacaacaacaacaacaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFaBmaIYaCHaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCFaCObXmbPSaCKahWahWahWahWahWazzaBjaBjaBjaBjazzaataataataataataataataataataataataataataataataaaaaaaaaaaaaaaaaaaataataataataaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaacchcchcchcchaaaaaaaCFbPYbPXaFUaCFaaaaaabwbbwbbwbbwbbwbaaaaIbaIbaIbaIbaIbaaaaaaaCKaFZbQcbQdaCKaaaaaaaaaaaaahWahWahWahWahWahWahWahWaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznbQjbQeaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQkbQlaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabznaBQbQmaDHaaaaaaaaaaaaaaaaaaaaaaaaaaaaIbaIbaIbaIbaIbaaaaaaaaabzqbQtbQuaJiaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaabQvbQzbQxaJoaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabJmbQCbQFbQDaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraaaaaaaaaaJraJraJraJraJraJraJraJraJraJraJraJraJraJraJraaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraJraJraJraJraJraJraaaaaaaaaaaaaaaaJraJraJraJraJraJraaaaaaaJraJraJraJraJraJraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaJraJraJraJraaaaaaaaaaaaaJraJraJraJraJraaaaaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaabYrbYrbYrbYrbYrbYrbYrbYrbYraaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa +"} diff --git a/maps/tether/tether-06-station2.dmm b/maps/tether/tether-06-station2.dmm index 8337a7ca49..f2d3d595b0 100644 --- a/maps/tether/tether-06-station2.dmm +++ b/maps/tether/tether-06-station2.dmm @@ -322,17 +322,14 @@ /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "aI" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 }, -/obj/structure/table/steel, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/structure/bed/chair{ + dir = 1 }, -/obj/item/toy/stickhorse, -/turf/simulated/floor/tiled/dark, -/area/security/recstorage) +/turf/simulated/floor/tiled, +/area/security/security_cell_hallway) "aJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 5 @@ -558,6 +555,10 @@ pixel_x = -28; req_access = list(1,2) }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "aZ" = ( @@ -1291,6 +1292,7 @@ icon_state = "bordercolor"; dir = 9 }, +/obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, /area/tether/exploration/crew) "bW" = ( @@ -1771,21 +1773,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "cD" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 + dir = 5 }, -/obj/structure/bed/chair{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, +/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, -/area/security/security_cell_hallway) +/area/security/brig) "cE" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -1836,26 +1848,25 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "cG" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/effect/floor_decal/borderfloor/shifted{ + icon_state = "borderfloor_shifted"; + dir = 8 }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 +/obj/effect/floor_decal/corner/red/border/shifted{ + icon_state = "bordercolor_shifted"; + dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 9 }, -/obj/structure/bed/chair/office/dark, -/obj/effect/landmark/start{ - name = "Pilot" +/obj/structure/table/reinforced, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/machinery/alarm{ + pixel_y = 22 }, -/obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, -/area/tether/exploration/crew) +/area/security/brig/visitation) "cH" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -1984,6 +1995,10 @@ d2 = 8; icon_state = "4-8" }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/dark, /area/security/brig) "cR" = ( @@ -2234,26 +2249,25 @@ /turf/simulated/floor/plating, /area/engineering/shaft) "di" = ( -/obj/effect/floor_decal/borderfloor/shifted{ - icon_state = "borderfloor_shifted"; - dir = 8 +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/effect/floor_decal/corner/red/border/shifted{ - icon_state = "bordercolor_shifted"; - dir = 8 +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; + dir = 1 }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 9 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/obj/structure/table/reinforced, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/structure/bed/chair/office/dark, +/obj/effect/landmark/start{ + name = "Pilot" }, -/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, -/area/security/brig/visitation) +/area/tether/exploration/crew) "dj" = ( /turf/simulated/wall, /area/security/brig/visitation) @@ -2894,7 +2908,7 @@ d2 = 2; icon_state = "1-2" }, -/obj/machinery/door/airlock/maintenance/command, +/obj/machinery/door/airlock/maintenance/common, /turf/simulated/floor, /area/maintenance/evahallway) "ei" = ( @@ -3289,6 +3303,7 @@ dir = 5 }, /obj/machinery/vending/cigarette, +/obj/machinery/camera/network/exploration, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "eL" = ( @@ -3310,6 +3325,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) "eM" = ( @@ -3405,18 +3424,8 @@ /turf/simulated/floor/tiled, /area/security/brig) "eT" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/alarm{ - pixel_y = 22 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) +/turf/simulated/floor, +/area/maintenance/station/micro) "eU" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -3525,27 +3534,17 @@ /turf/simulated/floor, /area/security/interrogation) "fc" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloorblack{ dir = 4 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 - }, +/obj/structure/table/steel, +/obj/item/toy/stickhorse, /obj/machinery/camera/network/security{ icon_state = "camera"; dir = 8 }, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) +/turf/simulated/floor/tiled/dark, +/area/security/recstorage) "fd" = ( /turf/simulated/wall/r_wall, /area/security/interrogation) @@ -3586,14 +3585,23 @@ /turf/simulated/floor, /area/tether/exploration/staircase) "fh" = ( -/obj/effect/floor_decal/techfloor{ - dir = 8 - }, -/obj/machinery/camera/network/command{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/security_cell_hallway) "fi" = ( /obj/machinery/alarm{ dir = 4; @@ -3832,10 +3840,6 @@ /obj/machinery/cryopod{ dir = 4 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, /turf/simulated/floor/tiled, /area/security/brig) "fE" = ( @@ -3913,15 +3917,31 @@ "fK" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/bed/chair, +/obj/machinery/camera/network/interrogation, /turf/simulated/floor/tiled/dark, /area/security/interrogation) "fL" = ( -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/effect/floor_decal/borderfloor{ + dir = 8; + icon_state = "borderfloor"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; dir = 8 }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/machinery/photocopier, +/turf/simulated/floor/tiled, +/area/tether/exploration/crew) "fM" = ( /obj/machinery/light, /obj/effect/floor_decal/borderfloor, @@ -4199,6 +4219,10 @@ /obj/effect/floor_decal/techfloor{ dir = 10 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/bluegrid, /area/ai_upload) "gl" = ( @@ -4240,24 +4264,13 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "go" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/effect/floor_decal/borderfloor/corner, -/obj/effect/floor_decal/corner/lightgrey/bordercorner, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/structure/cable/green{ + icon_state = "32-2" }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/structure/lattice, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/maintenance/station/exploration) "gp" = ( /obj/effect/floor_decal/techfloor, /obj/structure/cable/cyan{ @@ -4501,9 +4514,6 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, -/obj/machinery/camera/network/exploration{ - dir = 8 - }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "gJ" = ( @@ -4678,13 +4688,6 @@ /obj/effect/floor_decal/corner/red/border{ dir = 1 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/security/security_cell_hallway) "gX" = ( @@ -4730,6 +4733,10 @@ icon_state = "comfychair_preview"; dir = 1 }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/exploration/crew) "ha" = ( @@ -4867,13 +4874,34 @@ /turf/simulated/wall/r_wall, /area/ai_cyborg_station) "hm" = ( -/obj/structure/cable/green{ - icon_state = "32-2" +/obj/structure/railing{ + dir = 8 }, -/obj/structure/lattice, -/turf/simulated/open, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, /area/maintenance/station/exploration) "hn" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/hologram/holopad, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/security_cell_hallway) +"ho" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, /obj/effect/floor_decal/borderfloor/corner2, @@ -4884,28 +4912,8 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 8 }, -/obj/machinery/camera/network/exploration{ - dir = 1 - }, /turf/simulated/floor/tiled, /area/tether/exploration/staircase) -"ho" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/table/reinforced, -/obj/random/maintenance/engineering, -/obj/random/maintenance/engineering, -/obj/random/tech_supply, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) "hp" = ( /obj/structure/cable/green{ d1 = 1; @@ -5334,19 +5342,19 @@ /turf/simulated/floor/tiled/dark, /area/security/interrogation) "hZ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 8 }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/corner/yellow/border{ + dir = 8 }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled/dark, -/area/security/interrogation) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/table/reinforced, +/obj/random/maintenance/engineering, +/obj/random/maintenance/engineering, +/obj/random/tech_supply, +/turf/simulated/floor/tiled, +/area/engineering/locker_room) "ia" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -5368,6 +5376,9 @@ d2 = 2; icon_state = "1-2" }, +/obj/structure/disposalpipe/up{ + dir = 8 + }, /turf/simulated/floor, /area/maintenance/station/exploration) "ic" = ( @@ -5392,6 +5403,7 @@ /obj/effect/floor_decal/techfloor{ dir = 9 }, +/obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai_upload) "ie" = ( @@ -5461,6 +5473,7 @@ /obj/effect/floor_decal/techfloor{ dir = 5 }, +/obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai_upload) "il" = ( @@ -5549,6 +5562,9 @@ /obj/structure/table/reinforced, /obj/random/powercell, /obj/random/tech_supply, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/engineering/locker_room) "ir" = ( @@ -5599,12 +5615,20 @@ /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "iw" = ( -/obj/structure/closet/secure_closet/engineering_personal, -/obj/machinery/camera/network/engineering{ - dir = 8 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/turf/simulated/floor/tiled, -/area/engineering/locker_room) +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/dark, +/area/security/interrogation) "ix" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -5663,10 +5687,6 @@ /obj/machinery/alarm{ pixel_y = 22 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, /turf/simulated/floor, /area/security/riot_control) "iA" = ( @@ -5843,23 +5863,14 @@ /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iK" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 +/obj/effect/floor_decal/techfloor{ + dir = 6 }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on, -/obj/machinery/camera/network/exploration, -/turf/simulated/floor/tiled, -/area/tether/exploration/hallway) +/turf/simulated/floor/bluegrid, +/area/ai_upload) "iL" = ( /obj/effect/floor_decal/borderfloor{ dir = 1; @@ -5925,6 +5936,10 @@ dir = 4 }, /obj/structure/flora/pottedplant/crystal, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iP" = ( @@ -6062,6 +6077,10 @@ dir = 5 }, /obj/machinery/vending/coffee, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "iZ" = ( @@ -6286,33 +6305,14 @@ /turf/simulated/floor, /area/maintenance/station/sec_lower) "jm" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/purple/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/techfloor{ + dir = 10 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/camera/network/exploration{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/tether/exploration/hallway) +/turf/simulated/floor/bluegrid, +/area/ai_upload) "jn" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/purple/border, @@ -6413,6 +6413,10 @@ /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 4 }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 1 + }, /turf/simulated/floor/tiled, /area/tether/exploration/hallway) "jr" = ( @@ -6853,13 +6857,8 @@ /obj/effect/floor_decal/techfloor{ dir = 6 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/bluegrid, +/obj/effect/floor_decal/techfloor/hole, +/turf/simulated/floor/tiled/techfloor, /area/ai_upload) "jV" = ( /turf/simulated/wall/r_wall, @@ -6913,17 +6912,29 @@ /turf/simulated/floor/bluegrid, /area/ai_upload) "kc" = ( -/obj/effect/floor_decal/techfloor{ - dir = 10 +/obj/effect/floor_decal/borderfloor{ + dir = 1; + icon_state = "borderfloor"; + pixel_y = 0 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ +/obj/effect/floor_decal/corner/purple/border{ + icon_state = "bordercolor"; dir = 1 }, -/obj/machinery/camera/network/command{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai_upload) +/obj/structure/table/rack/shelf, +/obj/item/device/multitool/tether_buffered{ + pixel_y = 2 + }, +/obj/item/weapon/storage/toolbox/mechanical{ + pixel_y = -4 + }, +/obj/item/weapon/hand_labeler, +/turf/simulated/floor/tiled, +/area/tether/exploration/equipment) "kd" = ( /obj/structure/table/standard, /obj/item/weapon/aiModule/freeform, @@ -6968,9 +6979,6 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "kh" = ( @@ -6991,6 +6999,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "ki" = ( @@ -7103,6 +7114,10 @@ dir = 10 }, /obj/effect/floor_decal/techfloor/hole/right, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "kw" = ( @@ -7119,15 +7134,18 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload) "kx" = ( -/obj/effect/floor_decal/techfloor{ - dir = 6 - }, -/obj/effect/floor_decal/techfloor/hole, -/obj/machinery/camera/network/command{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "ky" = ( /obj/effect/floor_decal/borderfloor{ dir = 10 @@ -7268,6 +7286,9 @@ pixel_y = 0 }, /obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor, /area/maintenance/substation/exploration) "kI" = ( @@ -7321,6 +7342,7 @@ pixel_x = 3; pixel_y = -3 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/plating, /area/storage/tech) "kP" = ( @@ -7487,19 +7509,19 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "la" = ( -/obj/machinery/camera/network/tether, /obj/effect/floor_decal/borderfloor{ - dir = 1 + dir = 6 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/corner/purple/border{ + dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/item/device/radio/intercom{ + dir = 4; + pixel_x = 24 }, +/obj/structure/filingcabinet/filingcabinet, /turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/area/tether/exploration/pathfinder_office) "lb" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -7517,6 +7539,7 @@ /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "lc" = ( @@ -7675,6 +7698,7 @@ /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 4 }, +/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "ln" = ( @@ -8294,6 +8318,7 @@ pixel_x = 1; pixel_y = -1 }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor/tiled/dark, /area/storage/tech) "mf" = ( @@ -8549,6 +8574,7 @@ /area/tether/exploration/pathfinder_office) "mA" = ( /obj/machinery/message_server, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled/techfloor, /area/ai_server_room) "mB" = ( @@ -8826,12 +8852,23 @@ /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "mR" = ( -/obj/structure/railing{ - dir = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/structure/reagent_dispensers/watertank, -/turf/simulated/floor/plating, -/area/maintenance/station/eng_upper) +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/exploration) "mS" = ( /obj/random/junk, /obj/effect/decal/cleanable/dirt, @@ -9023,22 +9060,8 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_upload_foyer) "ng" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/floor/tiled/techfloor, +/area/ai_server_room) "nh" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -9191,9 +9214,18 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "nr" = ( +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, /obj/structure/railing{ dir = 8 }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, /turf/simulated/floor, /area/maintenance/station/exploration) "ns" = ( @@ -9225,25 +9257,16 @@ /turf/simulated/floor/tiled/dark, /area/storage/tech) "nu" = ( +/obj/machinery/light, /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/camera/network/engineering{ - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/storage/tech) -"nv" = ( -/obj/machinery/requests_console{ - department = "Tech storage"; - pixel_x = -28; - pixel_y = 0 - }, -/obj/machinery/camera/network/engineering{ dir = 4 }, -/turf/simulated/floor, -/area/storage/tech) +/turf/simulated/floor/tiled/techfloor, +/area/ai_upload_foyer) +"nv" = ( +/obj/machinery/recharge_station, +/turf/simulated/floor/tiled/techfloor, +/area/ai_cyborg_station) "nw" = ( /obj/structure/table/rack{ dir = 8; @@ -9404,11 +9427,12 @@ /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "nF" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/plating, -/area/maintenance/station/eng_upper) +/obj/machinery/door/airlock/maintenance/common, +/obj/machinery/door/firedoor/glass, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "nG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9432,27 +9456,10 @@ /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "nI" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "nJ" = ( /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 @@ -9662,17 +9669,14 @@ /turf/simulated/floor, /area/storage/tech) "od" = ( -/obj/structure/table/steel, -/obj/item/weapon/cell/high{ - charge = 100; - maxcharge = 15000 +/obj/effect/floor_decal/borderfloor{ + dir = 5 }, -/obj/item/stack/cable_coil, -/obj/machinery/camera/network/engineering{ - dir = 8 +/obj/effect/floor_decal/corner/yellow/border{ + dir = 5 }, -/turf/simulated/floor, -/area/storage/tech) +/turf/simulated/floor/tiled, +/area/engineering/foyer_mezzenine) "oe" = ( /obj/structure/railing{ dir = 1 @@ -9745,46 +9749,49 @@ /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "ol" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/station/eng_upper) +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "om" = ( /obj/structure/cable{ - icon_state = "1-2" + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/structure/railing{ - dir = 1 - }, -/turf/simulated/floor/plating, -/area/maintenance/station/eng_upper) +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "on" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "oo" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/structure/cable{ - icon_state = "1-8" + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/machinery/light/small{ + dir = 4 + }, +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "op" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -9798,40 +9805,39 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "oq" = ( -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/alarm{ + dir = 8; + pixel_x = 25; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/structure/cable, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "or" = ( /obj/machinery/computer/aifixer, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled/techfloor, /area/ai_cyborg_station) "os" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/exploration) "ot" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/lightgrey/border, @@ -9860,88 +9866,64 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "ov" = ( -/obj/machinery/light, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/door/firedoor/glass, +/obj/structure/lattice, +/obj/structure/disposalpipe/down{ + dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/open, +/area/maintenance/station/eng_upper) "ow" = ( -/obj/machinery/camera/network/tether{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/random/junk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/railing{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "ox" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/disposalpipe/segment, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/structure/cable{ + d1 = 1; + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "oy" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/structure/railing{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "oz" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "oA" = ( /obj/structure/cable/green{ d1 = 4; @@ -10092,6 +10074,9 @@ /obj/structure/table/steel, /obj/item/device/aicard, /obj/item/weapon/aiModule/reset, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor, /area/storage/tech) "oK" = ( @@ -10144,14 +10129,18 @@ /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "oQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/plating, -/area/maintenance/station/eng_upper) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/cable{ + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "oR" = ( /obj/structure/table/rack{ dir = 8; @@ -10207,33 +10196,12 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "oV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/light{ - dir = 4; - icon_state = "tube1"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "oW" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/paleblue/border, @@ -10329,22 +10297,11 @@ /turf/simulated/floor/tiled, /area/engineering/foyer_mezzenine) "pf" = ( -/obj/effect/floor_decal/borderfloor/corner{ +/obj/structure/catwalk, +/obj/machinery/camera/network/tether{ dir = 4 }, -/obj/effect/floor_decal/corner/yellow/bordercorner{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/turf/simulated/floor/tiled, +/turf/simulated/open, /area/engineering/foyer_mezzenine) "pg" = ( /obj/structure/railing{ @@ -10362,17 +10319,35 @@ /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "ph" = ( -/obj/machinery/light/small, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, /obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "pi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/structure/cable{ icon_state = "1-2" }, -/obj/effect/floor_decal/rust, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/structure/railing{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, /turf/simulated/floor/plating, /area/maintenance/station/eng_upper) "pj" = ( @@ -10423,29 +10398,26 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "pm" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/floor_decal/borderfloor/corner, +/obj/effect/floor_decal/corner/lightgrey/bordercorner, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, /obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 10 + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 9 }, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "pn" = ( @@ -10580,30 +10552,11 @@ /turf/simulated/floor/tiled/dark, /area/ai_monitored/storage/eva) "pA" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/button/remote/airlock{ - desc = "A remote control switch for exiting EVA."; - id = "evadoors"; - name = "EVA Door Control"; - pixel_x = 0; - pixel_y = 28 - }, -/obj/machinery/camera/network/command{ - c_tag = "EVA - Fore" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, /turf/simulated/floor/tiled/dark, -/area/ai_monitored/storage/eva) +/area/storage/tech) "pB" = ( /obj/structure/cable/green{ d1 = 1; @@ -10739,15 +10692,13 @@ /turf/simulated/floor/tiled/steel_grid, /area/engineering/foyer_mezzenine) "pN" = ( -/obj/structure/cable{ - icon_state = "1-2" +/obj/machinery/requests_console{ + department = "Tech storage"; + pixel_x = -28; + pixel_y = 0 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/turf/simulated/floor/plating, -/area/maintenance/station/eng_upper) +/turf/simulated/floor, +/area/storage/tech) "pO" = ( /turf/simulated/wall/r_wall, /area/hallway/station/port) @@ -10772,55 +10723,39 @@ /turf/simulated/floor/tiled, /area/hallway/station/port) "pQ" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/hallway/station/port) +/area/hallway/station/starboard) "pR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 10 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/cable, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/hallway/station/port) +/area/hallway/station/starboard) "pS" = ( /turf/simulated/wall/r_wall, /area/hallway/station/starboard) @@ -11187,141 +11122,118 @@ /turf/simulated/floor/tiled, /area/hallway/station/port) "qx" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/corner/yellow/bordercorner{ + dir = 4 }, -/obj/effect/floor_decal/corner/lightgrey/border{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/engineering/foyer_mezzenine) +"qy" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/machinery/door/firedoor/glass/hidden/steel{ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/hallway/station/port) -"qy" = ( -/obj/structure/cable{ - icon_state = "1-2" +/area/hallway/station/starboard) +"qz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/obj/structure/cable{ +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) +"qA" = ( +/obj/machinery/light, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) +"qB" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ d1 = 2; d2 = 4; icon_state = "2-4" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/hallway/station/port) -"qz" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/station/port) -"qA" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/machinery/status_display{ - pixel_y = 30 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/station/port) -"qB" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8"; - pixel_x = 0 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/turf/simulated/floor/tiled, -/area/hallway/station/port) +/area/hallway/station/starboard) "qC" = ( -/obj/structure/cable{ +/obj/structure/cable/green{ d1 = 4; d2 = 8; - icon_state = "4-8"; - pixel_x = 0 + icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, /turf/simulated/floor/tiled, -/area/hallway/station/port) +/area/hallway/station/starboard) "qD" = ( /obj/machinery/light/small{ icon_state = "bulb1"; @@ -11346,30 +11258,41 @@ /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "qF" = ( -/obj/structure/cable{ - d1 = 1; +/obj/structure/cable/green{ + d1 = 4; d2 = 8; - icon_state = "1-8" + icon_state = "4-8" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 1 +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner{ - dir = 1 +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, /turf/simulated/floor/tiled, /area/hallway/station/starboard) "qG" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/turf/simulated/floor/tiled, -/area/hallway/station/starboard) +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "qH" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -11386,20 +11309,14 @@ /turf/simulated/floor/tiled/dark, /area/tether/station/public_meeting_room) "qI" = ( -/obj/structure/table/woodentable, -/obj/structure/plushie/ian{ - dir = 8; - icon_state = "ianplushie"; - pixel_y = 6 +/obj/structure/table/steel, +/obj/item/weapon/cell/high{ + charge = 100; + maxcharge = 15000 }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/medical/psych) +/obj/item/stack/cable_coil, +/turf/simulated/floor, +/area/storage/tech) "qJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 10 @@ -11408,6 +11325,10 @@ /area/medical/psych) "qK" = ( /obj/structure/flora/pottedplant/fern, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/wood, /area/medical/psych) "qL" = ( @@ -11591,6 +11512,10 @@ /obj/machinery/photocopier/faxmachine{ department = "Pathfinder's Office" }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/tether/exploration/pathfinder_office) "ra" = ( @@ -11774,15 +11699,27 @@ /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "ro" = ( -/obj/structure/table/steel, -/obj/machinery/camera/network/medbay{ - dir = 8 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/techfloor{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/turf/simulated/floor/tiled/techfloor, -/area/medical/morgue) +/obj/machinery/button/remote/airlock{ + desc = "A remote control switch for exiting EVA."; + id = "evadoors"; + name = "EVA Door Control"; + pixel_x = 0; + pixel_y = 28 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) "rp" = ( /obj/item/device/radio/intercom{ dir = 8; @@ -11875,6 +11812,10 @@ /obj/effect/floor_decal/techfloor{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "rA" = ( @@ -11992,6 +11933,10 @@ /obj/effect/floor_decal/industrial/warning{ dir = 4 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "rL" = ( @@ -12134,18 +12079,21 @@ /obj/structure/cable{ d1 = 4; d2 = 8; - icon_state = "4-8" + icon_state = "4-8"; + pixel_x = 0 }, -/obj/machinery/camera/network/tether{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/lightgrey/border{ dir = 1 }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 }, /turf/simulated/floor/tiled, /area/hallway/station/port) @@ -12198,16 +12146,18 @@ /turf/simulated/floor/tiled, /area/hallway/station/port) "rZ" = ( -/obj/structure/bed/chair{ - dir = 1 +/obj/machinery/light{ + icon_state = "tube1"; + dir = 4 }, -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/structure/table/reinforced, +/obj/fiftyspawner/rglass, +/obj/fiftyspawner/rods, +/obj/effect/floor_decal/industrial/warning{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) +/turf/simulated/floor/tiled, +/area/ai_monitored/storage/eva) "sa" = ( /obj/structure/bed/chair{ dir = 1 @@ -12425,21 +12375,17 @@ /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "sq" = ( -/obj/machinery/light{ - icon_state = "tube1"; +/obj/structure/table/woodentable, +/obj/structure/plushie/ian{ + dir = 8; + icon_state = "ianplushie"; + pixel_y = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/structure/table/reinforced, -/obj/machinery/camera/network/security{ - dir = 8 - }, -/obj/fiftyspawner/rglass, -/obj/fiftyspawner/rods, -/obj/effect/floor_decal/industrial/warning{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/ai_monitored/storage/eva) +/turf/simulated/floor/wood, +/area/medical/psych) "sr" = ( /obj/machinery/door/firedoor/border_only, /obj/structure/grille, @@ -12610,9 +12556,17 @@ /turf/simulated/floor/wood, /area/medical/psych) "sH" = ( -/obj/structure/closet/crate/bin, -/turf/simulated/floor/wood, -/area/medical/psych) +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "sI" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall, @@ -12702,26 +12656,10 @@ /turf/simulated/floor/tiled/white, /area/medical/morgue) "sN" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ +/obj/structure/table/steel, +/obj/effect/floor_decal/techfloor{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/techfloor, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, /turf/simulated/floor/tiled/techfloor, /area/medical/morgue) "sO" = ( @@ -13046,20 +12984,9 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "tt" = ( -/obj/structure/sign/department/morgue{ - pixel_x = 32 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) +/obj/structure/closet/crate/bin, +/turf/simulated/floor/wood, +/area/medical/psych) "tu" = ( /turf/simulated/wall, /area/medical/resleeving) @@ -13072,15 +12999,19 @@ /turf/simulated/floor/tiled/white, /area/medical/resleeving) "tw" = ( -/obj/structure/closet/secure_closet/chemical{ - req_access = list(64); - req_one_access = list(5) +/obj/structure/table/reinforced, +/obj/item/clothing/head/welding, +/obj/item/weapon/storage/belt/utility, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/turf/simulated/floor/carpet/blue, -/area/medical/psych) +/turf/simulated/floor/tiled, +/area/ai_monitored/storage/eva) "tx" = ( /obj/machinery/suit_cycler/security{ req_access = null @@ -13397,48 +13328,13 @@ /turf/simulated/floor/plating, /area/medical/resleeving) "tU" = ( -/obj/structure/closet{ - name = "spare clothes" - }, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/black, -/obj/item/clothing/under/color/grey, -/obj/item/clothing/under/color/white, -/obj/item/clothing/under/color/blue, -/obj/item/clothing/under/color/green, -/obj/item/clothing/under/color/lightpurple, -/obj/item/clothing/under/color/yellow, -/obj/item/clothing/under/color/lightred, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/black, -/obj/item/clothing/shoes/white, -/obj/item/clothing/shoes/blue, -/obj/item/clothing/shoes/green, -/obj/item/clothing/shoes/purple, -/obj/item/clothing/shoes/yellow, -/obj/item/clothing/shoes/red, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, -/obj/item/device/radio/headset, /obj/effect/floor_decal/borderfloorwhite{ dir = 9 }, /obj/effect/floor_decal/corner/paleblue/border{ dir = 9 }, -/obj/machinery/computer/guestpass{ - pixel_y = 32 - }, +/obj/machinery/vending/loadout/uniform, /turf/simulated/floor/tiled/white, /area/medical/resleeving) "tV" = ( @@ -13487,23 +13383,25 @@ /turf/simulated/floor/tiled, /area/medical/resleeving) "tY" = ( -/obj/structure/table/glass, -/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ - pixel_x = 7; - pixel_y = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/effect/floor_decal/techfloor, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/turf/simulated/floor/tiled/white, -/area/medical/resleeving) +/turf/simulated/floor/tiled/techfloor, +/area/medical/morgue) "tZ" = ( /obj/effect/floor_decal/borderfloorwhite{ dir = 1 @@ -13847,19 +13745,10 @@ /turf/simulated/floor/plating, /area/ai_monitored/storage/eva) "uG" = ( -/obj/structure/table/reinforced, -/obj/item/clothing/head/welding, -/obj/item/weapon/storage/belt/utility, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/industrial/warning{ - dir = 8 - }, +/obj/effect/floor_decal/industrial/warning, /obj/machinery/camera/network/command{ - dir = 4 + icon_state = "camera"; + dir = 10 }, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) @@ -13961,6 +13850,7 @@ pixel_x = 0; pixel_y = -25 }, +/obj/machinery/camera/network/command, /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "uO" = ( @@ -14435,6 +14325,10 @@ dir = 4 }, /obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/dark, /area/medical/resleeving) "vB" = ( @@ -14547,12 +14441,14 @@ /turf/simulated/floor/tiled, /area/ai_monitored/storage/eva) "vJ" = ( -/obj/effect/floor_decal/industrial/warning, -/obj/machinery/camera/network/command{ +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 5 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, /turf/simulated/floor/tiled, -/area/ai_monitored/storage/eva) +/area/tether/station/stairs_two) "vK" = ( /obj/effect/floor_decal/industrial/warning/corner, /obj/structure/cable/green, @@ -14602,23 +14498,31 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_cyborg_station) "vP" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/turf/simulated/floor/tiled, -/area/tether/station/stairs_two) -"vQ" = ( +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, /obj/machinery/camera/network/tether{ dir = 1 }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, /turf/simulated/floor/tiled, -/area/tether/station/stairs_two) +/area/hallway/station/port) +"vQ" = ( +/obj/structure/sign/department/morgue{ + pixel_x = 32 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "vR" = ( /obj/machinery/door/airlock/multi_tile/glass{ dir = 2; @@ -14881,8 +14785,14 @@ /turf/simulated/floor, /area/maintenance/evahallway) "wo" = ( -/turf/simulated/wall/r_wall, -/area/bridge/meeting_room) +/obj/structure/grille, +/obj/structure/window/reinforced/full, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/machinery/door/firedoor/glass, +/turf/simulated/floor/plating, +/area/maintenance/station/micro) "wp" = ( /obj/structure/cable/cyan{ d1 = 1; @@ -14934,25 +14844,12 @@ /turf/simulated/floor/tiled/white, /area/medical/biostorage) "wt" = ( -/obj/structure/bed/chair/wheelchair{ - dir = 4 +/obj/structure/closet/secure_closet/chemical{ + req_access = list(64); + req_one_access = list(5) }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/white, -/area/medical/biostorage) +/turf/simulated/floor/carpet/blue, +/area/medical/psych) "wu" = ( /obj/structure/flora/ausbushes/brflowers, /turf/simulated/floor/grass, @@ -14960,6 +14857,10 @@ "wv" = ( /obj/structure/table/woodentable, /obj/item/weapon/clipboard, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/carpet/blue, /area/medical/psych) "ww" = ( @@ -15073,6 +14974,11 @@ /obj/machinery/light, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/computer/guestpass{ + dir = 1; + icon_state = "guest"; + pixel_y = -28 + }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) "wG" = ( @@ -15215,66 +15121,72 @@ /turf/simulated/floor, /area/maintenance/evahallway) "wQ" = ( -/obj/structure/table/woodentable, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/obj/machinery/door/firedoor/glass, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/computer/guestpass{ - pixel_y = 32 +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/micro) "wR" = ( -/obj/structure/table/woodentable, -/obj/machinery/chemical_dispenser/bar_soft/full, -/obj/machinery/keycard_auth{ - pixel_y = 28 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/micro) "wS" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Command Conf Room" +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, +/turf/simulated/floor, +/area/maintenance/station/micro) "wT" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk, -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wU" = ( -/obj/machinery/newscaster{ - pixel_y = 32 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wV" = ( -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wW" = ( -/obj/machinery/atm{ - pixel_y = 30 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wX" = ( -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"wY" = ( -/obj/structure/grille, -/obj/structure/window/reinforced/full, -/obj/structure/window/reinforced{ +/obj/structure/disposalpipe/segment{ dir = 4 }, +/obj/effect/decal/cleanable/dirt, +/obj/machinery/door/airlock/maintenance/command{ + req_access = list(19) + }, /obj/machinery/door/firedoor/glass, -/turf/simulated/floor/plating, -/area/bridge/meeting_room) +/turf/simulated/floor, +/area/maintenance/station/micro) +"wU" = ( +/obj/machinery/power/apc{ + dir = 4; + name = "east bump"; + pixel_x = 28 + }, +/obj/structure/cable/green, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 + }, +/obj/effect/floor_decal/corner/pink/border{ + dir = 6 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/exam_room) "wZ" = ( /obj/effect/landmark/start{ name = "Medical Doctor" @@ -15305,20 +15217,23 @@ /turf/simulated/wall, /area/medical/surgery) "xc" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/structure/table/glass, +/obj/item/weapon/reagent_containers/glass/beaker/cryoxadone{ + pixel_x = 7; + pixel_y = 1 }, /obj/effect/floor_decal/borderfloorwhite{ - dir = 8 + dir = 1 }, /obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 + }, +/obj/effect/floor_decal/industrial/warning{ dir = 8 }, +/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, -/area/medical/surgery_hallway) +/area/medical/resleeving) "xd" = ( /obj/structure/cable/green{ d1 = 1; @@ -15360,37 +15275,6 @@ "xg" = ( /turf/simulated/wall, /area/maintenance/station/medbay) -"xh" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"xi" = ( -/obj/item/clothing/suit/straight_jacket, -/obj/item/clothing/mask/muzzle, -/obj/structure/table/standard, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/biostorage) "xj" = ( /obj/structure/window/reinforced, /turf/simulated/floor/tiled/white, @@ -15462,22 +15346,26 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "xo" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 +/obj/structure/bed/chair/wheelchair{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ - dir = 9 + dir = 4 }, -/obj/effect/floor_decal/corner/white/border{ +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 9 }, /turf/simulated/floor/tiled/white, -/area/medical/surgery) +/area/medical/biostorage) "xp" = ( /obj/structure/table/standard, /obj/item/weapon/storage/firstaid/surgery, @@ -15521,25 +15409,6 @@ /obj/structure/disposalpipe/segment, /turf/simulated/floor, /area/maintenance/evahallway) -"xs" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/storage/box/cups, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"xt" = ( -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "xu" = ( /obj/structure/bed/chair, /obj/machinery/power/apc{ @@ -15685,22 +15554,21 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery2) "xG" = ( -/obj/structure/table/standard, -/obj/item/weapon/reagent_containers/spray/cleaner{ - desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; - name = "Surgery Cleaner"; - pixel_x = 2; - pixel_y = 2 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 4 }, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ - dir = 5 + dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 }, /turf/simulated/floor/tiled/white, -/area/medical/surgery2) +/area/medical/surgery_hallway) "xH" = ( /obj/structure/cable/green{ d1 = 2; @@ -15724,46 +15592,18 @@ /obj/structure/railing, /turf/simulated/floor, /area/maintenance/station/medbay) -"xJ" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor, -/area/bridge/meeting_room) "xK" = ( -/obj/structure/table/woodentable, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/item/clothing/suit/straight_jacket, +/obj/item/clothing/mask/muzzle, +/obj/structure/table/standard, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 }, -/obj/machinery/camera/network/command{ - c_tag = "Command Meeting Room West"; - dir = 4 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"xL" = ( -/obj/machinery/hologram/holopad, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"xM" = ( -/obj/structure/bed/chair/comfy/black, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"xN" = ( -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) +/turf/simulated/floor/tiled/white, +/area/medical/biostorage) "xO" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/syringegun, @@ -15911,6 +15751,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "xZ" = ( @@ -15933,30 +15777,21 @@ /turf/simulated/floor/tiled/white, /area/medical/surgery) "ya" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - icon_state = "borderfloor"; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/machinery/camera/network/exploration, -/obj/structure/table/rack/shelf, -/obj/item/device/multitool/tether_buffered{ +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; pixel_y = 2 }, -/obj/item/weapon/storage/toolbox/mechanical{ - pixel_y = -4 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 9 }, -/obj/item/weapon/hand_labeler, -/turf/simulated/floor/tiled, -/area/tether/exploration/equipment) +/obj/effect/floor_decal/corner/white/border{ + dir = 9 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery) "yb" = ( /obj/effect/floor_decal/industrial/loading, /turf/simulated/floor/tiled/white, @@ -16039,149 +15874,22 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) -"yh" = ( -/turf/simulated/open, -/area/bridge/meeting_room) -"yi" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yj" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yk" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" - }, -/obj/structure/disposalpipe/junction{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yl" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals5, -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 - }, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"ym" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yn" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yo" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/obj/structure/disposalpipe/segment{ - dir = 8; - icon_state = "pipe-c" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yp" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/book/manual/security_space_law, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yq" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/red, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yr" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/obj/effect/landmark/start{ - name = "Command Secretary" - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) "ys" = ( -/obj/machinery/camera/network/command{ - c_tag = "Command Meeting Room East"; - dir = 9 +/obj/structure/table/standard, +/obj/item/weapon/reagent_containers/spray/cleaner{ + desc = "Someone has crossed out the Space from Space Cleaner and written in Surgery. 'Do not remove under punishment of death!!!' is scrawled on the back."; + name = "Surgery Cleaner"; + pixel_x = 2; + pixel_y = 2 }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/turf/simulated/floor/tiled/white, +/area/medical/surgery2) "yt" = ( /obj/machinery/light{ icon_state = "tube1"; @@ -16264,17 +15972,6 @@ }, /turf/simulated/floor/tiled, /area/tether/exploration/equipment) -"yB" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/obj/machinery/door/firedoor/glass, -/turf/simulated/floor, -/area/maintenance/station/micro) "yC" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, @@ -16371,102 +16068,6 @@ "yJ" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/micro) -"yK" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yL" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yM" = ( -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals5{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/bridge/meeting_room) -"yN" = ( -/obj/machinery/photocopier, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yO" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yP" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yQ" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/pen, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yR" = ( -/obj/structure/table/woodentable, -/obj/item/weapon/folder/blue, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yS" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 8 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) -"yT" = ( -/obj/machinery/alarm{ - dir = 1; - icon_state = "alarm0"; - pixel_y = -22 - }, -/obj/structure/table/woodentable, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) -"yU" = ( -/obj/machinery/light, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "yV" = ( /obj/structure/table/standard, /obj/item/device/glasses_kit, @@ -16538,25 +16139,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/surgery) -"zb" = ( -/obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/door/airlock/maintenance/command{ - req_access = list(19) - }, -/turf/simulated/floor, -/area/bridge/meeting_room) -"zc" = ( -/obj/structure/bed/chair/comfy/black{ - dir = 1 - }, -/turf/simulated/floor/carpet/sblucarpet, -/area/bridge/meeting_room) "zd" = ( /obj/structure/cable/green{ d1 = 1; @@ -16785,6 +16367,10 @@ /obj/effect/floor_decal/corner/white/bordercorner2{ dir = 6 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery) "zu" = ( @@ -16802,6 +16388,10 @@ /obj/effect/floor_decal/corner/white/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery2) "zv" = ( @@ -16952,13 +16542,6 @@ }, /turf/simulated/floor/plating, /area/medical/patient_a) -"zG" = ( -/obj/structure/table/woodentable, -/obj/structure/flora/pottedplant/small{ - pixel_y = 12 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "zH" = ( /obj/structure/table/standard, /obj/effect/floor_decal/borderfloorwhite{ @@ -17180,9 +16763,6 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -17227,9 +16807,6 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 8 }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 4 }, @@ -17302,6 +16879,7 @@ dir = 8 }, /obj/machinery/vending/coffee, +/obj/machinery/camera/network/medbay, /turf/simulated/floor/wood, /area/medical/surgery_hallway) "Ah" = ( @@ -17394,7 +16972,6 @@ /area/medical/surgery_hallway) "Ap" = ( /obj/structure/table/glass, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -17625,7 +17202,6 @@ /obj/machinery/door/firedoor/glass/hidden/steel{ dir = 2 }, -/obj/machinery/camera/network/medbay, /obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, @@ -18220,6 +17796,10 @@ /obj/item/weapon/storage/box/masks, /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "BB" = ( @@ -18974,15 +18554,16 @@ /area/medical/surgery_hallway) "CG" = ( /obj/structure/closet/emcloset, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ dir = 6 }, /obj/effect/floor_decal/corner/paleblue/border{ dir = 6 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/surgery_hallway) "CH" = ( @@ -19137,6 +18718,10 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2{ dir = 8 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/ward) "CV" = ( @@ -19299,23 +18884,6 @@ }, /turf/simulated/floor/tiled/white, /area/medical/ward) -"Dh" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/purple/border{ - dir = 6 - }, -/obj/item/device/radio/intercom{ - dir = 4; - pixel_x = 24 - }, -/obj/machinery/camera/network/exploration{ - dir = 1 - }, -/obj/structure/filingcabinet/filingcabinet, -/turf/simulated/floor/tiled, -/area/tether/exploration/pathfinder_office) "Di" = ( /obj/structure/cable/green{ d1 = 4; @@ -19336,11 +18904,22 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_server_room) "Dk" = ( -/obj/machinery/camera/network/command{ - dir = 1 +/obj/structure/bed/padded, +/obj/item/weapon/bedsheet/medical, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_server_room) +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 6 + }, +/turf/simulated/floor/tiled/white, +/area/medical/ward) "Dl" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -19348,15 +18927,12 @@ /turf/simulated/floor/tiled/techfloor, /area/ai_server_room) "Dm" = ( -/obj/machinery/light, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/structure/closet/secure_closet/engineering_personal, +/obj/machinery/camera/network/engineering{ + dir = 8 }, -/obj/machinery/camera/network/command{ - dir = 4 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_upload_foyer) +/turf/simulated/floor/tiled, +/area/engineering/locker_room) "Dn" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 @@ -19405,13 +18981,6 @@ /turf/simulated/floor/tiled/white, /area/medical/ward) "Dq" = ( -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"Dr" = ( /obj/machinery/light, /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -19421,8 +18990,16 @@ icon_state = "intercom"; pixel_x = 32 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/techfloor, /area/ai_upload_foyer) +"Dr" = ( +/obj/machinery/camera/network/medbay, +/turf/simulated/floor/tiled/white, +/area/medical/surgery_hallway) "Ds" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 9 @@ -19529,13 +19106,6 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_lower) -"Dz" = ( -/obj/machinery/recharge_station, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_cyborg_station) "DA" = ( /obj/structure/railing{ dir = 4 @@ -19615,19 +19185,34 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "DJ" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ +/obj/structure/cable{ d1 = 1; - d2 = 8; - icon_state = "1-8" + d2 = 2; + icon_state = "1-2"; + pixel_y = 0 }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/light{ + dir = 4; + icon_state = "tube1"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "DK" = ( /obj/effect/floor_decal/rust, /obj/effect/decal/cleanable/dirt, @@ -19663,16 +19248,11 @@ /turf/simulated/floor/tiled, /area/hallway/station/starboard) "DO" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/railing{ - dir = 8 - }, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/machinery/light/small, +/obj/effect/decal/cleanable/dirt, +/obj/structure/reagent_dispensers/watertank, +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "DP" = ( /obj/structure/railing{ dir = 1 @@ -19686,11 +19266,15 @@ /turf/simulated/floor, /area/maintenance/station/exploration) "DQ" = ( -/obj/machinery/door/airlock/maintenance/common, -/obj/machinery/door/firedoor/glass, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + icon_state = "1-2" + }, +/obj/effect/floor_decal/rust, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "DR" = ( /obj/random/trash, /obj/effect/floor_decal/techfloor{ @@ -19700,23 +19284,42 @@ /area/maintenance/station/sec_lower) "DS" = ( /obj/structure/cable{ - d1 = 2; + d1 = 1; d2 = 8; - icon_state = "2-8" + icon_state = "1-8" }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "DT" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/door/firedoor/glass, +/obj/machinery/door/airlock/maintenance/common, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/plating, +/area/maintenance/station/eng_upper) "DU" = ( /obj/structure/cable{ icon_state = "0-4" @@ -19733,23 +19336,21 @@ /turf/simulated/floor, /area/maintenance/station/exploration) "DV" = ( -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 - }, -/obj/structure/cable{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/light/small{ +/obj/effect/floor_decal/borderfloor{ dir = 4 }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "DW" = ( /obj/structure/railing{ dir = 4 @@ -19760,19 +19361,36 @@ /area/maintenance/station/exploration) "DX" = ( /obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 + icon_state = "1-2" }, -/obj/machinery/alarm{ - dir = 8; - pixel_x = 25; - pixel_y = 0 +/obj/structure/cable{ + d1 = 2; + d2 = 4; + icon_state = "2-4" }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) "DY" = ( /obj/structure/railing{ dir = 4 @@ -19793,17 +19411,17 @@ /turf/simulated/floor, /area/maintenance/station/exploration) "Ea" = ( -/obj/machinery/door/firedoor/glass, -/obj/machinery/door/airlock/maintenance/common, -/obj/structure/cable{ - d1 = 1; - d2 = 2; - icon_state = "1-2"; - pixel_y = 0 +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/structure/catwalk, -/turf/simulated/floor, -/area/maintenance/station/exploration) +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/machinery/camera/network/civilian{ + dir = 9 + }, +/turf/simulated/floor/tiled/dark, +/area/tether/station/public_meeting_room) "Eb" = ( /obj/structure/ladder/up, /turf/simulated/floor, @@ -19882,30 +19500,14 @@ /turf/simulated/floor/tiled, /area/tether/exploration/crew) "Ei" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8; - icon_state = "borderfloor"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/purple/border{ - icon_state = "bordercolor"; +/obj/machinery/atmospherics/portables_connector{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/machinery/camera/network/exploration{ - dir = 4 - }, -/obj/machinery/photocopier, -/turf/simulated/floor/tiled, -/area/tether/exploration/crew) +/obj/machinery/portable_atmospherics/canister/air/airlock, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/camera/network/command, +/turf/simulated/floor/tiled/dark, +/area/ai_monitored/storage/eva) "Ej" = ( /obj/effect/floor_decal/rust, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -20152,17 +19754,12 @@ /turf/simulated/floor, /area/maintenance/station/sec_lower) "EE" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 5 - }, -/obj/effect/floor_decal/corner/yellow/border{ - dir = 5 - }, -/obj/machinery/camera/network/engineering{ +/obj/effect/floor_decal/corner/white/border{ dir = 8 }, -/turf/simulated/floor/tiled, -/area/engineering/foyer_mezzenine) +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled/monotile, +/area/security/brig) "EF" = ( /obj/structure/cable/green{ d1 = 4; @@ -20256,23 +19853,16 @@ /turf/simulated/floor/tiled/white, /area/medical/exam_room) "EM" = ( -/obj/machinery/power/apc{ - dir = 4; - name = "east bump"; - pixel_x = 28 +/obj/effect/floor_decal/industrial/warning{ + dir = 8 }, -/obj/structure/cable/green, -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/effect/decal/cleanable/dirt, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 6 - }, -/obj/effect/floor_decal/corner/pink/border{ - dir = 6 - }, -/turf/simulated/floor/tiled/white, -/area/medical/exam_room) +/turf/simulated/floor/tiled, +/area/security/brig) "EN" = ( /obj/structure/table/glass, /obj/item/weapon/paper_bin{ @@ -20303,25 +19893,24 @@ /turf/simulated/floor/tiled/white, /area/medical/ward) "EP" = ( -/obj/structure/bed/padded, -/obj/item/weapon/bedsheet/medical, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/ward) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/brig/visitation) "EQ" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20447,6 +20036,10 @@ icon_state = "1-4" }, /obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/security/brig/visitation) "Fa" = ( @@ -20460,12 +20053,12 @@ /turf/simulated/floor/tiled/white, /area/medical/ward) "Fb" = ( -/obj/effect/floor_decal/industrial/warning{ - dir = 8 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled, -/area/security/brig) +/area/security/brig/visitation) "Fc" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/medical, @@ -20586,6 +20179,163 @@ }, /turf/simulated/floor/tiled/white, /area/medical/resleeving) +"Fk" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/machinery/status_display{ + pixel_y = 30 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) +"Fl" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) +"Fm" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) +"Fn" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 10 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) +"Fo" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/port) +"Fp" = ( +/obj/structure/cable{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/effect/floor_decal/borderfloor/corner{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "Fq" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -20605,6 +20355,14 @@ /obj/structure/table/steel, /turf/simulated/floor/tiled/freezer, /area/security/brig/bathroom) +"Fr" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "Fs" = ( /obj/effect/floor_decal/techfloor{ dir = 1 @@ -20622,6 +20380,26 @@ /obj/item/clothing/under/seromi/smock/medical, /turf/simulated/floor, /area/maintenance/station/sec_lower) +"Fu" = ( +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8"; + pixel_x = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/port) "Fv" = ( /obj/machinery/door/airlock/maintenance/common, /obj/machinery/door/firedoor/glass, @@ -20644,6 +20422,53 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor/tiled/steel_dirty, /area/security/brig) +"Fx" = ( +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ + scrub_id = "sec_riot_control" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/plating, +/area/security/brig) +"Fy" = ( +/obj/structure/closet/secure_closet/explorer, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/purple/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/exploration/equipment) +"Fz" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "FA" = ( /obj/structure/railing{ dir = 8 @@ -20654,6 +20479,28 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_lower) +"FB" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 4 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 9 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/starboard) "FC" = ( /obj/structure/table/rack{ dir = 8; @@ -20663,6 +20510,15 @@ /obj/random/maintenance/engineering, /turf/simulated/floor, /area/maintenance/station/sec_lower) +"FD" = ( +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_two) "FI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -20768,13 +20624,6 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_lower) -"Hg" = ( -/obj/machinery/keycard_auth{ - pixel_y = -28 - }, -/obj/structure/flora/pottedplant, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "Hq" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -21594,29 +21443,6 @@ }, /turf/simulated/floor/tiled, /area/security/brig/visitation) -"PP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/structure/disposalpipe/segment{ - dir = 1; - icon_state = "pipe-c" - }, -/obj/effect/decal/cleanable/dirt, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/brig) "PR" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -22145,16 +21971,6 @@ }, /turf/simulated/floor/carpet/bcarpet, /area/tether/station/public_meeting_room) -"Us" = ( -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/machinery/portable_atmospherics/powered/scrubber/huge/stationary{ - scrub_id = "sec_riot_control" - }, -/turf/simulated/floor/plating, -/area/security/brig) "UE" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ dir = 9 @@ -22376,17 +22192,6 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/sec_lower) -"Wk" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled, -/area/security/security_cell_hallway) "Ww" = ( /obj/effect/floor_decal/rust, /obj/structure/closet, @@ -22454,12 +22259,6 @@ }, /turf/simulated/floor/tiled/white, /area/maintenance/station/sec_lower) -"Xd" = ( -/obj/machinery/light{ - dir = 1 - }, -/turf/simulated/floor/wood, -/area/bridge/meeting_room) "Xk" = ( /obj/structure/table/steel, /obj/item/device/flashlight/lamp{ @@ -22595,30 +22394,6 @@ }, /turf/simulated/floor/tiled/dark, /area/security/brig) -"XX" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 6 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/turf/simulated/floor/tiled, -/area/security/brig/visitation) -"Yc" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/tether/station/public_meeting_room) "Yd" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -28191,7 +27966,7 @@ aP lv ej mE -nu +pA nY aP pd @@ -28465,7 +28240,7 @@ bW fX gs gS -ho +hZ hL iq iZ @@ -28475,7 +28250,7 @@ kK lx mg mG -nv +pN nZ oa kJ @@ -29023,12 +28798,12 @@ ch ch af RE -XX +EP PM an EZ Ix -Dq +BV dx fX gw @@ -29328,7 +29103,7 @@ lA ml mK nz -od +qI oL kJ pJ @@ -29448,7 +29223,7 @@ ax Za Fq af -di +cG do dt af @@ -29592,7 +29367,7 @@ bj af aq cp -BV +Fb af bN ep @@ -29603,7 +29378,7 @@ gw gw gw hP -iw +Dm jb jF fX @@ -29611,7 +29386,7 @@ ac ac kf mM -mO +pf oe oM oM @@ -29873,7 +29648,7 @@ ah aA MC HH -PP +cD Qy cr Lx @@ -29884,7 +29659,7 @@ eS fD Pm aS -Us +Fx Op hQ iu @@ -29909,7 +29684,7 @@ sw sw uQ vp -vP +FD sw ac ac @@ -30153,7 +29928,7 @@ at UO XH aS -ak +EE aB ak bm @@ -30186,20 +29961,20 @@ oM pK qp re -rP +vP sw te te te te vr -vQ +vJ sw uu vC wl wM -xi +xK xO vT aP @@ -30308,7 +30083,7 @@ bw bD bF ZH -Fb +EM Rq cs cu @@ -30736,7 +30511,7 @@ aS Ld Ui aS -Wk +gW Eu dR aJ @@ -31030,15 +30805,15 @@ TY TY kj kf -EE +od nD oj oN -pf +qx pM qt rj -rW +rV KI qH rp @@ -31049,7 +30824,7 @@ Yf vT uA vU -wt +xo xa xk xS @@ -31304,7 +31079,7 @@ aS bq fZ aS -gW +hn ht hV hV @@ -31314,8 +31089,8 @@ ki kU lD mp -mR -nF +ov +oy ok oO mp @@ -31456,9 +31231,9 @@ hr kV lE mq -mS -nF -jL +ow +oz +oV oP pg hr @@ -31584,7 +31359,7 @@ QH ds dT Vm -fc +fh fI ga cq @@ -31600,18 +31375,18 @@ lF mr mT nG -ol -mS ph +mS +DO hr -qx +Fu Vw Xq TO Do VK Gf -Yc +Ea LL po po @@ -31742,11 +31517,11 @@ lG ms mU nH -om -oQ pi -pN -qy +qG +DQ +DT +DX rm fJ oX @@ -31756,7 +31531,7 @@ KI KI KI po -tw +wt uU vX wv @@ -31888,11 +31663,11 @@ fq jj pj kj -qz +rW rk fM pn -qI +sq rq rA sh @@ -31903,7 +31678,7 @@ tK tK ww xb -xo +ya xZ yY An @@ -32016,7 +31791,7 @@ gb gE fb WL -hZ +iw fd fN jQ @@ -32030,7 +31805,7 @@ fq jj kj pO -qA +Fk ei fO pn @@ -32143,17 +31918,17 @@ PV RS aj lp -cD +aI aj lp -cD +aI cA as az -aI +fc Kv fd -fL +Mp gc Mp fe @@ -32172,7 +31947,7 @@ fq jL kj pP -qB +Fl ev fO pn @@ -32314,7 +32089,7 @@ fq oR kj eJ -pQ +Fm eU uz po @@ -32346,7 +32121,7 @@ Cs CJ CS De -EM +wU BF aa aa @@ -32456,7 +32231,7 @@ fq oS kj eN -pR +Fn eX fO pp @@ -32464,7 +32239,7 @@ qL ru rD pp -sH +tt tq tO uZ @@ -32598,13 +32373,13 @@ fq kj kj pO -qC +Fo fp fQ pq qM rv -rZ +sH pp sI po @@ -32619,7 +32394,7 @@ zf xw xw zY -rv +Dr rv AK Ba @@ -32740,7 +32515,7 @@ on oT pk pT -qF +Fp fG gx pr @@ -32754,7 +32529,7 @@ tQ vb wb wC -xc +xG wb yf tQ @@ -32864,7 +32639,7 @@ de de eB Eh -Ei +fL gz gN hI @@ -32873,7 +32648,7 @@ iY ke ky ea -la +kx lJ lJ lJ @@ -32882,7 +32657,7 @@ lJ oU pl lK -qG +Fr fH op ps @@ -33020,11 +32795,11 @@ lJ lJ lJ nL -go -oV pm -pU -pU +DJ +DS +DV +FB pU oW pt @@ -33033,7 +32808,7 @@ ry sc pp sj -tt +vQ tS vc wd @@ -33162,7 +32937,7 @@ hy hy hC nM -ow +pQ DL DL DL @@ -33198,7 +32973,7 @@ Cw Fi CW Dp -EP +Dk EV Fc BL @@ -33304,7 +33079,7 @@ lJ mu mW nN -ot +pQ DL ac ac @@ -33316,7 +33091,7 @@ pV pV pV sk -sN +tY tu tU vd @@ -33427,7 +33202,7 @@ RS xy cY bA -cG +di dy dm eF @@ -33437,7 +33212,7 @@ Ek gZ bA iy -jm +jK kn kn ea @@ -33446,7 +33221,7 @@ lJ lJ mW nN -ot +pQ DL ac ac @@ -33588,7 +33363,7 @@ lJ lJ mW nN -ot +pQ DL ac ac @@ -33730,7 +33505,7 @@ lM mv mX nO -oq +pR DL ac ac @@ -33872,7 +33647,7 @@ kp kp mY nQ -os +qy DL ac ac @@ -33886,12 +33661,12 @@ pV so ti tu -tY +xc Fj wi wI xf -xG +ys yx zm Fg @@ -34014,7 +33789,7 @@ yA kp mZ nN -ot +pQ DL ac ac @@ -34156,7 +33931,7 @@ yH kp na nN -ou +qz DL ac ac @@ -34298,7 +34073,7 @@ zA kp nb nN -ov +qA DL ac ac @@ -34306,7 +34081,7 @@ ac ac uW qE -ro +sN rz sf sE @@ -34440,7 +34215,7 @@ zA kp li nN -ow +pQ DL ac ac @@ -34456,11 +34231,11 @@ uW tu tu vx -wo -wo -wo -wo -yB +yJ +yJ +yJ +yJ +wT sB ac ac @@ -34578,11 +34353,11 @@ ks Es El pF -As +Fy kp nc nN -ot +pQ DL ac ac @@ -34598,10 +34373,10 @@ ac tu uq vy -wo -yh -yh -wo +yJ +eT +eT +yJ yC sB ac @@ -34712,7 +34487,7 @@ eW fC eb eb -hn +ho cZ iy jx @@ -34724,7 +34499,7 @@ As kp nh nN -ot +Fz DL ac ac @@ -34740,10 +34515,10 @@ ac tu ur vz -wo -yh -yh -wo +yJ +eT +eT +yJ yD sB ac @@ -34859,14 +34634,14 @@ cZ iJ jy kp -ya +kc lk pF As kp nh nR -ot +pQ DL ac ac @@ -34882,10 +34657,10 @@ ac tu us vA -wo -yi -yK -wo +yJ +eT +eT +yJ yE sB ac @@ -34998,7 +34773,7 @@ gj gL hB cZ -iK +iB jo kp lq @@ -35006,9 +34781,9 @@ lY qb Bt kp -ng +nh nR -ot +pQ DL ac ac @@ -35024,10 +34799,10 @@ ac tu ut vB -wo +yJ eT -yK -wo +eT +yJ yF sB ac @@ -35150,7 +34925,7 @@ kt kt WG nR -ot +pQ DL ac ac @@ -35166,10 +34941,10 @@ sF sF sF sF -wo -yj -yL -wo +yJ +eT +eT +yJ yG sB ac @@ -35292,7 +35067,7 @@ BU kt nh nR -ot +pQ dA dA dA @@ -35308,10 +35083,10 @@ vF wn wP xr -xJ -yk -yM -zb +wQ +wR +wR +wS yI sB ac @@ -35434,7 +35209,7 @@ Cm kt ni nV -ox +qB eh pv qa @@ -35447,13 +35222,13 @@ uc pv pv vG -wo -wo -wo -wo -yl -xh -wo +yJ +yJ +yJ +yJ +eT +eT +yJ yJ yJ ac @@ -35576,7 +35351,7 @@ Cn kt nh nR -oy +qC oY oY oY @@ -35589,15 +35364,15 @@ oY oY oY oY -wo -wQ -xs -xK -ym -yO -wV -zG -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ ac ac ac @@ -35714,11 +35489,11 @@ kt lO mz qZ -Dh +la kt nh nR -oy +qC oY pw er @@ -35731,15 +35506,15 @@ ud uE vi oY -wo -wR -wV -wV -yn -yO -wV -yN -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ ac ac ac @@ -35860,7 +35635,7 @@ kt kt nh nR -oy +qC oY pw qc @@ -35873,15 +35648,15 @@ qc qc qc oY -wo -wS -wV -wV -yn -yO -wV -yT -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ ac ac ac @@ -36002,7 +35777,7 @@ DZ bg nk nR -oy +qC oY px qd @@ -36015,16 +35790,16 @@ ue uF tD oY -wo -wT -xt -xL -yo -yP -xN -yU -wo -wo +yJ +eT +eT +eT +eT +eT +eT +eT +yJ +yJ ac ac ac @@ -36131,20 +35906,20 @@ ko lR hg mB -DJ -DQ -ko -ko -DS -DT -DV -DX -DT -DT -Ea +mR +nF nI +nI +ol +om oo -oz +oq +om +om +os +ox +oQ +qF oZ py qe @@ -36154,19 +35929,19 @@ qe sP ty qe -uG +tw vj vH -wo -wU -wV -xM -yp -yQ -zc -wV -wV -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36272,8 +36047,8 @@ bg ll bg bg +hm nr -DO dZ dZ dZ @@ -36299,16 +36074,16 @@ qc pz qc vI -wo -wV -wV -xM -yq -yR -zc -wV -wV -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36413,7 +36188,7 @@ by bg Eb bg -hm +go ib jz dZ @@ -36430,7 +36205,7 @@ kG kY le pb -pA +ro qf qS rI @@ -36440,17 +36215,17 @@ tA uf pz qc -vJ -wo -wW -wV -xN -yr -yS -xN -wV -wV -wo +uG +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36561,12 +36336,12 @@ dZ dZ ie iQ -jU +iK dZ hh mV rf -Dk +ng hh lm lJ @@ -36583,16 +36358,16 @@ ug pB qg vK -wo -Xd -wV -wV -wV -wV -wV -wV -yU -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36696,7 +36471,7 @@ aP aP dZ ek -fh +fE fE gk dZ @@ -36718,23 +36493,23 @@ pC qh qU rK -sq +rZ sS tC uh uH vk vL -wo -wX -wV -wV -ys -wV -wV -wV -Hg -wo +yJ +eT +eT +eT +eT +eT +eT +eT +eT +yJ aP aP aP @@ -36868,15 +36643,15 @@ uI tD oY oY -wY -wY -wY -wY -wY -wY -wY -wY wo +wo +wo +wo +wo +wo +wo +wo +yJ aP aP aP @@ -36992,7 +36767,7 @@ kv hA ne sV -Dm +nu hA Dt nU @@ -37152,11 +36927,11 @@ uK qc vl oY -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab aa aa aP @@ -37272,11 +37047,11 @@ hG ii iV ka -kx +jU lS nj sV -Dr +Dq DH Dv lJ @@ -37294,11 +37069,11 @@ uL oY oY oY -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab aa aa aa @@ -37434,13 +37209,13 @@ ef oY uM oY -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -37571,18 +37346,18 @@ ac ac aa oY -sX +Ei sX oY uN oY -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -37697,12 +37472,12 @@ dZ dZ ij iW -kc +jm dZ hl np xX -Dz +nv hl ac ac @@ -37718,13 +37493,13 @@ oY oY uO oY -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab aa aa aa @@ -37857,16 +37632,16 @@ aa aa aa aa -aa -aa -aa -aa -aa -aa -aa -aa -aa -aa +ab +ab +ab +ab +ab +ab +ab +ab +ab +ab aa aa aa diff --git a/maps/tether/tether-07-station3.dmm b/maps/tether/tether-07-station3.dmm index 4d39371332..10c16b0e97 100644 --- a/maps/tether/tether-07-station3.dmm +++ b/maps/tether/tether-07-station3.dmm @@ -167,12 +167,21 @@ /turf/simulated/floor/tiled, /area/security/briefing_room) "ar" = ( -/obj/structure/table/woodentable, -/obj/machinery/photocopier/faxmachine{ - department = "Head of Security" +/obj/machinery/atmospherics/pipe/manifold/hidden{ + dir = 8; + icon_state = "map" }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hos) +/obj/machinery/meter{ + frequency = 1443; + id = "dist_aux_meter"; + name = "Distribution Loop" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/eva) "as" = ( /obj/machinery/door/firedoor/glass, /obj/machinery/door/airlock/glass_security{ @@ -225,20 +234,19 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads/hos) "aw" = ( -/obj/machinery/door/window/northright, -/obj/effect/floor_decal/industrial/outline/yellow, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; +/obj/effect/floor_decal/borderfloor{ + dir = 1; pixel_y = 0 }, -/turf/simulated/floor/tiled/dark, -/area/security/range) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/structure/table/reinforced, +/obj/item/device/suit_cooling_unit, +/obj/item/device/suit_cooling_unit, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/eva) "ax" = ( /obj/machinery/access_button{ command = "cycle_interior"; @@ -384,14 +392,15 @@ /turf/simulated/floor/tiled, /area/security/hallway) "aH" = ( -/obj/machinery/camera/network/security{ - dir = 1 +/obj/effect/floor_decal/borderfloorblack{ + dir = 9 }, /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 + dir = 4 }, -/turf/simulated/floor/tiled, -/area/security/eva) +/obj/structure/table/rack/steel, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) "aI" = ( /turf/simulated/wall, /area/maintenance/station/sec_upper) @@ -653,20 +662,20 @@ /turf/simulated/floor/tiled/dark, /area/security/range) "bb" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden{ - dir = 8; - icon_state = "map" +/obj/machinery/door/window/northright, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/item/device/radio/intercom/department/security{ + dir = 4; + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 }, -/obj/machinery/meter{ - frequency = 1443; - id = "dist_aux_meter"; - name = "Distribution Loop" +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/machinery/camera/network/engineering{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/security/eva) +/turf/simulated/floor/tiled/dark, +/area/security/range) "bc" = ( /turf/simulated/wall, /area/security/eva) @@ -689,6 +698,10 @@ /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 1 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) "bh" = ( @@ -704,6 +717,10 @@ /obj/effect/floor_decal/borderfloorblack/corner2{ dir = 4 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled/dark, /area/security/armory/red) "bj" = ( @@ -759,10 +776,6 @@ /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, /obj/machinery/light_switch{ dir = 4; icon_state = "light1"; @@ -992,6 +1005,7 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/camera/network/engineering, /turf/simulated/floor, /area/maintenance/substation/security) "bB" = ( @@ -1128,16 +1142,15 @@ /turf/simulated/floor/tiled, /area/security/hallwayaux) "bL" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallwayaux) +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "bM" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -1205,20 +1218,23 @@ /turf/simulated/floor/tiled/dark, /area/security/armory/blue) "bS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 +/obj/effect/floor_decal/borderfloorblack, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 9 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 +/obj/structure/table/steel, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/photocopier, -/obj/machinery/camera/network/security, -/obj/machinery/alarm{ - pixel_y = 22 +/obj/machinery/button/remote/blast_door{ + id = "armoryred"; + name = "Red Armory Access"; + pixel_x = 8; + pixel_y = -24; + req_access = list(3) }, /turf/simulated/floor/tiled/dark, -/area/security/warden) +/area/security/armory/red) "bT" = ( /obj/structure/table/steel, /obj/machinery/cell_charger, @@ -1505,6 +1521,10 @@ "cm" = ( /obj/effect/floor_decal/borderfloorblack/full, /obj/structure/closet/bombcloset/double, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/security/armory/blue) "cn" = ( @@ -1541,15 +1561,11 @@ /turf/simulated/floor/tiled, /area/security/hallwayaux) "cp" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/exploration, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/turf/simulated/floor/tiled, +/area/security/eva) "cq" = ( /obj/random/trash_pile, /obj/effect/decal/cleanable/cobweb{ @@ -2103,12 +2119,15 @@ /turf/simulated/floor/carpet, /area/security/breakroom) "du" = ( -/obj/structure/disposalpipe/trunk{ - dir = 1 +/obj/effect/landmark{ + name = "tripai" }, -/obj/machinery/disposal, -/turf/simulated/floor/wood, -/area/security/breakroom) +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/bluegrid, +/area/ai) "dv" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -2416,13 +2435,19 @@ /turf/simulated/floor, /area/maintenance/cargo) "dU" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/exploration{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/photocopier, +/obj/machinery/alarm{ + pixel_y = 22 + }, +/turf/simulated/floor/tiled/dark, +/area/security/warden) "dV" = ( /turf/simulated/wall/r_wall, /area/maintenance/station/ai) @@ -2599,16 +2624,8 @@ "ej" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 - }, -/obj/machinery/firealarm{ - dir = 1; - pixel_x = 0; - pixel_y = -24 - }, -/obj/machinery/camera/network/security{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 5 }, /turf/simulated/floor/tiled, /area/security/hallwayaux) @@ -2639,25 +2656,51 @@ /turf/simulated/floor/wood, /area/security/breakroom) "em" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/exploration{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 2; +/obj/structure/cable{ + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/turf/simulated/floor/bluegrid, +/area/ai) "en" = ( -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/effect/floor_decal/borderfloorblack{ + dir = 4 }, -/turf/simulated/floor/wood, -/area/security/breakroom) +/obj/effect/floor_decal/corner/blue/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloorblack/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/blue/bordercorner2{ + dir = 5 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/stunshells{ + pixel_x = 3; + pixel_y = 3 + }, +/obj/item/weapon/storage/box/flashshells{ + pixel_x = 1; + pixel_y = 0 + }, +/obj/item/weapon/storage/box/beanbags{ + pixel_x = 4; + pixel_y = -5 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/machinery/button/remote/blast_door{ + id = "armoryblue"; + name = "Blue Armory Access"; + pixel_x = 24; + pixel_y = -8; + req_access = list(3) + }, +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) "eo" = ( /obj/effect/floor_decal/borderfloor{ dir = 4 @@ -2684,10 +2727,18 @@ /turf/simulated/floor/tiled/dark, /area/security/security_lockerroom) "er" = ( -/obj/structure/shuttle/engine/propulsion, -/turf/simulated/floor/reinforced, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/excursion/tether) +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 1 + }, +/obj/machinery/firealarm{ + dir = 1; + pixel_x = 0; + pixel_y = -24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "es" = ( /obj/effect/decal/cleanable/dirt, /obj/structure/railing{ @@ -2798,6 +2849,10 @@ dir = 8 }, /obj/machinery/vending/snack, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/security/hallwayaux) "eB" = ( @@ -3542,37 +3597,17 @@ /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) "fJ" = ( -/obj/structure/window/reinforced{ - dir = 4 +/obj/effect/floor_decal/borderfloorblack{ + dir = 6 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 5 +/obj/effect/floor_decal/borderfloorblack/corner2, +/obj/structure/table/rack/shelf/steel, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/corner/white/border{ - dir = 5 - }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 5 - }, -/obj/effect/floor_decal/corner/white/bordercorner2{ - icon_state = "bordercolorcorner2"; - dir = 5 - }, -/obj/structure/table/reinforced, -/obj/machinery/computer/med_data/laptop, -/obj/machinery/camera/network/security, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 24 - }, -/obj/structure/cable/green{ - d2 = 2; - icon_state = "0-2" - }, -/turf/simulated/floor/tiled/white, -/area/security/forensics) +/turf/simulated/floor/tiled/dark, +/area/security/armory/blue) "fK" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -3719,32 +3754,11 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "fU" = ( -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 1 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) +/turf/simulated/floor/bluegrid, +/area/ai) "fV" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 @@ -3842,6 +3856,10 @@ /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/white/border, /obj/machinery/dnaforensics, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/security/forensics) "gd" = ( @@ -4307,16 +4325,14 @@ /turf/simulated/floor/tiled, /area/security/eva) "gX" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 - }, -/obj/effect/floor_decal/corner/red/border{ +/obj/effect/decal/cleanable/dirt, +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 1 }, -/obj/structure/table/reinforced, -/obj/item/device/suit_cooling_unit, -/obj/item/device/suit_cooling_unit, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled, /area/security/eva) "gY" = ( @@ -4371,16 +4387,13 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/tether) "hd" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 9 +/obj/structure/table/woodentable, +/obj/machinery/photocopier/faxmachine{ + department = "Head of Security" }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 4 - }, -/obj/structure/table/rack/steel, /obj/machinery/camera/network/security, -/turf/simulated/floor/tiled/dark, -/area/security/armory/blue) +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) "he" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -4601,12 +4614,19 @@ /area/security/armory/blue) "hC" = ( /obj/effect/floor_decal/borderfloorblack{ - dir = 6 + dir = 8 + }, +/obj/structure/table/steel, +/obj/item/weapon/storage/box/flashbangs{ + pixel_x = -2; + pixel_y = -2 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/effect/floor_decal/borderfloorblack/corner2, -/obj/structure/table/rack/shelf/steel, /turf/simulated/floor/tiled/dark, -/area/security/armory/blue) +/area/security/security_equiptment_storage) "hD" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 10 @@ -4675,26 +4695,31 @@ /turf/simulated/floor/tiled/dark, /area/security/armory/red) "hH" = ( -/obj/effect/floor_decal/borderfloorblack, -/obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 9 - }, -/obj/structure/table/steel, /obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/camera/network/security{ dir = 1 }, -/obj/machinery/button/remote/blast_door{ - id = "armoryred"; - name = "Red Armory Access"; - pixel_x = 8; - pixel_y = -24; - req_access = list(3) +/obj/machinery/power/apc{ + dir = 2; + name = "south bump"; + pixel_y = -32 }, -/turf/simulated/floor/tiled/dark, -/area/security/armory/red) +/obj/structure/table/reinforced, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, +/obj/item/weapon/folder/red, +/obj/item/weapon/pen, +/obj/item/device/megaphone, +/obj/effect/floor_decal/borderfloor/shifted, +/obj/effect/floor_decal/corner/red/border/shifted, +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 10 + }, +/obj/structure/cable/green, +/turf/simulated/floor/tiled, +/area/security/observation) "hI" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -4779,21 +4804,46 @@ /turf/simulated/floor/tiled, /area/security/eva) "hQ" = ( -/obj/effect/decal/cleanable/dirt, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/suit_cycler/security, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, /turf/simulated/floor/tiled, /area/security/eva) "hR" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/obj/machinery/camera/network/command, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "hS" = ( /obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ @@ -4949,6 +4999,7 @@ d2 = 4; icon_state = "0-4" }, +/obj/machinery/camera/network/command, /turf/simulated/floor/bluegrid, /area/ai) "id" = ( @@ -5110,6 +5161,10 @@ name = "RED ARMORY"; pixel_y = 32 }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/dark, /area/security/warden) "ik" = ( @@ -5238,6 +5293,10 @@ d2 = 4; icon_state = "1-4" }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled, /area/security/hallway) "iq" = ( @@ -5709,13 +5768,10 @@ /turf/simulated/floor/tiled, /area/security/hallwayaux) "iS" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/security/hallwayaux) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/item/weapon/bone/skull/unathi, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) "iT" = ( /obj/effect/floor_decal/borderfloor{ dir = 6 @@ -5994,46 +6050,21 @@ /area/security/armory/blue) "jv" = ( /obj/effect/floor_decal/borderfloorblack{ - dir = 4 + dir = 5 }, -/obj/effect/floor_decal/corner/blue/border{ - dir = 4 +/obj/effect/floor_decal/corner/red/border{ + dir = 5 }, /obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 5 + dir = 4 }, -/obj/effect/floor_decal/corner/blue/bordercorner2{ - dir = 5 - }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/stunshells{ - pixel_x = 3; - pixel_y = 3 - }, -/obj/item/weapon/storage/box/flashshells{ - pixel_x = 1; - pixel_y = 0 - }, -/obj/item/weapon/storage/box/beanbags{ - pixel_x = 4; - pixel_y = -5 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/obj/machinery/button/remote/blast_door{ - id = "armoryblue"; - name = "Blue Armory Access"; - pixel_x = 24; - pixel_y = -8; - req_access = list(3) +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 4 }, +/obj/structure/closet/wardrobe/red, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, -/area/security/armory/blue) +/area/security/security_lockerroom) "jw" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -6874,20 +6905,15 @@ /turf/simulated/floor, /area/maintenance/station/sec_upper) "kK" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/effect/landmark{ + name = "tripai" }, -/obj/structure/table/steel, -/obj/item/weapon/storage/box/flashbangs{ - pixel_x = -2; - pixel_y = -2 - }, -/obj/machinery/camera/network/security{ +/obj/machinery/camera/network/command{ icon_state = "camera"; - dir = 4 + dir = 9 }, -/turf/simulated/floor/tiled/dark, -/area/security/security_equiptment_storage) +/turf/simulated/floor/bluegrid, +/area/ai) "kL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -6927,59 +6953,27 @@ /turf/simulated/floor/tiled, /area/security/observation) "kO" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/power/apc{ - dir = 2; - name = "south bump"; - pixel_y = -32 - }, -/obj/structure/table/reinforced, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 - }, -/obj/item/weapon/folder/red, -/obj/item/weapon/pen, -/obj/machinery/camera/network/security{ - dir = 1 - }, -/obj/item/device/megaphone, -/obj/effect/floor_decal/borderfloor/shifted, -/obj/effect/floor_decal/corner/red/border/shifted, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 10 - }, -/obj/structure/cable/green, -/turf/simulated/floor/tiled, -/area/security/observation) -"kP" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/machinery/atmospherics/unary/vent_pump/on{ dir = 8 }, -/obj/machinery/firealarm{ +/obj/item/device/radio/intercom/department/security{ dir = 4; - pixel_x = 24 + icon_state = "secintercom"; + pixel_x = 24; + pixel_y = 0 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/hos) +"kP" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/item/device/radio/intercom/department/security{ + dir = 2; + icon_state = "secintercom"; + pixel_y = -24 }, /turf/simulated/floor/tiled, -/area/security/hallwayaux) +/area/security/briefing_room) "kQ" = ( /obj/machinery/atmospherics/pipe/manifold/visible{ dir = 4 @@ -6997,11 +6991,15 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/tether) "kS" = ( -/obj/effect/landmark{ - name = "tripai" +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/camera/network/exploration, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "kT" = ( /obj/effect/floor_decal/techfloor, /obj/effect/floor_decal/techfloor{ @@ -7657,6 +7655,10 @@ /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 }, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/bluegrid, /area/ai) "lT" = ( @@ -7680,14 +7682,33 @@ /turf/simulated/floor/tiled/techfloor/grid, /area/ai) "lU" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/machinery/camera/network/command{ - dir = 1 +/obj/effect/floor_decal/corner/red/border{ + dir = 8 }, -/turf/simulated/floor/bluegrid, -/area/ai) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10; + icon_state = "borderfloorcorner2"; + pixel_x = 0 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 10 + }, +/obj/item/device/radio/intercom{ + dir = 8; + pixel_x = -24 + }, +/obj/structure/table/steel, +/obj/item/weapon/folder/red, +/obj/item/weapon/folder/red{ + pixel_x = 2; + pixel_y = 4 + }, +/obj/machinery/recharger, +/turf/simulated/floor/tiled, +/area/security/security_processing) "lV" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 5 @@ -7886,21 +7907,21 @@ /area/security/security_lockerroom) "mg" = ( /obj/effect/floor_decal/borderfloorblack{ - dir = 5 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 5 + dir = 8 }, /obj/effect/floor_decal/borderfloorblack/corner2{ - dir = 4 + icon_state = "borderfloorcorner2_black"; + dir = 8 }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 4 +/obj/structure/closet{ + name = "Evidence Closet" + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/structure/closet/wardrobe/red, -/obj/machinery/camera/network/security, /turf/simulated/floor/tiled/dark, -/area/security/security_lockerroom) +/area/security/evidence_storage) "mh" = ( /obj/machinery/door/firedoor/glass, /obj/structure/grille, @@ -8031,13 +8052,14 @@ /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "mu" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, /obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 8 + }, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 5 + }, /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "mv" = ( @@ -8160,17 +8182,36 @@ /turf/simulated/floor, /area/security/forensics) "mG" = ( -/obj/structure/railing{ - dir = 8 - }, -/obj/machinery/camera/network/security{ - dir = 1 - }, /obj/structure/window/reinforced{ - dir = 8 + dir = 4 }, -/turf/simulated/open, -/area/security/hallway) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/border{ + dir = 5 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 5 + }, +/obj/effect/floor_decal/corner/white/bordercorner2{ + icon_state = "bordercolorcorner2"; + dir = 5 + }, +/obj/structure/table/reinforced, +/obj/machinery/computer/med_data/laptop, +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 24 + }, +/obj/structure/cable/green{ + d2 = 2; + icon_state = "0-2" + }, +/turf/simulated/floor/tiled/white, +/area/security/forensics) "mH" = ( /turf/simulated/wall/r_wall, /area/security/hallway) @@ -8430,26 +8471,16 @@ /turf/simulated/floor/bluegrid, /area/ai_core_foyer) "nb" = ( -/obj/structure/table/standard, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" +/obj/structure/catwalk, +/obj/structure/cable{ + icon_state = "1-8" }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/stamp/denied{ - pixel_x = 4; - pixel_y = -2 - }, -/obj/item/weapon/stamp/cargo, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/maintenance/station/ai) "nc" = ( /obj/structure/cable{ d1 = 4; @@ -8519,16 +8550,10 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "nh" = ( -/obj/structure/table/standard, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/stamp{ - pixel_x = -3; - pixel_y = 3 - }, -/obj/item/weapon/hand_labeler, -/obj/item/weapon/folder/yellow, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/structure/shuttle/engine/propulsion, +/turf/simulated/floor/reinforced, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/excursion/tether) "ni" = ( /obj/structure/bookcase, /obj/item/weapon/book/manual/security_space_law, @@ -8726,11 +8751,36 @@ /turf/simulated/floor/tiled/monotile, /area/tether/exploration) "nA" = ( -/obj/machinery/camera/network/exploration{ - dir = 1 +/obj/effect/floor_decal/borderfloor{ + dir = 4 }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) +/obj/effect/floor_decal/corner/red/border{ + dir = 4 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 6 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 8 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/disposalpipe/segment, +/obj/structure/extinguisher_cabinet{ + dir = 8; + icon_state = "extinguisher_closed"; + pixel_x = 30 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) "nB" = ( /obj/structure/cable/green{ d1 = 1; @@ -8818,21 +8868,27 @@ /turf/simulated/floor/carpet, /area/crew_quarters/heads/hos) "nG" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/structure/cable/green{ + d2 = 4; + icon_state = "0-4" }, -/obj/item/device/radio/intercom/department/security{ - dir = 4; - icon_state = "secintercom"; - pixel_x = 24; - pixel_y = 0 +/obj/machinery/power/apc{ + dir = 1; + name = "north bump"; + pixel_x = 0; + pixel_y = 28 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/structure/cable/green{ + icon_state = "0-8" }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/hos) +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) "nH" = ( /obj/effect/floor_decal/borderfloorblack{ dir = 8 @@ -9353,6 +9409,7 @@ }, /obj/machinery/atmospherics/unary/vent_pump/on, /obj/machinery/computer/secure_data, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/security_processing) "oD" = ( @@ -9450,18 +9507,20 @@ /turf/simulated/floor/tiled, /area/security/briefing_room) "oK" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/item/device/radio/intercom/department/security{ - dir = 2; - icon_state = "secintercom"; - pixel_y = -24 +/obj/structure/table/standard, +/obj/item/weapon/hand_labeler, +/obj/item/weapon/stamp{ + pixel_x = -3; + pixel_y = 3 }, -/obj/machinery/camera/network/security{ - dir = 1 +/obj/item/weapon/hand_labeler, +/obj/item/weapon/folder/yellow, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" }, /turf/simulated/floor/tiled, -/area/security/briefing_room) +/area/quartermaster/storage) "oL" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/red/border, @@ -9848,37 +9907,18 @@ /turf/simulated/floor/tiled/dark, /area/security/evidence_storage) "pl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10; - icon_state = "borderfloorcorner2"; - pixel_x = 0 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 10 - }, -/obj/item/device/radio/intercom{ - dir = 8; - pixel_x = -24 - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/structure/table/steel, -/obj/item/weapon/folder/red, -/obj/item/weapon/folder/red{ - pixel_x = 2; - pixel_y = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/recharger, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/security/security_processing) +/area/quartermaster/office) "pm" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -10099,11 +10139,22 @@ /turf/simulated/floor/tiled, /area/security/hallway) "pH" = ( -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/red/border, -/obj/machinery/camera/network/security{ +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ dir = 1 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/security/hallway) "pI" = ( @@ -10325,22 +10376,16 @@ /turf/simulated/floor, /area/security/detectives_office) "qg" = ( -/obj/effect/floor_decal/borderfloorblack{ - dir = 8 +/obj/structure/table/woodentable, +/obj/item/device/taperecorder{ + pixel_x = -4; + pixel_y = 2 }, -/obj/effect/floor_decal/borderfloorblack/corner2{ - icon_state = "borderfloorcorner2_black"; - dir = 8 +/obj/item/device/radio/intercom/department/security{ + pixel_y = -24 }, -/obj/structure/closet{ - name = "Evidence Closet" - }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/evidence_storage) +/turf/simulated/floor/carpet, +/area/security/detectives_office) "qh" = ( /obj/effect/floor_decal/borderfloor{ dir = 8 @@ -10771,40 +10816,17 @@ /turf/simulated/floor/tiled, /area/security/hallway) "qS" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4 +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 9 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 8 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/disposalpipe/segment, +/obj/structure/closet/lawcloset, /obj/machinery/camera/network/security{ icon_state = "camera"; - dir = 8 + dir = 5 }, -/obj/structure/extinguisher_cabinet{ - dir = 8; - icon_state = "extinguisher_closed"; - pixel_x = 30 - }, -/turf/simulated/floor/tiled, -/area/security/hallway) +/turf/simulated/floor/tiled/dark, +/area/lawoffice) "qT" = ( /turf/simulated/floor, /area/maintenance/station/elevator) @@ -10849,18 +10871,16 @@ /turf/simulated/floor, /area/quartermaster/delivery) "qZ" = ( -/obj/structure/disposalpipe/segment{ - dir = 4; - icon_state = "pipe-c" - }, +/obj/structure/flora/pottedplant/stoutbush, /obj/effect/floor_decal/borderfloor{ - dir = 9 + dir = 5 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 9 + dir = 5 }, +/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/area/quartermaster/office) "ra" = ( /obj/structure/disposalpipe/sortjunction/untagged/flipped{ dir = 1 @@ -11398,28 +11418,20 @@ /turf/simulated/floor/tiled, /area/quartermaster/delivery) "rM" = ( -/obj/structure/cable/green{ - d2 = 4; - icon_state = "0-4" +/obj/effect/floor_decal/spline/plain{ + icon_state = "spline_plain"; + dir = 5 }, -/obj/machinery/power/apc{ - dir = 1; - name = "north bump"; - pixel_x = 0; - pixel_y = 28 +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ + dir = 8 }, -/obj/structure/cable/green{ - icon_state = "0-8" +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/machinery/camera/network/cargo, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/turf/simulated/floor/tiled/dark, +/area/lawoffice) "rN" = ( /obj/structure/cable/green{ d1 = 4; @@ -11528,73 +11540,38 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "rS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"rT" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 10 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4, -/turf/simulated/floor/tiled, -/area/quartermaster/office) -"rU" = ( -/obj/machinery/door/airlock/glass_mining{ - id_tag = "cargodoor"; - name = "Cargo Office"; - req_access = list(31); - req_one_access = list() +/obj/structure/railing{ + dir = 8 }, +/obj/structure/lattice, /obj/machinery/door/firedoor/glass, -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/disposalpipe/down{ + dir = 8 }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/office) +/turf/simulated/open, +/area/maintenance/station/ai) +"rT" = ( +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/ai) +"rU" = ( +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor, +/area/maintenance/station/ai) "rV" = ( -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" +/obj/structure/catwalk, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor{ - dir = 1 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/maintenance/station/ai) "rW" = ( /obj/effect/floor_decal/borderfloor/corner{ dir = 1 @@ -11614,16 +11591,19 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "rY" = ( -/obj/structure/flora/pottedplant/stoutbush, -/obj/machinery/camera/network/cargo, +/obj/structure/table/steel, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 + }, /obj/effect/floor_decal/borderfloor{ - dir = 5 + dir = 6 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 5 + dir = 6 }, /turf/simulated/floor/tiled, -/area/quartermaster/office) +/area/quartermaster/delivery) "rZ" = ( /obj/structure/noticeboard, /turf/simulated/wall, @@ -12003,6 +11983,10 @@ /obj/effect/floor_decal/corner/brown/bordercorner2{ dir = 9 }, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, /turf/simulated/floor/tiled, /area/quartermaster/office) "sD" = ( @@ -12024,22 +12008,28 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "sE" = ( -/obj/structure/disposalpipe/segment{ +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/structure/bed/chair{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/camera/network/cargo{ - dir = 1; - name = "security camera" - }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, /turf/simulated/floor/tiled, -/area/quartermaster/office) +/area/quartermaster/foyer) "sF" = ( /obj/structure/disposalpipe/segment{ dir = 4 @@ -12077,28 +12067,13 @@ /turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) "sH" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, +/obj/effect/floor_decal/rust, /obj/structure/disposalpipe/segment{ - dir = 4 + dir = 4; + icon_state = "pipe-c" }, -/obj/effect/floor_decal/borderfloor/corner{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/bordercorner{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/maintenance/station/ai) "sI" = ( /obj/structure/disposalpipe/segment{ dir = 2; @@ -12285,6 +12260,7 @@ icon_state = "pipe-j1"; dir = 4 }, +/obj/machinery/camera/network/security, /turf/simulated/floor/tiled, /area/security/hallway) "sY" = ( @@ -12352,25 +12328,12 @@ /turf/simulated/floor/tiled, /area/security/hallway) "tb" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 1; - pixel_y = 0 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/structure/disposalpipe/segment{ - dir = 4 - }, -/obj/machinery/camera/network/security, -/turf/simulated/floor/tiled, -/area/security/hallway) +/turf/simulated/mineral/floor/vacuum, +/area/security/nuke_storage) "tc" = ( /obj/effect/floor_decal/steeldecal/steel_decals4{ dir = 5 @@ -12677,6 +12640,9 @@ /obj/effect/floor_decal/corner/paleblue/bordercorner2{ dir = 9 }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled, /area/hallway/station/upper) "tu" = ( @@ -13394,33 +13360,14 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "uC" = ( -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/structure/catwalk, +/obj/effect/decal/cleanable/dirt, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/item/weapon/clipboard, -/obj/item/weapon/pen/red{ - pixel_x = 2; - pixel_y = 6 - }, -/obj/structure/table/standard, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/maintenance/station/ai) "uD" = ( /obj/structure/disposalpipe/segment, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -13865,25 +13812,13 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "vo" = ( -/obj/structure/bed/chair/office/dark{ - dir = 4 +/obj/random/trash, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" }, -/obj/effect/landmark/start{ - name = "Cargo Technician" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/maintenance/station/ai) "vp" = ( /obj/structure/disposalpipe/sortjunction{ dir = 1; @@ -13926,17 +13861,24 @@ /turf/simulated/wall, /area/lawoffice) "vv" = ( -/obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 9 +/obj/machinery/door/firedoor/glass/hidden/steel{ + dir = 2 }, -/obj/structure/closet/lawcloset, -/obj/machinery/camera/network/security{ - icon_state = "camera"; +/obj/structure/disposalpipe/segment{ dir = 4 }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) "vw" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; @@ -14055,20 +13997,17 @@ /turf/simulated/floor/tiled/dark, /area/lawoffice) "vD" = ( -/obj/effect/floor_decal/spline/plain{ - icon_state = "spline_plain"; - dir = 5 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/structure/disposalpipe/segment, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/turf/simulated/floor/tiled/dark, -/area/lawoffice) +/turf/simulated/floor/tiled, +/area/security/lobby) "vE" = ( /obj/effect/floor_decal/borderfloor{ dir = 9 @@ -14121,6 +14060,10 @@ dir = 5 }, /obj/machinery/computer/security, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 + }, /turf/simulated/floor/tiled, /area/security/lobby) "vH" = ( @@ -14310,23 +14253,37 @@ /turf/simulated/floor/tiled, /area/quartermaster/delivery) "vY" = ( -/obj/structure/table/steel, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 }, -/obj/machinery/camera/network/cargo{ - dir = 1; - name = "security camera" +/obj/machinery/newscaster{ + layer = 3.3; + pixel_x = -27; + pixel_y = 0 }, /obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 8 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 6 }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 6 +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 5 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 8 }, /turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/area/hallway/station/upper) "vZ" = ( /obj/effect/floor_decal/industrial/outline/yellow, /turf/simulated/floor/tiled, @@ -14338,22 +14295,9 @@ /turf/simulated/floor/plating, /area/quartermaster/office) "wb" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/machinery/computer/supplycomp/control{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, +/area/maintenance/station/ai) "wc" = ( /obj/machinery/hologram/holopad, /turf/simulated/floor/tiled, @@ -14605,47 +14549,28 @@ /turf/simulated/floor/plating, /area/quartermaster/delivery) "wE" = ( -/obj/structure/table/steel_reinforced, -/obj/item/weapon/folder/yellow, -/obj/item/weapon/pen{ - pixel_x = 4; - pixel_y = 4 +/obj/structure/cable/green{ + icon_state = "32-2" }, -/obj/machinery/door/window/northright{ - name = "Mailing Room"; - req_access = list(50) - }, -/obj/machinery/door/firedoor/border_only, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/delivery) +/obj/structure/lattice, +/obj/machinery/atmospherics/pipe/zpipe/down/supply, +/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, +/obj/machinery/door/firedoor/glass, +/turf/simulated/open, +/area/tether/exploration) "wF" = ( -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 +/obj/effect/floor_decal/corner/lightgrey{ + dir = 9 }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ +/obj/effect/floor_decal/corner/lightgrey{ dir = 6 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/structure/bed/chair{ - dir = 4 +/obj/structure/table/bench/standard, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 9 }, /turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/area/hallway/station/upper) "wG" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ dir = 4 @@ -14669,29 +14594,12 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "wJ" = ( -/obj/structure/filingcabinet/filingcabinet, -/obj/machinery/light{ - icon_state = "tube1"; - dir = 8 +/obj/machinery/door/airlock/maintenance/cargo{ + req_access = list(50); + req_one_access = list(48) }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/brown/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 10 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 10 - }, -/turf/simulated/floor/tiled, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor, /area/quartermaster/office) "wK" = ( /obj/structure/table/standard, @@ -14711,11 +14619,16 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "wL" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior South" +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 }, -/turf/simulated/mineral/floor/vacuum, -/area/security/nuke_storage) +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) "wM" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on, /obj/structure/table/reinforced, @@ -14915,25 +14828,25 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "xc" = ( -/obj/machinery/door/firedoor/glass/hidden/steel{ - dir = 2 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/extinguisher_cabinet{ + pixel_x = -27 }, -/obj/machinery/camera/network/tether, -/obj/effect/floor_decal/borderfloor{ - dir = 1 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 5 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 8 }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/hallway/station/upper) +/area/quartermaster/office) "xd" = ( /obj/structure/cable{ icon_state = "1-2" @@ -15011,17 +14924,11 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "xg" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/structure/table/bench/wooden, +/obj/machinery/camera/network/tether{ dir = 1 }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/wood, /area/hallway/station/upper) "xh" = ( /obj/structure/sign/directions/cargo{ @@ -15174,19 +15081,20 @@ /area/quartermaster/office) "xq" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/effect/floor_decal/borderfloor{ dir = 1 }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/structure/disposalpipe/segment{ + dir = 1; + icon_state = "pipe-c" + }, /turf/simulated/floor/tiled, /area/quartermaster/office) "xr" = ( @@ -15248,12 +15156,24 @@ /turf/simulated/wall/r_wall, /area/security/nuke_storage) "xx" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior North"; +/obj/effect/floor_decal/borderfloor{ dir = 1 }, -/turf/simulated/mineral/floor/vacuum, -/area/security/nuke_storage) +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/item/device/radio/intercom{ + dir = 1; + name = "Station Intercom (General)"; + pixel_y = 21 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) "xy" = ( /obj/effect/floor_decal/spline/plain{ icon_state = "spline_plain"; @@ -15443,21 +15363,31 @@ /turf/simulated/floor/tiled, /area/security/lobby) "xM" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 4 }, -/obj/structure/disposalpipe/segment, -/obj/machinery/firealarm{ - dir = 4; - pixel_x = 24 +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 1 }, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 +/obj/effect/floor_decal/corner/red/bordercorner2{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 }, /turf/simulated/floor/tiled, -/area/security/lobby) +/area/hallway/station/upper) "xN" = ( /obj/structure/lattice, /obj/machinery/door/firedoor/glass, @@ -15483,40 +15413,14 @@ /turf/simulated/floor, /area/maintenance/station/elevator) "xP" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/table/standard, +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/obj/machinery/newscaster{ - layer = 3.3; - pixel_x = -27; - pixel_y = 0 - }, -/obj/machinery/camera/network/tether{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloor{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/border{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 8 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 8 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) +/obj/item/device/megaphone, +/turf/simulated/floor/wood, +/area/quartermaster/qm) "xQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -15662,32 +15566,24 @@ /area/quartermaster/office) "ye" = ( /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/structure/cable/green{ - d1 = 2; + d1 = 4; d2 = 8; - icon_state = "2-8" + icon_state = "4-8" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 4; - icon_state = "2-4" +/obj/machinery/atmospherics/unary/vent_scrubber/on, +/obj/effect/floor_decal/borderfloor{ + dir = 1 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 10 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 1 - }, /turf/simulated/floor/tiled, /area/quartermaster/office) "yf" = ( @@ -15964,19 +15860,12 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "yB" = ( -/obj/effect/floor_decal/corner/lightgrey{ - dir = 9 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 8 }, -/obj/effect/floor_decal/corner/lightgrey{ - dir = 6 - }, -/obj/machinery/camera/network/tether, -/obj/structure/table/bench/standard, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/hallway/station/upper) +/turf/space, +/area/security/nuke_storage) "yC" = ( /obj/effect/floor_decal/corner/lightgrey{ dir = 6 @@ -16203,19 +16092,15 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "yR" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/turf/simulated/floor/tiled/dark, +/area/security/nuke_storage) "yS" = ( /obj/effect/floor_decal/borderfloor, /obj/effect/floor_decal/corner/brown/border, @@ -16283,48 +16168,36 @@ /turf/simulated/floor/tiled, /area/quartermaster/foyer) "yY" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" }, /obj/effect/floor_decal/borderfloor{ - dir = 6 + dir = 9 }, /obj/effect/floor_decal/corner/brown/border{ - dir = 6 + dir = 9 }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/brown/bordercorner2{ - dir = 6 - }, -/obj/structure/closet/emcloset, +/obj/machinery/camera/network/cargo, /turf/simulated/floor/tiled, -/area/quartermaster/foyer) +/area/quartermaster/delivery) "yZ" = ( +/obj/machinery/door/airlock/glass_mining{ + id_tag = "cargodoor"; + name = "Cargo Office"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/structure/extinguisher_cabinet{ - pixel_x = -27 +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Office South"; - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 5 - }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 8 - }, -/turf/simulated/floor/tiled, +/turf/simulated/floor/tiled/steel_grid, /area/quartermaster/office) "za" = ( /obj/structure/disposalpipe/segment, @@ -16337,20 +16210,15 @@ /turf/simulated/floor/tiled, /area/quartermaster/office) "zb" = ( -/obj/structure/table/standard, -/obj/machinery/light_switch{ - pixel_x = -12; - pixel_y = -24 +/obj/machinery/conveyor{ + dir = 1; + id = "packageSort1" }, -/obj/item/device/retail_scanner/civilian{ - dir = 1 +/obj/machinery/camera/network/cargo{ + dir = 4 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/brown/border, -/obj/effect/floor_decal/borderfloor/corner2, -/obj/effect/floor_decal/corner/brown/bordercorner2, -/turf/simulated/floor/tiled, -/area/quartermaster/office) +/turf/simulated/floor, +/area/quartermaster/delivery) "zc" = ( /obj/structure/table/standard, /obj/item/weapon/hand_labeler, @@ -16829,21 +16697,28 @@ /turf/simulated/wall, /area/quartermaster/storage) "zP" = ( -/obj/machinery/door/airlock/glass_mining{ - name = "Cargo Bay"; - req_access = list(31); - req_one_access = list() - }, -/obj/machinery/door/firedoor/glass, -/obj/structure/disposalpipe/segment, /obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled/steel_grid, +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment{ + dir = 2; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, /area/quartermaster/office) "zQ" = ( /obj/machinery/door/airlock/glass_mining{ @@ -16921,23 +16796,24 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "zX" = ( -/obj/effect/floor_decal/borderfloor{ +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ dir = 1 }, -/obj/effect/floor_decal/corner/red/border{ - dir = 1 - }, -/obj/machinery/atmospherics/unary/vent_scrubber/on, -/obj/item/device/radio/intercom{ - dir = 1; - name = "Station Intercom (General)"; - pixel_y = 21 - }, /obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 4 + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ + dir = 9 + }, +/obj/item/device/radio/intercom{ + dir = 2; + pixel_y = -24 }, -/obj/effect/floor_decal/steeldecal/steel_decals7, -/obj/machinery/camera/network/tether, /turf/simulated/floor/tiled, /area/hallway/station/upper) "zY" = ( @@ -17365,6 +17241,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 5 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/chemistry) "AA" = ( @@ -17492,15 +17372,16 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "AK" = ( -/obj/structure/table/standard, -/obj/item/weapon/paper_bin{ - pixel_x = -3; - pixel_y = 7 +/obj/structure/cable{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/item/device/megaphone, -/obj/machinery/camera/network/cargo, -/turf/simulated/floor/wood, -/area/quartermaster/qm) +/obj/effect/floor_decal/corner_steel_grid{ + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/teleporter/departing) "AL" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, /obj/machinery/atmospherics/pipe/simple/hidden/supply, @@ -17569,21 +17450,24 @@ d2 = 2; icon_state = "1-2" }, -/obj/structure/cable/green{ - d1 = 2; - d2 = 8; - icon_state = "2-8" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/effect/floor_decal/steeldecal/steel_decals4{ +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/effect/floor_decal/steeldecal/steel_decals4{ - dir = 9 +/obj/effect/floor_decal/borderfloor/corner{ + dir = 8 }, +/obj/effect/floor_decal/corner/brown/bordercorner{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/storage) +/area/quartermaster/office) "AS" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -17643,14 +17527,11 @@ /area/medical/reception) "Ba" = ( /obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 + dir = 1 }, -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault"; - dir = 4 - }, -/turf/simulated/floor/tiled/dark, -/area/security/nuke_storage) +/obj/effect/floor_decal/industrial/warning, +/turf/simulated/floor/tiled, +/area/tether/station/stairs_three) "Bb" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 @@ -18086,6 +17967,10 @@ /obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/dark, /area/medical/medbay_emt_bay) "BC" = ( @@ -18164,20 +18049,18 @@ /turf/simulated/floor/tiled, /area/maintenance/station/cargo) "BL" = ( -/obj/structure/bed/chair{ - dir = 4 +/obj/machinery/embedded_controller/radio/simple_docking_controller{ + frequency = 1380; + id_tag = "cargo_bay"; + layer = 3.3; + name = "cargo bay hatch controller"; + pixel_x = 30; + pixel_y = 0; + req_one_access = list(13,31); + tag_door = "cargo_bay_door" }, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/turf/simulated/floor/tiled/white, -/area/medical/reception) +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "BM" = ( /obj/structure/bed/chair/office/dark{ dir = 8 @@ -18227,26 +18110,50 @@ /turf/simulated/floor/wood, /area/quartermaster/qm) "BQ" = ( -/obj/effect/floor_decal/industrial/hatch/yellow, -/obj/machinery/camera/network/cargo{ +/obj/structure/table/reinforced, +/obj/machinery/reagentgrinder, +/obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 4 }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 + }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, +/turf/simulated/floor/tiled/white, +/area/medical/chemistry) "BR" = ( /obj/effect/floor_decal/industrial/hatch/yellow, /turf/simulated/floor/tiled, /area/quartermaster/storage) "BS" = ( +/obj/structure/table/standard, /obj/structure/cable/green{ d1 = 1; d2 = 2; icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/stamp/denied{ + pixel_x = 4; + pixel_y = -2 + }, +/obj/item/weapon/stamp/cargo, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/storage) +/area/quartermaster/office) "BT" = ( /obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, @@ -18387,29 +18294,15 @@ /turf/simulated/floor/tiled, /area/hallway/station/upper) "Cg" = ( -/obj/machinery/camera/network/tether{ - dir = 1 +/obj/structure/table/rack{ + dir = 8; + layer = 2.9 }, -/obj/effect/floor_decal/borderfloor, -/obj/effect/floor_decal/corner/lightgrey/border, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals7{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/lightgrey/bordercorner2{ - dir = 9 - }, -/obj/item/device/radio/intercom{ - dir = 2; - pixel_y = -24 +/obj/effect/decal/cleanable/cobweb{ + icon_state = "cobweb2" }, /turf/simulated/floor/tiled, -/area/hallway/station/upper) +/area/quartermaster/warehouse) "Ch" = ( /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 8 @@ -18755,20 +18648,34 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "CK" = ( -/obj/structure/cable/green{ - d1 = 1; - d2 = 8; - icon_state = "1-8" +/obj/item/weapon/paper_bin{ + pixel_x = -3; + pixel_y = 7 }, -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/item/weapon/clipboard, +/obj/item/weapon/pen/red{ + pixel_x = 2; + pixel_y = 6 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ +/obj/structure/table/standard, +/obj/machinery/light{ + icon_state = "tube1"; dir = 8 }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/storage) +/area/quartermaster/office) "CL" = ( /obj/structure/disposalpipe/sortjunction/flipped{ dir = 1; @@ -19040,27 +18947,26 @@ /turf/simulated/wall, /area/medical/reception) "Dm" = ( -/obj/structure/table/reinforced, -/obj/machinery/reagentgrinder, -/obj/machinery/atmospherics/unary/vent_scrubber/on{ +/obj/structure/table/rack, +/obj/item/device/defib_kit/compact/loaded, +/obj/effect/floor_decal/corner/paleblue{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 4 }, -/obj/machinery/camera/network/medbay{ - dir = 4 +/obj/effect/floor_decal/steeldecal/steel_decals9{ + dir = 1 }, -/obj/effect/floor_decal/borderfloorwhite{ +/obj/effect/floor_decal/steeldecal/steel_decals9{ dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, -/obj/structure/extinguisher_cabinet{ - dir = 4; - icon_state = "extinguisher_closed"; - pixel_x = -30 - }, -/turf/simulated/floor/tiled/white, -/area/medical/chemistry) +/obj/effect/floor_decal/steeldecal/steel_decals9, +/turf/simulated/floor/tiled/dark, +/area/medical/medbay_emt_bay) "Dn" = ( /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ icon_state = "intact-scrubbers"; @@ -19197,12 +19103,26 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "DA" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ +/obj/structure/bed/chair/office/dark{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/effect/landmark/start{ + name = "Cargo Technician" + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/storage) +/area/quartermaster/office) "DB" = ( /obj/effect/floor_decal/industrial/loading{ dir = 8 @@ -19254,17 +19174,26 @@ /turf/simulated/floor/tiled, /area/teleporter/departing) "DF" = ( -/obj/structure/cable{ - d1 = 4; - d2 = 8; - icon_state = "4-8" +/obj/structure/table/glass, +/obj/item/weapon/storage/box/cups, +/obj/item/weapon/storage/box/cups{ + pixel_x = 4; + pixel_y = 4 }, -/obj/effect/floor_decal/corner_steel_grid{ +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 10 }, -/obj/machinery/camera/network/civilian, -/turf/simulated/floor/tiled, -/area/teleporter/departing) +/turf/simulated/floor/tiled/white, +/area/medical/reception) "DG" = ( /obj/structure/cable{ d1 = 4; @@ -19329,6 +19258,9 @@ /obj/effect/floor_decal/steeldecal/steel_decals6{ dir = 1 }, +/obj/machinery/camera/network/tether{ + dir = 4 + }, /turf/simulated/floor/tiled, /area/tether/station/stairs_three) "DL" = ( @@ -19488,6 +19420,9 @@ icon_state = "0-2" }, /obj/structure/cable/green, +/obj/machinery/camera/network/engineering{ + dir = 4 + }, /turf/simulated/floor/plating, /area/maintenance/substation/medical) "DV" = ( @@ -19745,11 +19680,15 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "Ep" = ( -/obj/structure/table/standard, -/obj/machinery/photocopier/faxmachine{ - department = "Quartermaster-Office" +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 10 }, -/turf/simulated/floor/wood, +/obj/structure/window/reinforced{ + dir = 4 + }, +/obj/item/toy/plushie/squid/blue, +/obj/machinery/camera/network/cargo, +/turf/simulated/floor/outdoors/grass/forest, /area/quartermaster/qm) "Eq" = ( /obj/structure/table/standard, @@ -19799,10 +19738,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "Ev" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/machinery/computer/supplycomp/control{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/storage) +/area/quartermaster/office) "Ew" = ( /obj/structure/disposalpipe/segment, /obj/effect/floor_decal/industrial/outline/yellow, @@ -19875,29 +19827,30 @@ /turf/simulated/floor/tiled, /area/tether/station/stairs_three) "EF" = ( -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 1 +/obj/machinery/button/remote/blast_door{ + id = "qm_warehouse"; + name = "Warehouse Door Control"; + pixel_x = -26; + pixel_y = 0; + req_access = list(31) }, -/obj/machinery/camera/network/tether{ - dir = 9 - }, -/obj/effect/floor_decal/industrial/warning, /turf/simulated/floor/tiled, -/area/tether/station/stairs_three) +/area/quartermaster/storage) "EG" = ( -/obj/structure/table/woodentable, -/obj/item/device/taperecorder{ - pixel_x = -4; - pixel_y = 2 - }, -/obj/machinery/camera/network/security{ +/obj/effect/floor_decal/borderfloorwhite{ dir = 1 }, -/obj/item/device/radio/intercom/department/security{ - pixel_y = -24 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 1 }, -/turf/simulated/floor/carpet, -/area/security/detectives_office) +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 1 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 1 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "EH" = ( /obj/structure/window/reinforced{ dir = 8 @@ -20236,29 +20189,16 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "Fi" = ( -/obj/structure/table/rack, -/obj/item/device/defib_kit/compact/loaded, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue{ - dir = 6 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals9{ +/obj/machinery/disposal, +/obj/structure/disposalpipe/trunk{ dir = 8 }, -/obj/effect/floor_decal/steeldecal/steel_decals9, -/turf/simulated/floor/tiled/dark, -/area/medical/medbay_emt_bay) +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/wood, +/area/crew_quarters/heads/cmo) "Fj" = ( /turf/simulated/wall, /area/quartermaster/warehouse) @@ -20279,28 +20219,38 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "Fl" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/hologram/holopad, +/obj/structure/filingcabinet/filingcabinet, +/obj/machinery/light{ + icon_state = "tube1"; + dir = 8 + }, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/effect/floor_decal/borderfloor{ + dir = 8 + }, +/obj/effect/floor_decal/corner/brown/border{ + dir = 8 + }, +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 10 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 10 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/storage) +/area/quartermaster/office) "Fm" = ( -/obj/machinery/embedded_controller/radio/simple_docking_controller{ - frequency = 1380; - id_tag = "cargo_bay"; - layer = 3.3; - name = "cargo bay hatch controller"; - pixel_x = 30; - pixel_y = 0; - req_one_access = list(13,31); - tag_door = "cargo_bay_door" - }, -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Bay East"; - dir = 9 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/structure/closet/secure_closet/medical3, +/obj/item/weapon/soap/nanotrasen, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/turf/simulated/floor/tiled/white, +/area/medical/medbay_primary_storage) "Fn" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -20503,13 +20453,23 @@ /turf/simulated/floor, /area/maintenance/substation/cargo) "FE" = ( -/obj/machinery/light/small{ - dir = 8; - pixel_y = 0 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/warehouse) +/area/quartermaster/office) "FF" = ( /obj/structure/cable/green{ d1 = 1; @@ -20794,19 +20754,17 @@ /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) "Gc" = ( -/obj/structure/table/rack{ - dir = 8; - layer = 2.9 +/obj/structure/table/glass, +/obj/machinery/recharger, +/obj/item/weapon/tool/screwdriver, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 8 }, -/obj/machinery/camera/network/cargo{ - c_tag = "CRG - Cargo Warehouse"; - dir = 9 +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 8 }, -/obj/effect/decal/cleanable/cobweb{ - icon_state = "cobweb2" - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "Gd" = ( /obj/effect/floor_decal/industrial/outline/yellow, /obj/vehicle/train/trolley, @@ -20839,6 +20797,9 @@ /area/teleporter/departing) "Gh" = ( /obj/effect/floor_decal/techfloor/orange, +/obj/machinery/camera/network/tether{ + dir = 1 + }, /turf/simulated/floor/tiled/techfloor, /area/teleporter/departing) "Gi" = ( @@ -20928,17 +20889,23 @@ /area/medical/reception) "Gp" = ( /obj/structure/table/glass, -/obj/item/weapon/storage/box/cups, -/obj/item/weapon/storage/box/cups{ - pixel_x = 4; - pixel_y = 4 +/obj/item/weapon/storage/box/body_record_disk, +/obj/item/device/sleevemate, +/obj/item/weapon/paper{ + desc = ""; + info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; + name = "Body Designer Note" }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 +/obj/effect/floor_decal/borderfloorwhite{ + dir = 6 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 6 + }, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; dir = 9 }, /turf/simulated/floor/tiled/white, @@ -21065,27 +21032,22 @@ /turf/simulated/floor/tiled/white, /area/medical/reception) "Gx" = ( +/obj/item/roller, +/obj/item/roller{ + pixel_y = 8 + }, +/obj/item/roller{ + pixel_y = 16 + }, /obj/structure/table/glass, -/obj/item/weapon/storage/box/body_record_disk, -/obj/item/device/sleevemate, -/obj/item/weapon/paper{ - desc = ""; - info = "Bodies designed on the design console must be saved to a disk, provided on the front desk counter, then placed into the resleeving console for printing."; - name = "Body Designer Note" - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, /obj/effect/floor_decal/borderfloorwhite{ - dir = 6 + dir = 4 }, /obj/effect/floor_decal/corner/paleblue/border{ - dir = 6 + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, /turf/simulated/floor/tiled/white, -/area/medical/reception) +/area/medical/sleeper) "Gy" = ( /obj/machinery/power/apc{ dir = 2; @@ -21212,8 +21174,36 @@ /turf/simulated/floor/tiled, /area/quartermaster/warehouse) "GI" = ( -/turf/simulated/floor/tiled/steel, -/area/quartermaster/warehouse) +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" + }, +/obj/structure/cable/green{ + d1 = 2; + d2 = 4; + icon_state = "2-4" + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 6 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 1 + }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/office) "GJ" = ( /obj/machinery/power/apc{ dir = 4; @@ -21252,12 +21242,10 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "GN" = ( -/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/structure/flora/pottedplant, +/obj/effect/floor_decal/corner/paleblue/diagonal, +/turf/simulated/floor/tiled/white, +/area/crew_quarters/medbreak) "GO" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -21826,15 +21814,23 @@ /turf/simulated/floor/tiled, /area/quartermaster/storage) "HC" = ( -/obj/structure/disposalpipe/segment{ - dir = 4 +/obj/machinery/door/airlock/glass_mining{ + name = "Cargo Bay"; + req_access = list(31); + req_one_access = list() + }, +/obj/machinery/door/firedoor/glass, +/obj/structure/disposalpipe/segment, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 8 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/office) "HD" = ( /obj/structure/disposalpipe/segment{ dir = 8; @@ -21943,22 +21939,32 @@ pixel_x = 0; pixel_y = 32 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "HL" = ( -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 1 +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 1 +/obj/structure/cable/green{ + d1 = 1; + d2 = 4; + icon_state = "1-4" }, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 1 +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + icon_state = "intact-scrubbers"; + dir = 5 }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "HM" = ( @@ -22056,6 +22062,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 8 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/medical/medbay_primary_storage) "HU" = ( @@ -22314,91 +22324,81 @@ /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) "In" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 6 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 +/obj/structure/cable/green{ + d1 = 2; + d2 = 8; + icon_state = "2-8" }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals4{ + dir = 9 + }, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/warehouse) +/area/quartermaster/storage) "Io" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/industrial/outline/yellow, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, -/area/quartermaster/warehouse) +/area/quartermaster/storage) "Ip" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" + }, +/obj/structure/disposalpipe/segment{ dir = 4 }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/warehouse) -"Iq" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/door/blast/shutters{ - dir = 8; - id = "qm_warehouse"; - name = "Warehouse Shutters" - }, -/obj/machinery/door/firedoor/glass, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/turf/simulated/floor/tiled/steel_grid, -/area/quartermaster/warehouse) -"Ir" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ - dir = 1 - }, -/obj/effect/floor_decal/steeldecal/steel_decals6{ +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ dir = 8 }, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Iq" = ( +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Ir" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) "Is" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 4 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 4 - }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/hologram/holopad, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) "It" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 9 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 +/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ + dir = 4 }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/structure/disposalpipe/segment, /turf/simulated/floor/tiled, /area/quartermaster/storage) "Iu" = ( @@ -22724,6 +22724,9 @@ d2 = 8; icon_state = "0-8" }, +/obj/machinery/camera/network/engineering{ + dir = 1 + }, /turf/simulated/floor, /area/maintenance/substation/cargo) "IQ" = ( @@ -22761,18 +22764,12 @@ /turf/simulated/floor/tiled, /area/quartermaster/warehouse) "IU" = ( -/obj/machinery/button/remote/blast_door{ - id = "qm_warehouse"; - name = "Warehouse Door Control"; - pixel_x = -26; - pixel_y = 0; - req_access = list(31) - }, -/obj/machinery/camera/network/cargo{ - dir = 4 - }, -/turf/simulated/floor/tiled, -/area/quartermaster/storage) +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2, +/obj/effect/floor_decal/corner/paleblue/bordercorner2, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "IV" = ( /obj/structure/extinguisher_cabinet{ pixel_x = 5; @@ -22912,15 +22909,21 @@ /turf/simulated/floor/wood, /area/crew_quarters/heads/cmo) "Jk" = ( -/obj/machinery/disposal, -/obj/structure/disposalpipe/trunk{ - dir = 8 +/obj/machinery/atmospherics/unary/vent_scrubber/on{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite{ + dir = 4 + }, +/obj/effect/floor_decal/corner/paleblue/border{ + dir = 4 }, /obj/machinery/camera/network/medbay{ - dir = 8 + icon_state = "camera"; + dir = 9 }, -/turf/simulated/floor/wood, -/area/crew_quarters/heads/cmo) +/turf/simulated/floor/tiled/white, +/area/hallway/secondary/escape/medical_escape_pod_hallway) "Jl" = ( /obj/structure/cable/green{ d1 = 1; @@ -23116,6 +23119,10 @@ /obj/effect/floor_decal/corner/paleblue/border{ dir = 4 }, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "JE" = ( @@ -23176,9 +23183,13 @@ /turf/simulated/floor/tiled/white, /area/crew_quarters/heads/cmo) "JH" = ( -/obj/structure/closet/crate/freezer, +/obj/machinery/light/small{ + dir = 8; + pixel_y = 0 + }, /obj/effect/floor_decal/industrial/outline/yellow, -/turf/simulated/floor/tiled/steel, +/obj/structure/closet/crate/freezer, +/turf/simulated/floor/tiled, /area/quartermaster/warehouse) "JI" = ( /obj/structure/closet/crate/internals, @@ -23422,15 +23433,19 @@ /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) "Kc" = ( -/obj/structure/closet/secure_closet/medical3, -/obj/item/weapon/soap/nanotrasen, -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/structure/closet/wardrobe/virology_white, +/obj/machinery/firealarm{ + dir = 4; + pixel_x = 24 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 8 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 9 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/medical/medbay_primary_storage) +/area/medical/virologyaccess) "Kd" = ( /obj/structure/closet/secure_closet/medical3, /obj/item/weapon/soap/nanotrasen, @@ -23479,20 +23494,10 @@ /turf/simulated/open, /area/medical/medbay_primary_storage) "Kj" = ( -/obj/structure/table/glass, -/obj/machinery/recharger, -/obj/item/weapon/tool/screwdriver, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 8 - }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 8 - }, +/obj/machinery/vending/cola, +/obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/area/crew_quarters/medbreak) "Kk" = ( /obj/structure/cable/green{ d1 = 1; @@ -23561,32 +23566,30 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Kq" = ( -/obj/machinery/camera/network/security{ - c_tag = "SEC - Vault Exterior West"; - dir = 8 - }, -/turf/space, +/obj/machinery/camera/network/security, +/turf/simulated/mineral/floor/vacuum, /area/security/nuke_storage) "Kr" = ( -/obj/item/roller, -/obj/item/roller{ - pixel_y = 8 - }, -/obj/item/roller{ - pixel_y = 16 - }, -/obj/structure/table/glass, -/obj/machinery/camera/network/medbay{ +/obj/effect/floor_decal/borderfloor{ dir = 8 }, -/obj/effect/floor_decal/borderfloorwhite{ - dir = 4 +/obj/effect/floor_decal/corner/red/border{ + dir = 8 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/obj/structure/disposalpipe/segment, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 5 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) "Ks" = ( /obj/structure/table/glass, /obj/item/bodybag/cryobag, @@ -23884,28 +23887,40 @@ /turf/simulated/floor/plating, /area/maintenance/station/cargo) "KS" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_l" +/obj/structure/disposalpipe/segment{ + dir = 4 }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) -"KT" = ( -/obj/structure/shuttle/engine/propulsion{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 8 }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) -"KU" = ( -/obj/structure/shuttle/engine/propulsion{ - dir = 8; - icon_state = "propulsion_r" +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"KT" = ( +/obj/structure/table/steel_reinforced, +/obj/item/weapon/folder/yellow, +/obj/item/weapon/pen{ + pixel_x = 4; + pixel_y = 4 }, -/turf/space, -/turf/simulated/shuttle/plating/airless/carry, -/area/shuttle/large_escape_pod1/station) +/obj/machinery/door/window/northright{ + dir = 2; + name = "Mailing Room"; + req_access = list(50) + }, +/obj/machinery/door/firedoor/border_only, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/turf/simulated/floor/tiled, +/area/quartermaster/delivery) +"KU" = ( +/obj/structure/disposalpipe/segment{ + dir = 4; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) "KV" = ( /obj/structure/undies_wardrobe, /turf/simulated/floor/tiled/white, @@ -23954,6 +23969,19 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) +"Lb" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 6 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 5 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) "Lc" = ( /obj/effect/floor_decal/corner/paleblue/diagonal, /obj/effect/floor_decal/steeldecal/steel_decals4{ @@ -23988,11 +24016,12 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Lf" = ( -/obj/structure/flora/pottedplant, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, /turf/simulated/floor/tiled/white, -/area/crew_quarters/medbreak) +/area/medical/virology) "Lg" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, @@ -24185,6 +24214,19 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) +"LA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/outline/yellow, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) "LB" = ( /obj/structure/sign/nosmoking_1, /turf/simulated/wall/r_wall, @@ -24338,30 +24380,10 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "LS" = ( -/obj/structure/cable/green{ - d1 = 4; - d2 = 8; - icon_state = "4-8" - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 4; - icon_state = "1-4" - }, -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 5 - }, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - icon_state = "intact-scrubbers"; - dir = 5 - }, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/obj/machinery/camera/network/security, +/mob/living/simple_mob/animal/sif/shantak/scruffy, +/turf/simulated/floor/carpet, +/area/crew_quarters/heads/hos) "LT" = ( /obj/effect/landmark/start{ name = "Paramedic" @@ -24503,12 +24525,52 @@ /obj/random/maintenance/cargo, /turf/simulated/floor/plating, /area/maintenance/station/cargo) +"Mc" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/warehouse) "Md" = ( /obj/machinery/door/airlock/medical{ name = "Rest Room" }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) +"Me" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/door/blast/shutters{ + dir = 8; + id = "qm_warehouse"; + name = "Warehouse Shutters" + }, +/obj/machinery/door/firedoor/glass, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled/steel_grid, +/area/quartermaster/warehouse) "Mf" = ( /obj/machinery/light/small{ dir = 8 @@ -24518,6 +24580,24 @@ }, /turf/simulated/floor/tiled/techfloor, /area/crew_quarters/medical_restroom) +"Mg" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals6{ + dir = 8 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "Mh" = ( /obj/structure/cable/green{ d1 = 1; @@ -24845,6 +24925,32 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) +"Mz" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"MA" = ( +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 9 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 9; + pixel_y = 0 + }, +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "MB" = ( /obj/machinery/light{ dir = 8; @@ -24870,6 +24976,10 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) +"MD" = ( +/obj/structure/disposalpipe/segment, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) "ME" = ( /obj/structure/table/glass, /obj/item/weapon/deck/cards, @@ -24945,6 +25055,19 @@ }, /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) +"MN" = ( +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/conveyor_switch/oneway{ + id = "gloriouscargopipeline"; + layer = 3.3; + name = "Surface delivery conveyor"; + pixel_x = 14; + pixel_y = -3 + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) "MO" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 6 @@ -25118,12 +25241,6 @@ "Nb" = ( /obj/effect/floor_decal/borderfloorwhite, /obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2{ - dir = 9 - }, -/obj/effect/floor_decal/corner/paleblue/bordercorner2{ - dir = 9 - }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Nc" = ( @@ -25145,13 +25262,17 @@ d2 = 4; icon_state = "1-4" }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/borderfloorwhite/corner2{ + dir = 9 + }, +/obj/effect/floor_decal/corner/paleblue/bordercorner2{ + dir = 9 + }, /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Nd" = ( -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, -/obj/effect/floor_decal/borderfloorwhite/corner2, -/obj/effect/floor_decal/corner/paleblue/bordercorner2, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ dir = 10 }, @@ -25164,13 +25285,16 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "Ne" = ( -/obj/machinery/camera/network/medbay{ - dir = 1 +/obj/structure/closet/crate/freezer, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/item/weapon/virusdish/random, +/obj/effect/floor_decal/industrial/warning/corner{ + dir = 4 }, -/obj/effect/floor_decal/borderfloorwhite, -/obj/effect/floor_decal/corner/paleblue/border, /turf/simulated/floor/tiled/white, -/area/medical/sleeper) +/area/medical/virology) "Nf" = ( /obj/structure/bed/chair{ dir = 1 @@ -25228,20 +25352,21 @@ /turf/simulated/floor/tiled/white, /area/hallway/secondary/escape/medical_escape_pod_hallway) "Nk" = ( -/obj/machinery/atmospherics/unary/vent_scrubber/on{ - dir = 1 - }, -/obj/machinery/camera/network/medbay{ - dir = 8 - }, -/obj/effect/floor_decal/borderfloorwhite{ +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ dir = 4 }, -/obj/effect/floor_decal/corner/paleblue/border{ - dir = 4 +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" }, -/turf/simulated/floor/tiled/white, -/area/hallway/secondary/escape/medical_escape_pod_hallway) +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "Nl" = ( /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) @@ -25253,12 +25378,43 @@ /obj/machinery/light/small, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) +"Nn" = ( +/obj/structure/plasticflaps, +/obj/structure/disposalpipe/trunk{ + dir = 4 + }, +/obj/machinery/disposal/deliveryChute{ + dir = 4 + }, +/turf/simulated/floor, +/area/quartermaster/warehouse) "No" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/cups, /obj/effect/floor_decal/corner/paleblue/diagonal, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) +"Np" = ( +/obj/structure/closet/secure_closet/detective, +/obj/item/weapon/reagent_containers/spray/pepper, +/obj/item/weapon/gun/energy/taser, +/obj/item/device/camera{ + desc = "A one use - polaroid camera. 30 photos left."; + name = "detectives camera"; + pictures_left = 30; + pixel_x = 2; + pixel_y = 3 + }, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/carpet, +/area/security/detectives_office) "Nq" = ( /obj/structure/table/standard, /obj/item/weapon/storage/box/donkpockets, @@ -25352,6 +25508,13 @@ }, /turf/simulated/floor/tiled/techfloor, /area/ai_core_foyer) +"Nx" = ( +/obj/structure/disposalpipe/segment{ + dir = 8; + icon_state = "pipe-c" + }, +/turf/simulated/floor/tiled/steel, +/area/quartermaster/warehouse) "Ny" = ( /obj/structure/table/standard, /obj/machinery/atmospherics/unary/vent_pump/on{ @@ -25420,20 +25583,41 @@ /turf/simulated/floor/tiled/white, /area/medical/sleeper) "NE" = ( -/obj/structure/closet/wardrobe/virology_white, -/obj/machinery/firealarm{ +/obj/effect/floor_decal/borderfloor{ dir = 4; - pixel_x = 24 + pixel_x = -16 }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 8 +/obj/effect/floor_decal/corner/red/border{ + dir = 4; + pixel_x = -16 }, -/obj/machinery/camera/network/medbay, -/obj/effect/floor_decal/industrial/warning{ - dir = 9 +/obj/effect/floor_decal/corner/red{ + icon_state = "corner_white"; + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) +/obj/structure/table/steel, +/obj/item/bodybag/cryobag{ + pixel_x = 6 + }, +/obj/item/weapon/storage/firstaid/regular{ + pixel_x = 5; + pixel_y = 5 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = -9 + }, +/obj/machinery/recharger/wallcharger{ + pixel_x = 32; + pixel_y = 2 + }, +/obj/item/weapon/reagent_containers/spray/cleaner, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallway) "NF" = ( /obj/machinery/embedded_controller/radio/simple_docking_controller/escape_pod_berth{ frequency = 1380; @@ -25479,6 +25663,15 @@ /obj/effect/floor_decal/corner/paleblue/diagonal, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) +"NI" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "NJ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/universal{ dir = 4 @@ -25545,24 +25738,29 @@ /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) "NQ" = ( -/obj/structure/closet/l3closet/virology, -/obj/machinery/access_button{ - command = "cycle_interior"; - frequency = 1379; - master_tag = "virology_airlock_control"; - name = "Virology Access Button"; - pixel_x = -8; - pixel_y = -28; - req_access = list(39) +/obj/structure/cable/green{ + d1 = 1; + d2 = 8; + icon_state = "1-8" }, -/obj/machinery/light{ - dir = 4 +/obj/effect/floor_decal/borderfloor{ + dir = 6 }, -/obj/effect/floor_decal/industrial/warning{ - dir = 10 +/obj/effect/floor_decal/corner/brown/border{ + dir = 6 }, -/turf/simulated/floor/tiled/white, -/area/medical/virologyaccess) +/obj/effect/floor_decal/borderfloor/corner2{ + dir = 6 + }, +/obj/effect/floor_decal/corner/brown/bordercorner2{ + dir = 6 + }, +/obj/structure/closet/emcloset, +/obj/machinery/camera/network/tether{ + dir = 9 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/foyer) "NR" = ( /obj/effect/floor_decal/industrial/warning{ dir = 4 @@ -25616,6 +25814,31 @@ /obj/machinery/atmospherics/pipe/simple/hidden/yellow, /turf/simulated/floor/tiled/white, /area/medical/virologyaccess) +"NY" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1; + pixel_y = 0 + }, +/obj/effect/floor_decal/corner/red/border{ + dir = 1 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply{ + dir = 4 + }, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ + dir = 4 + }, +/obj/structure/cable/green{ + d1 = 4; + d2 = 8; + icon_state = "4-8" + }, +/obj/structure/disposalpipe/segment{ + dir = 4 + }, +/obj/machinery/camera/network/security, +/turf/simulated/floor/tiled, +/area/security/hallwayaux) "NZ" = ( /obj/structure/shuttle/engine/heater{ dir = 8 @@ -25786,14 +26009,27 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "Or" = ( -/obj/machinery/disease2/diseaseanalyser, -/obj/machinery/alarm{ - dir = 8; - icon_state = "alarm0"; - pixel_x = 24 +/obj/structure/closet/l3closet/virology, +/obj/machinery/access_button{ + command = "cycle_interior"; + frequency = 1379; + master_tag = "virology_airlock_control"; + name = "Virology Access Button"; + pixel_x = -8; + pixel_y = -28; + req_access = list(39) + }, +/obj/machinery/light{ + dir = 4 + }, +/obj/effect/floor_decal/industrial/warning{ + dir = 10 + }, +/obj/machinery/camera/network/medbay{ + dir = 1 }, /turf/simulated/floor/tiled/white, -/area/medical/virology) +/area/medical/virologyaccess) "Os" = ( /obj/structure/window/reinforced{ dir = 8 @@ -26037,18 +26273,23 @@ dir = 8 }, /obj/machinery/disposal, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medbreak) "OQ" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply{ - dir = 9; - pixel_y = 0 - }, -/obj/machinery/camera/network/medbay{ +/obj/structure/disposalpipe/trunk{ dir = 1 }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/obj/machinery/disposal, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/wood, +/area/security/breakroom) "OR" = ( /obj/structure/table/glass, /obj/item/weapon/storage/fancy/vials, @@ -26107,6 +26348,15 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) +"OW" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/red/border, +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled, +/area/security/briefing_room) "OX" = ( /obj/effect/floor_decal/techfloor{ dir = 8 @@ -26118,14 +26368,12 @@ /turf/simulated/floor/bluegrid, /area/ai_core_foyer) "OY" = ( -/obj/item/weapon/storage/secure/safe{ - pixel_x = -28 +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 }, -/obj/structure/table/glass, -/obj/item/weapon/storage/lockbox/vials, -/obj/item/weapon/reagent_containers/dropper, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/turf/simulated/floor/tiled, +/area/quartermaster/storage) "OZ" = ( /obj/effect/floor_decal/industrial/warning, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ @@ -26329,6 +26577,21 @@ }, /turf/simulated/floor/tiled/white, /area/medical/virology) +"Pq" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/security/hallway) +"Pr" = ( +/obj/effect/floor_decal/techfloor, +/obj/machinery/camera/network/command{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/techfloor, +/area/ai_core_foyer) "Ps" = ( /obj/machinery/atmospherics/tvalve/bypass, /obj/machinery/light{ @@ -26339,6 +26602,18 @@ }, /turf/simulated/floor/plating, /area/medical/virology) +"Pt" = ( +/obj/structure/bed/chair{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloorwhite, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/floor/tiled/white, +/area/medical/sleeper) "Pu" = ( /obj/structure/table/glass, /obj/item/weapon/storage/box/monkeycubes, @@ -26368,26 +26643,22 @@ /turf/simulated/floor/tiled/white, /area/medical/virology) "Pw" = ( -/obj/structure/closet/crate/freezer, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/item/weapon/virusdish/random, -/obj/machinery/camera/network/medbay{ - dir = 1 - }, -/obj/effect/floor_decal/industrial/warning/corner{ - dir = 4 +/obj/machinery/disease2/diseaseanalyser, +/obj/machinery/alarm{ + dir = 8; + icon_state = "alarm0"; + pixel_x = 24 }, +/obj/machinery/camera/network/medbay, /turf/simulated/floor/tiled/white, /area/medical/virology) "Px" = ( -/obj/machinery/smartfridge/secure/virology, -/obj/machinery/atmospherics/pipe/simple/hidden/black{ +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; dir = 5 }, -/turf/simulated/floor/tiled/white, -/area/medical/virology) +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "Py" = ( /obj/machinery/atmospherics/pipe/simple/hidden/black{ dir = 4 @@ -26432,15 +26703,16 @@ /turf/simulated/floor/bluegrid, /area/ai_core_foyer) "PD" = ( -/obj/structure/reagent_dispensers/water_cooler/full, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 +/obj/machinery/smartfridge/secure/virology, +/obj/machinery/atmospherics/pipe/simple/hidden/black{ + dir = 5 }, /obj/machinery/camera/network/medbay{ - dir = 4 + icon_state = "camera"; + dir = 9 }, /turf/simulated/floor/tiled/white, -/area/medical/virologyisolation) +/area/medical/virology) "PE" = ( /obj/structure/cable/green{ d1 = 1; @@ -26500,14 +26772,16 @@ /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) "PI" = ( -/obj/structure/cable/green{ - icon_state = "32-2" +/obj/structure/reagent_dispensers/water_cooler/full, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 }, -/obj/structure/lattice, -/obj/machinery/atmospherics/pipe/zpipe/down/supply, -/obj/machinery/atmospherics/pipe/zpipe/down/scrubbers, -/turf/simulated/open, -/area/tether/exploration) +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virologyisolation) "PJ" = ( /obj/structure/bed/padded, /obj/item/weapon/bedsheet/green, @@ -26643,18 +26917,168 @@ /obj/item/weapon/stool/padded, /turf/simulated/floor/tiled/white, /area/medical/virologyisolation) +"PZ" = ( +/obj/structure/cable/green{ + d1 = 1; + d2 = 2; + icon_state = "1-2" + }, +/obj/machinery/atmospherics/pipe/simple/hidden/supply, +/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/floor/tiled/monotile, +/area/tether/exploration) "Qa" = ( /obj/structure/grille, /obj/structure/window/reinforced/full, /obj/structure/window/reinforced, /turf/simulated/floor/plating, /area/medical/virologyisolation) +"Qb" = ( +/obj/machinery/camera/network/exploration{ + icon_state = "camera"; + dir = 9 + }, +/turf/simulated/open, +/area/tether/exploration) +"Qc" = ( +/obj/structure/table/standard, +/obj/machinery/light_switch{ + pixel_x = -12; + pixel_y = -24 + }, +/obj/item/device/retail_scanner/civilian{ + dir = 1 + }, +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/brown/border, +/obj/effect/floor_decal/borderfloor/corner2, +/obj/effect/floor_decal/corner/brown/bordercorner2, +/obj/machinery/camera/network/cargo{ + dir = 1; + name = "security camera" + }, +/turf/simulated/floor/tiled, +/area/quartermaster/office) +"Qd" = ( +/obj/structure/table/standard, +/obj/machinery/photocopier/faxmachine{ + department = "Quartermaster-Office" + }, +/turf/simulated/floor/wood, +/area/quartermaster/qm) +"Qe" = ( +/obj/machinery/conveyor{ + dir = 1; + id = "QMLoad" + }, +/obj/machinery/camera/network/cargo{ + icon_state = "camera"; + dir = 8 + }, +/turf/simulated/floor, +/area/quartermaster/storage) "Qf" = ( /obj/structure/toilet{ pixel_y = 15 }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) +"Qg" = ( +/obj/effect/floor_decal/industrial/hatch/yellow, +/obj/machinery/camera/network/cargo{ + dir = 4 + }, +/turf/simulated/floor/tiled, +/area/quartermaster/storage) +"Qh" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_l" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qi" = ( +/obj/effect/floor_decal/borderfloor{ + dir = 1 + }, +/obj/effect/floor_decal/corner/lightgrey/border{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 4 + }, +/obj/machinery/camera/network/tether, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Qj" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/paleblue/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Qk" = ( +/obj/effect/floor_decal/borderfloor, +/obj/effect/floor_decal/corner/lightgrey/border, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 1 + }, +/obj/effect/floor_decal/steeldecal/steel_decals7{ + dir = 8 + }, +/obj/machinery/camera/network/tether{ + dir = 1 + }, +/turf/simulated/floor/tiled, +/area/hallway/station/upper) +"Ql" = ( +/obj/machinery/camera/network/security{ + icon_state = "camera"; + dir = 10 + }, +/turf/simulated/open, +/area/security/brig) +"Qm" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8 + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qn" = ( +/obj/structure/shuttle/engine/propulsion{ + dir = 8; + icon_state = "propulsion_r" + }, +/turf/space, +/turf/simulated/shuttle/plating/airless/carry, +/area/shuttle/large_escape_pod1/station) +"Qo" = ( +/obj/item/weapon/storage/secure/safe{ + pixel_x = -28 + }, +/obj/structure/table/glass, +/obj/item/weapon/storage/lockbox/vials, +/obj/item/weapon/reagent_containers/dropper, +/obj/machinery/camera/network/medbay{ + icon_state = "camera"; + dir = 4 + }, +/turf/simulated/floor/tiled/white, +/area/medical/virology) "Qr" = ( /obj/machinery/shower{ pixel_y = 10 @@ -26855,13 +27279,6 @@ }, /turf/simulated/floor, /area/maintenance/station/sec_upper) -"QZ" = ( -/obj/effect/floor_decal/techfloor, -/obj/machinery/camera/network/command{ - dir = 1 - }, -/turf/simulated/floor/tiled/techfloor, -/area/ai_core_foyer) "Ra" = ( /obj/structure/railing, /obj/structure/railing{ @@ -26949,22 +27366,6 @@ /obj/structure/catwalk, /turf/simulated/floor, /area/maintenance/station/elevator) -"Rl" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 6 - }, -/obj/effect/floor_decal/borderfloor/corner2{ - dir = 6 - }, -/obj/effect/floor_decal/corner/red/bordercorner2{ - dir = 6 - }, -/obj/machinery/suit_cycler/security, -/turf/simulated/floor/tiled, -/area/security/eva) "Rm" = ( /obj/effect/floor_decal/techfloor{ dir = 6 @@ -27423,13 +27824,6 @@ }, /turf/simulated/floor, /area/maintenance/station/ai) -"Sj" = ( -/obj/structure/catwalk, -/obj/structure/cable{ - icon_state = "1-8" - }, -/turf/simulated/floor, -/area/maintenance/station/ai) "Sk" = ( /obj/structure/railing{ dir = 4 @@ -27456,10 +27850,6 @@ /obj/effect/decal/cleanable/dirt, /turf/simulated/floor, /area/maintenance/station/ai) -"So" = ( -/obj/random/trash, -/turf/simulated/floor, -/area/maintenance/station/ai) "Sp" = ( /obj/machinery/light, /turf/simulated/open, @@ -27648,38 +28038,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/hallway/station/upper) -"SJ" = ( -/obj/effect/floor_decal/borderfloor{ - dir = 4; - pixel_x = -16 - }, -/obj/effect/floor_decal/corner/red/border{ - dir = 4; - pixel_x = -16 - }, -/obj/effect/floor_decal/corner/red{ - icon_state = "corner_white"; - dir = 6 - }, -/obj/structure/table/steel, -/obj/item/bodybag/cryobag{ - pixel_x = 6 - }, -/obj/item/weapon/storage/firstaid/regular{ - pixel_x = 5; - pixel_y = 5 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = -9 - }, -/obj/machinery/recharger/wallcharger{ - pixel_x = 32; - pixel_y = 2 - }, -/obj/item/weapon/reagent_containers/spray/cleaner, -/turf/simulated/floor/tiled, -/area/security/hallway) "SK" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, @@ -27868,16 +28226,6 @@ }, /turf/simulated/floor/tiled, /area/shuttle/excursion/tether) -"Tv" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{ - dir = 10 - }, -/obj/structure/window/reinforced{ - dir = 4 - }, -/obj/item/toy/plushie/squid/blue, -/turf/simulated/floor/outdoors/grass/forest, -/area/quartermaster/qm) "TD" = ( /obj/structure/table/woodentable, /obj/machinery/atmospherics/pipe/simple/hidden/supply{ @@ -28328,13 +28676,6 @@ }, /turf/simulated/floor/tiled/techfloor/grid, /area/shuttle/excursion/tether) -"Vb" = ( -/obj/machinery/camera/network/exploration{ - dir = 1 - }, -/obj/structure/stasis_cage, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "Vd" = ( /obj/effect/floor_decal/industrial/warning{ dir = 6 @@ -28575,15 +28916,6 @@ "VM" = ( /turf/simulated/open, /area/ai_core_foyer) -"VN" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/security{ - icon_state = "camera"; - dir = 8 - }, -/obj/item/weapon/bone/skull/unathi, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) "VQ" = ( /obj/machinery/atmospherics/pipe/manifold/hidden{ dir = 8; @@ -28728,14 +29060,6 @@ /obj/machinery/door/firedoor/glass, /turf/simulated/floor/plating, /area/shuttle/excursion/tether) -"Wz" = ( -/obj/machinery/vending/cola, -/obj/machinery/camera/network/medbay{ - dir = 4 - }, -/obj/effect/floor_decal/corner/paleblue/diagonal, -/turf/simulated/floor/tiled/white, -/area/crew_quarters/medbreak) "WB" = ( /obj/machinery/atmospherics/unary/vent_scrubber/on{ dir = 8 @@ -28992,19 +29316,6 @@ }, /turf/simulated/floor/tiled/steel, /area/quartermaster/warehouse) -"XR" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/supply, -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/camera/network/exploration{ - dir = 8 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "XT" = ( /obj/effect/floor_decal/borderfloor{ dir = 1 @@ -29064,18 +29375,6 @@ }, /turf/simulated/floor/tiled/white, /area/crew_quarters/medical_restroom) -"Yi" = ( -/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers, -/obj/machinery/atmospherics/pipe/manifold/hidden/supply{ - dir = 4 - }, -/obj/structure/cable/green{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/turf/simulated/floor/tiled/monotile, -/area/tether/exploration) "Yj" = ( /obj/effect/floor_decal/industrial/warning{ dir = 10 @@ -29177,10 +29476,6 @@ /obj/machinery/light, /turf/simulated/floor/tiled, /area/shuttle/excursion/tether) -"YO" = ( -/mob/living/simple_mob/animal/sif/shantak/scruffy, -/turf/simulated/floor/carpet, -/area/crew_quarters/heads/hos) "YQ" = ( /obj/machinery/atmospherics/pipe/simple/hidden/supply, /obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{ @@ -33324,7 +33619,7 @@ aa aa ae aa -Kq +yB aa ae aa @@ -33442,7 +33737,7 @@ aa ab ZF je -YO +LS WH Uk my @@ -33585,7 +33880,7 @@ ab ZF je Ui -VN +iS TZ Yu Vp @@ -33750,7 +34045,7 @@ xw xw ze zS -Ba +yR BV CT xw @@ -33879,7 +34174,7 @@ ov oZ fr qc -fJ +mG rh wS sO @@ -33887,7 +34182,7 @@ tJ qc vs vt -xx +tb xw xw zf @@ -33897,7 +34192,7 @@ BW CU xw xw -wL +Kq vt vt vt @@ -34155,7 +34450,7 @@ ab ab ab je -ar +hd WN et Yx @@ -34299,7 +34594,7 @@ ab je kI Uy -nG +kO oa ox ff @@ -34563,7 +34858,7 @@ ab ab ao ao -hd +aH hA hS ig @@ -34577,7 +34872,7 @@ ja kc ko tQ -kK +hC kY eT mc @@ -34848,14 +35143,14 @@ ai ai ao hf -hC +fJ bx ii bd iN jc ji -jv +en kd jS rA @@ -34885,7 +35180,7 @@ nn nn vu uO -zX +xx Bi Cb sp @@ -35019,9 +35314,9 @@ qG ro sj sT -EG +qg uJ -vv +qS wg wg xy @@ -35029,7 +35324,7 @@ yi og zY Bj -Ca +Qk Da Da Da @@ -35290,7 +35585,7 @@ kC fB fY eT -mg +jv mD nl nM @@ -35303,7 +35598,7 @@ qI rm sl sR -tN +Np uJ vx wh @@ -35315,7 +35610,7 @@ Aa Bl SI Da -DF +AK EB Fp Gf @@ -35439,7 +35734,7 @@ mh mh ep pg -pH +pG fH qe eO @@ -35560,7 +35855,7 @@ gP bZ bv dI -bS +dU ez bE RB @@ -35579,7 +35874,7 @@ dX ew lz lz -lz +Kr ph pI aA @@ -35842,7 +36137,7 @@ gr gE gO hi -hH +bS dI dI bq @@ -35851,7 +36146,7 @@ cd dI mv dM -ej +er cP cP jL @@ -35859,7 +36154,7 @@ eD cP lB lB -mG +lB no as as @@ -35997,7 +36292,7 @@ ek cP QV kD -kO +hH cP lC lC @@ -36008,7 +36303,7 @@ nN oz pj pJ -qg +mg qK rt oz @@ -36023,7 +36318,7 @@ yo og Af Bp -Cg +zX Df Df Df @@ -36157,7 +36452,7 @@ fN sZ tW uO -vD +rM wi wN xG @@ -36188,7 +36483,7 @@ MB MS No Jm -Wz +Kj KW vt vt @@ -36310,7 +36605,7 @@ Br Ci Dh DL -EF +Ba Fu Gk Gk @@ -36413,7 +36708,7 @@ ai ai ai ai -ci +NY iR cg jk @@ -36438,7 +36733,7 @@ oA oA oA oA -tb +pH tT uQ vE @@ -36463,7 +36758,7 @@ Hj HV ID Jp -Kc +Fm Jr KZ LE @@ -36574,7 +36869,7 @@ jk jk lv oB -pl +lU pM qh fK @@ -36595,7 +36890,7 @@ Ck yl Al BE -Dm +BQ Ef EZ FH @@ -36840,7 +37135,7 @@ aC aR bf bs -bL +ej cf cT jy @@ -36855,7 +37150,7 @@ jk jk jk jk -jk +Ql of oD pn @@ -37159,7 +37454,7 @@ yu zq fT kn -Ck +Qj yJ Az BG @@ -37175,7 +37470,7 @@ II Ju Ki KG -Lf +GN Ld Mn MI @@ -37261,7 +37556,7 @@ gk gf gk gR -aw +bb aE dQ bf @@ -37299,7 +37594,7 @@ wU xL yv zq -fU +xM kw pN yl @@ -37446,7 +37741,7 @@ mX pS Dl AA -BL +FK Dq Ek Fe @@ -37457,7 +37752,7 @@ HK HZ IK Jv -Kj +Gc KH Li LG @@ -37559,7 +37854,7 @@ jU cY kr kr -kP +hR ld lF mk @@ -37571,7 +37866,7 @@ oG pq pR qm -qS +nA rz aL ti @@ -37580,7 +37875,7 @@ aN vL wq wV -xM +vD yx yL jf @@ -37593,7 +37888,7 @@ Cl El Cl Cl -Gp +DF Iy Hq Lh @@ -37613,11 +37908,11 @@ ab NW Ok OA -OQ +Lf NW Ok OA -OQ +Lf NW aa aa @@ -37712,12 +38007,12 @@ at eX pr lC -lC +Pq mH rB mH tj -SJ +NE mH uP uP @@ -37842,7 +38137,7 @@ eJ el kh kh -du +OQ YT dO lG @@ -37898,7 +38193,7 @@ Nr Om OC OR -OY +Qo Pf OC KA @@ -38045,7 +38340,7 @@ Pg Po Pu NW -PD +PI PN PS PW @@ -38118,7 +38413,7 @@ hM aW aU iG -iS +NI YT jo ds @@ -38173,11 +38468,11 @@ LN Jz Mt Lh -Ne +IU Nt -NE +Kc NK -NQ +Or Nr Oo OE @@ -38277,7 +38572,7 @@ lH jh lH ok -oK +kP le mH mH @@ -38315,7 +38610,7 @@ LO JA Mu Lh -Nf +Pt Nr Nr Nr @@ -38396,7 +38691,7 @@ ab ab ab aU -gX +aw hr hM aY @@ -38433,7 +38728,7 @@ tn tn tn sp -yB +wF zw Ar Ax @@ -38469,7 +38764,7 @@ OU OE Pl NR -Pw +Ne NW PH PQ @@ -38541,7 +38836,7 @@ aU bk hr hP -Rl +hQ aU iH iT @@ -38549,7 +38844,7 @@ YT ni dg tP -en +eJ eF Xe YH @@ -38561,7 +38856,7 @@ mN nt nS om -oI +OW le tl tl @@ -38605,13 +38900,13 @@ ab ab ab NW -Or +Pw OG OV Pd Pm Ps -Px +PD NW PJ PR @@ -38729,7 +39024,7 @@ Du EJ Fh FP -Gx +Gp Iy HI Ig @@ -38821,7 +39116,7 @@ gg gj gl gx -bb +ar gY hv hP @@ -38877,7 +39172,7 @@ HJ Ih Jb JD -Kr +Gx KO Ll LM @@ -39011,7 +39306,7 @@ Bu Cs DM EL -Fi +Dm FQ FQ yT @@ -39029,11 +39324,11 @@ MK Iy ab NL -KS -KT -KT -KT -KU +Qh +Qm +Qm +Qm +Qn NL vt vt @@ -39108,7 +39403,7 @@ aU aU aU ay -aH +cp bm bB by @@ -39157,7 +39452,7 @@ Ct Ct Gy yT -HL +EG Ij Jd JE @@ -39250,7 +39545,7 @@ aa bc bJ Ur -hQ +gX bm bm bm @@ -39284,7 +39579,7 @@ uY uY ww wY -xP +vY yG zA Av @@ -39448,7 +39743,7 @@ JF Kt KQ Lq -LS +HL Iy MK MK @@ -39707,7 +40002,7 @@ sq tr um uZ -uZ +xg wx xb xR @@ -39817,21 +40112,21 @@ cC cI df dm -dU cC cC cC -df +cC +mu dm cI cC cC cC -dU +cC dm lQ lV -mq +Px mq be es @@ -39877,7 +40172,7 @@ Lt LW My MM -Nk +Jk Nv NG NM @@ -40238,7 +40533,7 @@ aa aa aa be -bX +kS cE cK cK @@ -40256,7 +40551,7 @@ Zy WG dj XA -er +nh ms Oz be @@ -40277,7 +40572,7 @@ sq sq sq sq -xc +vv xS fF AH @@ -40380,7 +40675,7 @@ aa aa aa be -cp +bX cE cK cK @@ -40398,7 +40693,7 @@ UJ Xb dj XN -er +nh ms Xq be @@ -40437,7 +40732,7 @@ GS Hd HR IA -Jk +Fi JS Ky Fz @@ -40540,9 +40835,9 @@ iW WS dj XN -er +nh ms -Vb +Xq be os oV @@ -40823,7 +41118,7 @@ jZ WR Xo XN -er +nh cK ms Xq @@ -40845,7 +41140,7 @@ qr qr qr qr -xg +Qi xR yQ zF @@ -40981,7 +41276,7 @@ pX qs qY rJ -rJ +zb tu ur ve @@ -41253,7 +41548,7 @@ dj cK ms mq -Ox +Qb Ox Ox be @@ -41263,7 +41558,7 @@ iV px pt qr -qZ +yY rK sw sw @@ -41286,8 +41581,8 @@ EX FD FY GC -ab -ab +Fj +Fj ab ab ab @@ -41391,7 +41686,7 @@ ea kx dj XN -er +nh cK ms mq @@ -41415,10 +41710,10 @@ vW wD xk xY -yR +wL zJ zL -Tv +Ep Vl TU zL @@ -41428,6 +41723,7 @@ Fj Fj Fj Fj +Nn Fj ab ab @@ -41440,7 +41736,6 @@ ab ab ab ab -ab vt vt vt @@ -41548,13 +41843,13 @@ iV iV qr qr -rM +nG sy tx uu vh vX -wE +KT xl xZ yS @@ -41567,10 +41862,10 @@ AI zL Ed GF -FE +JH Im IR -Fj +MN Fj ab ab @@ -41676,9 +41971,9 @@ kQ TG dj XN -er +nh ms -nA +mq be oU RV @@ -41695,7 +41990,7 @@ sz ty uv vi -vY +rY wD xm ya @@ -41705,14 +42000,14 @@ AJ BM CD ZV -Ep +Qd zL Ee EY FF -GG -GI -JH +KU +MD +Nx Fj ab ab @@ -41800,7 +42095,7 @@ aa aa aa be -cp +bX cE cK cK @@ -41818,7 +42113,7 @@ kR Vd dj XN -er +nh ms QL be @@ -41843,7 +42138,7 @@ he ht hO zL -AK +xP BN CE Dv @@ -41852,7 +42147,7 @@ zL Ga GH Hw -In +Lb IS JI Fj @@ -41942,7 +42237,7 @@ aa aa aa be -bX +kS cE cK cK @@ -41960,7 +42255,7 @@ ZE ZB dj XB -er +nh ms Sq be @@ -41980,7 +42275,7 @@ qu ux vj vj -wF +sE xn yb yU @@ -41994,7 +42289,7 @@ zK Gb XO Hx -Io +LA GG Hg Fj @@ -42133,10 +42428,10 @@ CG CD Es zK -Gc +Cg GJ Hy -Ip +Mc IT JK Fj @@ -42248,7 +42543,7 @@ db mt nz be -PI +wE QK be Si @@ -42278,7 +42573,7 @@ zL Fj Fj Hz -Iq +Me Fj JL Fj @@ -42373,21 +42668,21 @@ cC dc dl dH -em +bL Wk Wk Wk -Yi +Nk VI YQ SK Wk Wk -XR +Wk VI YQ lW -mu +PZ nB Ro PP @@ -42397,11 +42692,11 @@ Si gJ gJ gJ -RX -gJ -qu -rS -sE +sH +wb +wJ +xq +pl tA uA vk @@ -42412,7 +42707,7 @@ ya yX zO SD -BQ +Qg CI Dx Et @@ -42420,9 +42715,9 @@ Fk Gd GK HA -Ir -IU -nh +Mg +EF +oK zO ab ab @@ -42538,11 +42833,11 @@ be Si gJ pZ -RX -So +sH +vo gJ qu -rT +ye sF qu uB @@ -42551,7 +42846,7 @@ vZ vZ xo yc -yY +NQ zO AP BR @@ -42562,7 +42857,7 @@ BU BU GL HB -Is +Mz Sy JN zO @@ -42679,12 +42974,12 @@ Ss Sd Si Sk -ib -Sl +rU +uC gJ gJ qu -rU +yZ sG tB rZ @@ -42704,7 +42999,7 @@ Eu Eu GM HB -Is +Mz BU JO zO @@ -42819,23 +43114,13 @@ RF RA RA RA -Sj -Sl -ib -gJ -gJ -qu -qu -rV -sH nb -uC -vo -wb -wJ -xq -ye -yZ +rT +rV +gJ +gJ +qu +qu zP AR BS @@ -42843,10 +43128,20 @@ CK DA Ev Fl -Ev -GN +FE +GI +xc HC +In +Io +Ip +Iq +Ir +Is +Ir It +KS +MA IV zO zO @@ -42950,7 +43245,7 @@ dV Rx fy fy -kS +du fy fy RI @@ -42961,7 +43256,7 @@ eI nV pZ iJ -RN +rS Sm gJ gJ @@ -43119,7 +43414,7 @@ wc sJ xs yg -zb +Qc qu AT BU @@ -43252,7 +43547,7 @@ gJ gJ qu qu -rY +qZ rX sJ sJ @@ -43373,7 +43668,7 @@ gK gK eI fy -hR +em jt kl kX @@ -43548,15 +43843,15 @@ qu qu qu AW -BU +OY CO DC Ey -Fm +BL Ge GP HF -HF +Qe IY zO ab @@ -43669,7 +43964,7 @@ mZ Nw Pe QI -QZ +Pr fP gJ gJ @@ -43805,7 +44100,7 @@ jD lk jD lN -lU +fU fy na qa @@ -44370,7 +44665,7 @@ aa aa fy fy -kS +kK fy fy ab diff --git a/maps/tether/tether-08-mining.dmm b/maps/tether/tether-08-mining.dmm index 4ac32fc348..46baeb8736 100644 --- a/maps/tether/tether-08-mining.dmm +++ b/maps/tether/tether-08-mining.dmm @@ -257,6 +257,7 @@ pixel_y = 24 }, /obj/structure/cable/green{ + d2 = 2; icon_state = "0-2" }, /obj/machinery/light_switch{ diff --git a/maps/tether/tether-09-solars.dmm b/maps/tether/tether-09-solars.dmm index 7a12cc511d..475200f36c 100644 --- a/maps/tether/tether-09-solars.dmm +++ b/maps/tether/tether-09-solars.dmm @@ -334,10 +334,17 @@ /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "aK" = ( -/obj/structure/cable/heavyduty{ - icon_state = "2-8" - }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable/heavyduty{ + icon_state = "0-8" + }, +/obj/structure/cable/heavyduty{ + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Output"; + name_tag = "Solar Farm Output" + }, /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "aL" = ( @@ -381,30 +388,6 @@ /obj/structure/cable/heavyduty, /turf/simulated/floor/virgo3b_indoors, /area/tether/outpost/solars_shed) -"aP" = ( -/obj/structure/cable/yellow{ - d1 = 1; - d2 = 2; - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Input"; - name_tag = "Solar Farm Input" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/virgo3b, -/area/tether/outpost/solars_outside) -"aQ" = ( -/obj/structure/cable/heavyduty{ - icon_state = "1-2" - }, -/obj/machinery/power/sensor{ - name = "Powernet Sensor - Solar Farm Output"; - name_tag = "Solar Farm Output" - }, -/obj/effect/decal/cleanable/dirt, -/turf/simulated/floor/virgo3b, -/area/tether/outpost/solars_outside) "aR" = ( /obj/effect/decal/cleanable/dirt, /obj/machinery/power/solar_control, @@ -513,6 +496,14 @@ dir = 4 }, /obj/effect/decal/cleanable/dirt, +/obj/structure/cable/yellow{ + d2 = 2; + icon_state = "0-2" + }, +/obj/machinery/power/sensor{ + name = "Powernet Sensor - Solar Farm Input"; + name_tag = "Solar Farm Input" + }, /turf/simulated/floor/virgo3b, /area/tether/outpost/solars_outside) "bd" = ( @@ -6490,6 +6481,11 @@ dir = 8; icon_state = "tube1" }, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "lN" = ( @@ -6879,6 +6875,11 @@ dir = 4 }, /obj/effect/floor_decal/industrial/warning, +/obj/structure/extinguisher_cabinet{ + dir = 4; + icon_state = "extinguisher_closed"; + pixel_x = -30 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "my" = ( @@ -7110,8 +7111,26 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "mQ" = ( -/obj/machinery/light, -/obj/machinery/artifact_scanpad, +/obj/machinery/camera/network/research_outpost{ + dir = 4 + }, +/obj/machinery/atmospherics/unary/vent_pump/on{ + dir = 4 + }, +/obj/structure/cable/green{ + icon_state = "0-4" + }, +/obj/machinery/power/apc{ + cell_type = /obj/item/weapon/cell/super; + dir = 8; + name = "west bump"; + pixel_x = -28 + }, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "mR" = ( @@ -7475,20 +7494,12 @@ /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) "nE" = ( -/obj/machinery/camera/network/research_outpost{ - dir = 4 - }, -/obj/machinery/atmospherics/unary/vent_pump/on{ - dir = 4 - }, -/obj/structure/cable/green{ - icon_state = "0-4" - }, -/obj/machinery/power/apc{ - cell_type = /obj/item/weapon/cell/super; - dir = 8; - name = "west bump"; - pixel_x = -28 +/obj/machinery/light, +/obj/machinery/artifact_scanpad, +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 }, /turf/simulated/floor/tiled, /area/rnd/outpost/anomaly_lab) @@ -8048,6 +8059,14 @@ }, /turf/simulated/floor/wood, /area/rnd/outpost/breakroom) +"oR" = ( +/obj/structure/extinguisher_cabinet{ + dir = 1; + icon_state = "extinguisher_closed"; + pixel_y = -32 + }, +/turf/simulated/floor/tiled, +/area/rnd/outpost/anomaly_lab) "oT" = ( /obj/structure/bed/chair/wood{ dir = 8 @@ -18832,7 +18851,7 @@ ad ad at aI -aP +aW aW bc bf @@ -20536,7 +20555,7 @@ ad ad ad aK -aQ +aX aX bl bn @@ -21767,7 +21786,7 @@ jw nD nM kZ -mQ +nE jx ab ab @@ -21904,7 +21923,7 @@ kx lA ka ol -nE +mQ jx no mD @@ -23755,7 +23774,7 @@ ma nR mJ mW -kZ +oR jx ab ab diff --git a/maps/tether/tether-10-colony.dmm b/maps/tether/tether-10-colony.dmm index b28f538ceb..8b29e3ea3f 100644 --- a/maps/tether/tether-10-colony.dmm +++ b/maps/tether/tether-10-colony.dmm @@ -264,11 +264,11 @@ /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, /obj/effect/floor_decal/industrial/outline/yellow, /obj/structure/window/reinforced{ dir = 1 @@ -418,6 +418,7 @@ /obj/item/weapon/storage/pill_bottle/nutriment, /obj/item/weapon/storage/pill_bottle/iron, /obj/item/weapon/storage/pill_bottle/iron, +/obj/item/weapon/reagent_containers/food/drinks/drinkingglass/fitnessflask/glucose, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 @@ -3374,7 +3375,7 @@ /obj/item/clothing/suit/armor/tdome/red, /obj/item/clothing/head/helmet/thunderdome, /obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/energy/sword/red, +/obj/item/weapon/melee/energy/sword, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 @@ -3425,7 +3426,7 @@ /obj/item/clothing/suit/armor/tdome/green, /obj/item/clothing/head/helmet/thunderdome, /obj/item/weapon/melee/baton/loaded, -/obj/item/weapon/melee/energy/sword/green, +/obj/item/weapon/melee/energy/sword, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 @@ -4324,11 +4325,11 @@ /obj/item/weapon/shield/energy, /obj/item/weapon/shield/energy, /obj/effect/floor_decal/industrial/outline/yellow, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, -/obj/item/weapon/melee/energy/sword/blue, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, +/obj/item/weapon/melee/energy/sword, /turf/unsimulated/floor{ icon_state = "vault"; dir = 5 diff --git a/maps/tether/tether_areas.dm b/maps/tether/tether_areas.dm index 842fccffdb..648f11d584 100644 --- a/maps/tether/tether_areas.dm +++ b/maps/tether/tether_areas.dm @@ -46,19 +46,19 @@ /area/turbolift/t_surface/level2 name = "surface (level 2)" lift_floor_label = "Surface 2" - lift_floor_name = "Atmos, Maintenance" + lift_floor_name = "Atmos, Chapel, Maintenance" lift_announce_str = "Arriving at Base Level 2." /area/turbolift/t_surface/level3 name = "surface (level 3)" lift_floor_label = "Surface 3" - lift_floor_name = "Science, Bar, Pool" + lift_floor_name = "Bridge, Science, Bar, Pool" lift_announce_str = "Arriving at Base Level 3." /area/turbolift/t_station/level1 name = "asteroid (level 1)" lift_floor_label = "Asteroid 1" - lift_floor_name = "Eng, Bridge, Chapel, Park, Cryo" + lift_floor_name = "Eng, Secondary Bridge, Park, Cryo, Visitor Offices" lift_announce_str = "Arriving at Station Level 1." /area/turbolift/t_station/level2 diff --git a/maps/tether/tether_areas2.dm b/maps/tether/tether_areas2.dm index 2f7b2db828..5530083093 100644 --- a/maps/tether/tether_areas2.dm +++ b/maps/tether/tether_areas2.dm @@ -37,14 +37,14 @@ name = "\improper Tram Station" icon_state = "dk_yellow" -/area/tether/surfacebase/atrium_one - name = "\improper Atrium First Floor" +/area/tether/surfacebase/surface_one_hall + name = "\improper First Floor Hallway" icon_state = "dk_yellow" -/area/tether/surfacebase/atrium_two - name = "\improper Atrium Second Floor" +/area/tether/surfacebase/surface_two_hall + name = "\improper Second Floor Hallway" icon_state = "dk_yellow" -/area/tether/surfacebase/atrium_three - name = "\improper Atrium Third Floor" +/area/tether/surfacebase/surface_three_hall + name = "\improper Third Floor Hallway" icon_state = "dk_yellow" /area/tether/surfacebase/north_stairs_one @@ -132,6 +132,9 @@ name = "\improper Mining Bathroom" /area/tether/surfacebase/mining_main/lobby name = "\improper Mining Lobby" +/area/tether/surfacebase/mining_main/surfacecargo + name = "\improper Surface Cargo Office" + lightswitch = 0 // Mining Underdark /area/mine/unexplored/underdark @@ -172,7 +175,8 @@ name = "\improper Exploration Substation" /area/maintenance/tether_midpoint name = "\improper Tether Midpoint Maint" - +/area/maintenance/commandmaint + name = "\improper Command Maintenance" /area/tether/surfacebase/medical icon_state = "medical" @@ -214,6 +218,10 @@ /area/tether/surfacebase/medical/maints name = "\improper Mining Upper Maintenance" +/area/tether/surfacebase/library/study + name = "\improper Library Private Study" + lightswitch = 0 + icon_state = "library" /area/tether/surfacebase/security icon_state = "security" @@ -548,6 +556,10 @@ name = "\improper Dock Two" icon_state = "dk_yellow" +/area/tether/station/burial + name = "\improper Burial" + icon_state = "chapel_morgue" + /area/crew_quarters/showers name = "\improper Unisex Showers" icon_state = "recreation_area_restroom" @@ -659,6 +671,27 @@ icon_state = "dk_yellow" flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm1 + name = "\improper Visitor Lodging 1" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm2 + name = "\improper Visitor Lodging 2" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm3 + name = "\improper Visitor Lodging 3" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED +/area/crew_quarters/sleep/spacedorm4 + name = "\improper Visitor Lodging 4" + icon_state = "dk_yellow" + lightswitch = 0 + flags = RAD_SHIELDED | BLUE_SHIELDED + /area/holodeck/holodorm/source_basic name = "\improper Holodeck Source" flags = RAD_SHIELDED | BLUE_SHIELDED @@ -754,8 +787,30 @@ /area/bridge/secondary name = "\improper Secondary Command Office" +/area/bridge/secondary/hallway + name = "\improper Secondary Command Hallway" /area/bridge/secondary/meeting_room name = "\improper Secondary Command Meeting Room" + lightswitch = 0 +/area/bridge/secondary/teleporter + name = "\improper Secondary Teleporter" + lightswitch = 0 + +/area/tether/station/visitorhallway + name = "\improper Visitor Hallway" + icon_state = "dk_yellow" +/area/tether/station/visitorhallway/office + name = "\improper Visitor Office" + icon_state = "dk_yellow" + lightswitch = 0 +/area/tether/station/visitorhallway/laundry + name = "\improper Space Laundry" + icon_state = "dk_yellow" + lightswitch = 0 +/area/tether/station/visitorhallway/lounge + name = "\improper Visitor Lounge" + icon_state = "dk_yellow" + lightswitch = 0 /area/maintenance/station icon_state = "fsmaint" @@ -790,6 +845,13 @@ /area/maintenance/abandonedlibraryconference name = "\improper Abandoned Library Conference" icon_state = "library" +/area/maintenance/station/spacecommandmaint + name = "\improper Space Command Maintenance" + icon_state = "bridge" + sound_env = SEWER_PIPE +/area/maintenance/substation/spacecommand + name = "\improper Space Command Substation" + icon_state = "substation" /area/shuttle/tether/crash1 name = "\improper Crash Site 1" @@ -1029,7 +1091,7 @@ name = "Small Cruiser Shuttle - Station" icon_state = "blue2" - +// ERT/Deathsquad Shuttle /area/shuttle/specialops/centcom name = "Special Operations Shuttle - Centcom" icon_state = "shuttlered" @@ -1039,6 +1101,11 @@ name = "Special Operations Shuttle - Tether" icon_state = "shuttlered" +/area/shuttle/specialops/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/east + // Tether Map has this shuttle /area/shuttle/tether/surface name = "Tether Shuttle Landed" @@ -1053,13 +1120,66 @@ name = "Tether Shuttle Transit" icon_state = "shuttle2" +//Skipjack + +/area/skipjack_station + name = "Raider Outpost" + icon_state = "yellow" + requires_power = 0 + dynamic_lighting = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/skipjack_station/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/north + +/area/skipjack_station/orbit + name = "near the Tether" + icon_state = "northwest" + +/area/skipjack_station/arrivals_dock + name = "\improper docked with Tether" + icon_state = "shuttle" + +// Ninja areas +/area/ninja_dojo + name = "\improper Ninja Base" + icon_state = "green" + requires_power = 0 + flags = RAD_SHIELDED + ambience = AMBIENCE_HIGHSEC + +/area/ninja_dojo/dojo + name = "\improper Clan Dojo" + dynamic_lighting = 0 + +/area/ninja_dojo/start + name = "\improper Clan Dojo" + icon_state = "shuttlered" + base_turf = /turf/simulated/floor/plating + +/area/ninja_dojo/orbit + name = "near the Tether" + icon_state = "south" + +/area/ninja_dojo/transit + name = "transit" + icon_state = "shuttlered" + base_turf = /turf/space/transit/north + +/area/ninja_dojo/arrivals_dock + name = "\improper docked with Tether" + icon_state = "shuttle" + dynamic_lighting = 0 // Exclude some more areas from the atmos leak event so people don't get trapped when spawning. /datum/event/atmos_leak/setup() excluded |= /area/tether/surfacebase/tram - excluded |= /area/tether/surfacebase/atrium_one - excluded |= /area/tether/surfacebase/atrium_two - excluded |= /area/tether/surfacebase/atrium_three + excluded |= /area/tether/surfacebase/surface_one_hall + excluded |= /area/tether/surfacebase/surface_two_hall + excluded |= /area/tether/surfacebase/surface_three_hall excluded |= /area/teleporter/departing excluded |= /area/hallway/station/upper ..() \ No newline at end of file diff --git a/maps/tether/tether_defines.dm b/maps/tether/tether_defines.dm index d12138c922..3dcbeb82eb 100644 --- a/maps/tether/tether_defines.dm +++ b/maps/tether/tether_defines.dm @@ -19,6 +19,7 @@ #define Z_LEVEL_AEROSTAT 18 #define Z_LEVEL_AEROSTAT_SURFACE 19 #define Z_LEVEL_DEBRISFIELD 20 +#define Z_LEVEL_GATEWAY 21 //Camera networks #define NETWORK_TETHER "Tether" @@ -121,13 +122,21 @@ /area/tether/surfacebase/emergency_storage/atrium) lateload_z_levels = list( - list("Tether - Misc","Tether - Ships","Tether - Underdark","Tether - Plains"), //Stock Tether lateload maps + list("Tether - Ships","Tether - Underdark","Tether - Plains"), //Stock Tether lateload maps //YW Edit - removed Tether - Misc list("Alien Ship - Z1 Ship"), list("Desert Planet - Z1 Beach","Desert Planet - Z2 Cave"), list("Remmi Aerostat - Z1 Aerostat","Remmi Aerostat - Z2 Surface"), list("Debris Field - Z1 Space") ) + lateload_single_pick = list( + //list("Snow Outpost"), // Unplayable mapgen, + //list("Zoo"), // Too big. way, way too big + list("Carp Farm"), + list("Snow Field"), + list("Listening Post") + ) + ai_shell_restricted = TRUE ai_shell_allowed_levels = list( Z_LEVEL_SURFACE_LOW, diff --git a/maps/tether/tether_shuttles.dm b/maps/tether/tether_shuttles.dm index 0eb8c6fe41..bdc4da6d2c 100644 --- a/maps/tether/tether_shuttles.dm +++ b/maps/tether/tether_shuttles.dm @@ -282,6 +282,129 @@ my_area = /area/shuttle/excursion/bluespace preferred_interim_area = /area/shuttle/excursion/space_moving +// Heist +/obj/machinery/computer/shuttle_control/web/heist + name = "skipjack control console" + req_access = list(access_syndicate) + shuttle_tag = "Skipjack" + +/datum/shuttle/web_shuttle/heist + name = "Skipjack" + warmup_time = 0 + can_cloak = TRUE + cloaked = TRUE + current_area = /area/skipjack_station/start +// docking_controller_tag = "skipjack_shuttle" + web_master_type = /datum/shuttle_web_master/heist + +/datum/shuttle_web_master/heist + destination_class = /datum/shuttle_destination/heist + starting_destination = /datum/shuttle_destination/heist/root + +/datum/shuttle_destination/heist/root + name = "Raider Outpost" + my_area = /area/skipjack_station/start + preferred_interim_area = /area/skipjack_station/transit + +// dock_target = "skipjack_base" + + routes_to_make = list( + /datum/shuttle_destination/heist/outside_Tether = 1 MINUTE, + // /datum/shuttle_destination/heist/docked_Tether = 1 MINUTE + ) + +/datum/shuttle_destination/heist/outside_Tether + name = "NSB Adephagia - Nearby" + my_area = /area/skipjack_station/orbit + preferred_interim_area = /area/skipjack_station/transit + + routes_to_make = list( + /datum/shuttle_destination/heist/root = 1 MINUTE, + // /datum/shuttle_destination/heist/docked_Tether = 0 + ) + +/* +/datum/shuttle_destination/heist/docked_Tether + name = "NSB Adephagia - Arrivals Docking Port" + my_area = /area/skipjack_station/arrivals_dock + preferred_interim_area = /area/skipjack_station/transit + +// dock_target = "skipjack_shuttle_dock_airlock" + announcer = "NSB Adephagia Docking Computer" + + routes_to_make = list( + /datum/shuttle_destination/heist/root = 1 MINUTE, + /datum/shuttle_destination/heist/outside_Tether = 0 + ) + +/datum/shuttle_destination/heist/docked_SC/get_arrival_message() + return "Attention, [master.my_shuttle.visible_name] has arrived to the Arrivals Dock." + +/datum/shuttle_destination/heist/docked_SC/get_departure_message() + return "Attention, [master.my_shuttle.visible_name] has departed the Arrivals Dock." +*/ + +// Ninja +/obj/machinery/computer/shuttle_control/web/ninja + name = "stealth shuttle control console" + req_access = list(access_syndicate) + shuttle_tag = "Ninja" + +/datum/shuttle/web_shuttle/ninja + name = "Ninja" + visible_name = "Unknown Vessel" + warmup_time = 0 + can_cloak = TRUE + cloaked = TRUE + current_area = /area/ninja_dojo/start + docking_controller_tag = "ninja_shuttle" + web_master_type = /datum/shuttle_web_master/ninja + +/datum/shuttle_web_master/ninja + destination_class = /datum/shuttle_destination/ninja + starting_destination = /datum/shuttle_destination/ninja/root + +/datum/shuttle_destination/ninja/root + name = "Dojo Outpost" + my_area = /area/ninja_dojo/start + preferred_interim_area = /area/ninja_dojo/transit + + dock_target = "ninja_base" + + routes_to_make = list( + /datum/shuttle_destination/ninja/outside_Tether = 30 SECONDS, + // /datum/shuttle_destination/ninja/docked_Tether = 30 SECONDS + ) + +/datum/shuttle_destination/ninja/outside_Tether + name = "NSB Adephagia - Nearby" + my_area = /area/ninja_dojo/orbit + preferred_interim_area = /area/ninja_dojo/transit + + routes_to_make = list( + /datum/shuttle_destination/ninja/root = 30 SECONDS, + // /datum/shuttle_destination/ninja/docked_Tether = 0 + ) +/* +/datum/shuttle_destination/ninja/docked_Tether + name = "NSB Adephagia - Arrivals Docking Port" + my_area = /area/ninja_dojo/arrivals_dock + preferred_interim_area = /area/ninja_dojo/transit + + dock_target = "ninja_shuttle_dock_airlock" + announcer = "NSB Adephagia Docking Computer" + + routes_to_make = list( + /datum/shuttle_destination/ninja/root = 30 SECONDS, + /datum/shuttle_destination/ninja/outside_Tether = 0 + ) + +/datum/shuttle_destination/syndie/docked_SC/get_arrival_message() + return "Attention, [master.my_shuttle.visible_name] has arrived to the Arrivals Dock." + +/datum/shuttle_destination/syndie/docked_SC/get_departure_message() + return "Attention, [master.my_shuttle.visible_name] has departed the Arrivals Dock." +*/ //////////////////////////////////// //////// Specops Shuttle /////////// @@ -310,13 +433,14 @@ /datum/shuttle_destination/specialops/tether name = "NSB Adephagia Docking Arm 2" my_area = /area/shuttle/specialops/tether + preferred_interim_area = /area/shuttle/specialops/transit dock_target = "specops_dock" radio_announce = 1 announcer = "A.L.I.C.E." routes_to_make = list( - /datum/shuttle_destination/specialops/centcom = 0, + /datum/shuttle_destination/specialops/centcom = 15, ) /datum/shuttle_destination/specialops/tether/get_arrival_message() @@ -329,7 +453,8 @@ /datum/shuttle_destination/specialops/centcom name = "Central Command" my_area = /area/shuttle/specialops/centcom + preferred_interim_area = /area/shuttle/specialops/transit routes_to_make = list( - /datum/shuttle_destination/specialops/tether = 0 + /datum/shuttle_destination/specialops/tether = 15 ) \ No newline at end of file diff --git a/maps/yw/cryogaia-01-centcomm.dmm b/maps/yw/cryogaia-01-centcomm.dmm index 081ff81357..5ee974f83b 100644 --- a/maps/yw/cryogaia-01-centcomm.dmm +++ b/maps/yw/cryogaia-01-centcomm.dmm @@ -296,7 +296,7 @@ "fJ" = (/obj/machinery/embedded_controller/radio/simple_docking_controller{frequency = 1380; id_tag = "trade_shuttle_bay"; name = "shuttle bay controller"; pixel_x = 25; pixel_y = 0; tag_door = "trade_shuttle_bay_door"},/turf/unsimulated/floor{icon_state = "steel"},/area/syndicate_mothership{name = "\improper Trader Base"}) "fK" = (/obj/machinery/door/airlock/external{frequency = 1380; icon_state = "door_locked"; id_tag = "arrivals_shuttle_hatch"; locked = 1; name = "Shuttle Hatch"; req_access = list(13)},/turf/simulated/shuttle/floor,/area/shuttle/arrival/pre_game) "fL" = (/turf/simulated/shuttle/floor,/area/shuttle/arrival/pre_game) -"fM" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating,/area/shuttle/arrival/pre_game) +"fM" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/syndicate_elite/mothership) "fN" = (/turf/space,/area/syndicate_mothership/elite_squad) "fO" = (/turf/simulated/shuttle/wall/dark/no_join,/area/syndicate_mothership/elite_squad) "fP" = (/obj/machinery/computer/pod{id = "syndicate_elite"; name = "Hull Door Control"},/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership/elite_squad) @@ -727,7 +727,7 @@ "nY" = (/obj/structure/table/rack,/obj/item/ammo_casing/rocket,/obj/item/ammo_casing/rocket,/obj/item/ammo_casing/rocket,/obj/item/ammo_casing/rocket,/obj/item/ammo_casing/rocket,/obj/item/ammo_casing/rocket,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "nZ" = (/obj/structure/table/rack,/obj/item/weapon/gun/launcher/rocket,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "oa" = (/obj/structure/table/rack,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/obj/item/weapon/rig/ert/assetprotection,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) -"ob" = (/obj/structure/table/rack,/obj/item/weapon/melee/energy/sword/blue,/obj/item/weapon/melee/energy/sword/blue,/obj/item/weapon/melee/energy/sword/blue,/obj/item/weapon/melee/energy/sword/blue,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) +"ob" = (/obj/structure/table/rack,/obj/item/weapon/melee/energy/sword,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "oc" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/xray,/obj/item/weapon/gun/energy/xray,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "od" = (/obj/structure/table/rack,/obj/item/weapon/gun/energy/laser,/obj/item/weapon/gun/energy/laser,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) "oe" = (/obj/structure/table/rack,/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/rubber,/obj/item/ammo_magazine/m45/flash,/obj/item/ammo_magazine/m45/flash,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/obj/item/ammo_magazine/m45,/turf/unsimulated/floor{icon_state = "dark"},/area/centcom/specops) @@ -1379,7 +1379,7 @@ "AA" = (/obj/structure/bed/chair{dir = 1},/turf/simulated/shuttle/floor,/area/shuttle/transport1/centcom) "AB" = (/obj/structure/bed/chair{dir = 1},/obj/machinery/light,/turf/simulated/shuttle/floor,/area/shuttle/transport1/centcom) "AC" = (/obj/structure/shuttle/engine/heater{icon_state = "heater"; dir = 4},/obj/structure/window/reinforced{dir = 8},/obj/structure/window/reinforced{dir = 1},/turf/simulated/shuttle/plating/airless,/area/shuttle/transport1/centcom) -"AD" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/syndicate_elite/mothership) +"AD" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/syndicate_elite/mothership) "AE" = (/obj/effect/floor_decal/corner/red{dir = 1},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/centcom/security) "AF" = (/obj/item/weapon/stool/padded,/obj/effect/floor_decal/corner/red{dir = 5},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/centcom/security) "AG" = (/obj/machinery/computer/secure_data,/obj/effect/floor_decal/corner/red/full{dir = 1},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/centcom/security) @@ -1401,7 +1401,7 @@ "AW" = (/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/tram) "AX" = (/obj/structure/bed/chair,/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/tram) "AY" = (/obj/effect/wingrille_spawn/reinforced/crescent,/turf/unsimulated/floor{icon_state = "plating"; name = "plating"},/area/centcom/tram) -"AZ" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/syndicate_elite/mothership) +"AZ" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/syndicate_elite/mothership) "Ba" = (/obj/machinery/computer/security,/obj/effect/floor_decal/corner/red{dir = 6},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/centcom/security) "Bb" = (/obj/structure/bed/chair,/obj/effect/floor_decal/corner/white/diagonal,/turf/unsimulated/floor{icon_state = "steel"},/area/centcom/restaurant) "Bc" = (/obj/effect/wingrille_spawn/reinforced/crescent,/turf/unsimulated/floor{icon_state = "plating"; name = "plating"},/area/centcom/main_hall) @@ -1577,7 +1577,7 @@ "Eq" = (/obj/machinery/vending/cola,/turf/unsimulated/floor{icon_state = "lino"},/area/centcom/tram) "Er" = (/obj/machinery/vending/snack,/turf/unsimulated/floor{icon_state = "lino"},/area/centcom/tram) "Es" = (/obj/machinery/vending/coffee,/turf/unsimulated/floor{icon_state = "lino"},/area/centcom/tram) -"Et" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 1},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/syndicate_elite/mothership) +"Et" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) "Eu" = (/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) "Ev" = (/obj/effect/floor_decal/corner/green{dir = 4},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) "Ew" = (/obj/structure/table/standard,/obj/item/roller,/obj/item/roller{pixel_y = 8},/obj/item/roller{pixel_y = 16},/obj/effect/floor_decal/corner/green{dir = 5},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) @@ -1898,12 +1898,12 @@ "Kz" = (/obj/structure/table/standard,/obj/item/weapon/surgical/cautery{pixel_y = 4},/obj/item/weapon/surgical/hemostat{pixel_y = 4},/obj/item/stack/nanopaste,/obj/effect/floor_decal/corner/pink{dir = 9},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) "KA" = (/obj/effect/floor_decal/corner/pink{dir = 6},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) "KB" = (/obj/machinery/door/airlock/glass_medical{name = "Virology Laboratory"},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) -"KC" = (/obj/structure/table/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/red,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/obj/item/weapon/melee/energy/sword/red,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) +"KC" = (/obj/structure/table/rack,/obj/item/clothing/under/color/red,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/red,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) "KD" = (/obj/machinery/door/blast/regular{id = "thunderdomegen"; name = "General Supply"},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) "KE" = (/obj/effect/landmark{name = "tdome2"},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome/tdome2) "KF" = (/obj/machinery/door/blast/regular{id = "thunderdome"; name = "Thunderdome Blast Door"},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) "KG" = (/obj/effect/landmark{name = "tdome1"},/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome/tdome1) -"KH" = (/obj/structure/table/rack,/obj/item/clothing/under/color/green,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/green,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/obj/item/weapon/melee/energy/sword/green,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) +"KH" = (/obj/structure/table/rack,/obj/item/clothing/under/color/green,/obj/item/clothing/shoes/brown,/obj/item/clothing/suit/armor/tdome/green,/obj/item/clothing/head/helmet/thunderdome,/obj/item/weapon/melee/baton/loaded,/turf/unsimulated/floor{icon_state = "vault"; dir = 5},/area/tdome) "KI" = (/obj/structure/table/woodentable/holotable,/turf/simulated/floor/holofloor/carpet,/area/holodeck/holodorm/source_seating) "KJ" = (/obj/structure/table/standard,/obj/item/weapon/surgical/bonesetter,/obj/item/weapon/surgical/bonegel{pixel_x = 4; pixel_y = 3},/obj/effect/floor_decal/corner/pink{dir = 9},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) "KK" = (/obj/machinery/computer/operating,/obj/effect/floor_decal/corner/pink{dir = 6},/turf/unsimulated/floor{icon_state = "white"},/area/centcom/medical) @@ -2126,8 +2126,8 @@ "OT" = (/obj/structure/reagent_dispensers/watertank,/obj/item/weapon/reagent_containers/glass/bucket{amount_per_transfer_from_this = 50},/turf/simulated/shuttle/floor,/area/centcom/evac) "OU" = (/obj/item/weapon/mop,/obj/structure/mopbucket,/turf/simulated/shuttle/floor,/area/centcom/evac) "OV" = (/obj/structure/table/rack,/obj/item/weapon/reagent_containers/spray/cleaner{pixel_x = 6; pixel_y = 3},/obj/item/clothing/accessory/storage/brown_vest,/turf/simulated/shuttle/floor,/area/centcom/evac) -"OW" = (/obj/structure/grille,/obj/structure/window/shuttle{icon_state = "window4"},/turf/simulated/shuttle/plating,/area/centcom/evac) -"OX" = (/obj/structure/grille,/obj/structure/window/shuttle{icon_state = "window8"},/turf/simulated/shuttle/plating,/area/centcom/evac) +"OW" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) +"OX" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) "OY" = (/turf/unsimulated/floor{icon_state = "white"},/area/syndicate_mothership{name = "\improper Raider Base"}) "OZ" = (/obj/structure/table/standard,/obj/machinery/chemical_dispenser/bar_soft/full,/turf/unsimulated/floor{icon_state = "white"},/area/syndicate_mothership{name = "\improper Raider Base"}) "Pa" = (/obj/item/weapon/bedsheet/orange,/obj/effect/decal/cleanable/cobweb2{icon_state = "cobweb1"},/obj/structure/bed/padded,/turf/unsimulated/floor{icon_state = "dark"},/area/syndicate_mothership{name = "\improper Raider Base"}) @@ -2400,36 +2400,36 @@ "Uh" = (/obj/machinery/teleport/station,/turf/unsimulated/floor{icon_state = "dark"},/area/wizard_station) "Ui" = (/obj/machinery/teleport/hub,/turf/unsimulated/floor{icon_state = "dark"},/area/wizard_station) "Uj" = (/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) -"Uk" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) -"Ul" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) -"Um" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/trade/centcom) -"Un" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/grass/both,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"},/area/syndicate_mothership) -"Uo" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/tree/pine,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"},/area/syndicate_mothership) -"Up" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/grass/brown,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"; dir = 4},/area/syndicate_mothership) -"Uq" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/grass/brown,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"; dir = 8},/area/syndicate_mothership) -"Ur" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/bush,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"; dir = 8},/area/syndicate_mothership) -"Us" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_mothership) -"Ut" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_mothership) -"Uu" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_mothership) -"Uv" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/specops/centcom) -"Uw" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/specops/centcom) -"Ux" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/specops/centcom) -"Uy" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/administration/centcom) -"Uz" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/administration/centcom) -"UA" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_station/start) -"UB" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_station/start) -"UC" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_station/start) -"UD" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/shuttle/plating/airless/carry{icon_state = "platform"; dir = 1},/area/supply/dock) -"UE" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry{icon_state = "platform"; dir = 1},/area/supply/dock) -"UF" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/shuttle/plating/airless/carry{icon_state = "platform"; dir = 1},/area/supply/dock) -"UG" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) -"UH" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) -"UI" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) -"UJ" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) -"UK" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape/centcom) -"UL" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/centcom/evac) -"UM" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/centcom/evac) -"UN" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/centcom/evac) +"Uk" = (/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/arrival/pre_game) +"Ul" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/grass/both,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"},/area/syndicate_mothership) +"Um" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/tree/pine,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"},/area/syndicate_mothership) +"Un" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/grass/brown,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"; dir = 4},/area/syndicate_mothership) +"Uo" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/grass/brown,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"; dir = 8},/area/syndicate_mothership) +"Up" = (/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "snow"},/obj/structure/flora/bush,/turf/unsimulated/floor{icon = 'icons/turf/snow.dmi'; icon_state = "gravsnow_corner"; dir = 8},/area/syndicate_mothership) +"Uq" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_mothership) +"Ur" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_mothership) +"Us" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_mothership) +"Ut" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/specops/centcom) +"Uu" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/specops/centcom) +"Uv" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/specops/centcom) +"Uw" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/administration/centcom) +"Ux" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/administration/centcom) +"Uy" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_station/start) +"Uz" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_station/start) +"UA" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/syndicate_station/start) +"UB" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"},/turf/simulated/shuttle/plating/airless/carry{icon_state = "platform"; dir = 1},/area/supply/dock) +"UC" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry{icon_state = "platform"; dir = 1},/area/supply/dock) +"UD" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"},/turf/simulated/shuttle/plating/airless/carry{icon_state = "platform"; dir = 1},/area/supply/dock) +"UE" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) +"UF" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) +"UG" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "propulsion_r"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) +"UH" = (/turf/space,/obj/structure/shuttle/engine/propulsion{icon_state = "burst_l"; dir = 4},/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/transport1/centcom) +"UI" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/shuttle/escape/centcom) +"UJ" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_l"},/turf/simulated/shuttle/plating/airless/carry,/area/centcom/evac) +"UK" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8},/turf/simulated/shuttle/plating/airless/carry,/area/centcom/evac) +"UL" = (/turf/space,/obj/structure/shuttle/engine/propulsion{dir = 8; icon_state = "propulsion_r"},/turf/simulated/shuttle/plating/airless/carry,/area/centcom/evac) +"UM" = (/obj/structure/grille,/obj/structure/window/shuttle{icon_state = "window4"},/obj/structure/shuttle/window,/turf/simulated/shuttle/plating,/area/centcom/evac) +"UN" = (/obj/structure/grille,/obj/structure/window/shuttle{icon_state = "window8"},/obj/structure/shuttle/window,/turf/simulated/shuttle/plating,/area/centcom/evac) "UO" = (/turf/space,/obj/structure/shuttle/engine/propulsion,/turf/simulated/shuttle/plating/airless/carry,/area/skipjack_station/start) (1,1,1) = {" @@ -2465,48 +2465,48 @@ aaajajajajajajajbpbDbDbDbDbDbDbDbDbDbDbDbDbDbqajajajajajajajaaajaaajajajajajajaj aaajajajajajajajbpbDbDbDbDbDbDbDbDbDbDbDbDbDbqajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafamqEraqEqEqEqEapsmsSsmsSsmsSapujujujujujujaFafafafafafexexexeFeMeFeFeFeFeHePePeHeFeQeHeHeHeHeHeHexafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajbpbDbDbDbDbDbDbDbDbDbDbDbDbDbqajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajajaaaaaaaaaaaaaaajajajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahcvcvcvcvcvcvahcvcvcvcvcvcvahcvcvcvcvcvcvahafafafafafexeReSeFeFeFeFeFeFeHePePeHeFeQeHeHeHeHeHeHexafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajbqbqbqbqbqbDbDbDbDbDbqbqbqbqbqajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajaaaaeTeTeTeTeTaaaaajajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeUeVeVeVeVeVeUafafafafafafafafafafafafafafafafafafafafafamvHxUygygyhvHapyiyvyxyxzJyxapAaAaAaAaAaAaaFafafafafafexexexeWeXexexexeFeHePePeKeFexeHeHeHeHeHeHexafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajajajajajbqbqbqbqbqbqbqajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajaaeTeTeYeZfheTeTaaajajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbADAZEtfbeUafafafafafafafafafafafafafafafafafafafafafamvHEyKIKIMzvHapyxyvyxyxzJyxapAaAaAaAaAaAaaFafafafafafexffeXeXeXeXfgexeFeHeHeHeKeFexeLeHeGeHeLeHexafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajajajajajbqbqbqbqbqbqbqajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajaaeTeTeYeZfheTeTaaajajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfMADAZfbeUafafafafafafafafafafafafafafafafafafafafafamvHEyKIKIMzvHapyxyvyxyxzJyxapAaAaAaAaAaAaaFafafafafafexffeXeXeXeXfgexeFeHeHeHeKeFexeLeHeGeHeLeHexafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajaaaaeTfhfifhfjfkeTaaaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbflflflfbeUeUeUeUafafafafafafafafafafafafafafafafafafamvHMMNgNgSWvHapyxyvyxyxzJUjapAaAaAaAaAaAaaFafafafafafexffeXfmfneXfgexeFeFeFeFeFeFexeGeHeGeHeGeHexafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajajfofofofofofofofofoajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajaaeTeTfpfqfreTfseTeTaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbftftftfbeUfufveUafafafafafafafafafafafafafafafafafafahewewewewewewahewewewewewewahewewewewewewahafafafafafexexexexexexexexexexeFeFexexexexexexexexexexafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajfwfxfyfyfyfyfyfyfyfofwajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajaafzfAfBfCfDfEfFfAfzaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfGfHfIfbeUeUeUeUeUeUeUeUeUeUeUeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafexeFfJexafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfwfwfwfwfwajfwfwfwajajajfwfwfwajfwfwfwfwfwfwajajajajajajajaaajaaajajajajajajajaafKfLfLfLfLfLfLfLfzaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfGfHfIfbfNfOfPfQfRfSfOfTfUfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafexeFeFexafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaabajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfWfwfwfWfwajfwfWfwfwfwfwfwfWfwajfwfWfwfwfWfwajajajajajajajaaajaaajajajajajajajaafzfXfYfYfLfYfYfZfzaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfGfHfIfbgafOfSfSfRfSfOfSfVfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafexgbgbexafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfwfwfwfWfWfWfWfWfWfWfwfwfwfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaeTgcgdgdfLgdgdgeeTaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfHfHfHgfggghfSfSfRfSfOfTfUfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgigjgjgiafafafafgkgkgkgkgkafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajbqfxfxfobqajbqfxfxfobqajajajajajajajajaaafafafajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfwfwfWfWfWfWfWfWfWfWfWfwfwfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaglgmgmgmfLgmgmgmglaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfHfHfHgfggghfSfSfSfSgnfSfVfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkgkgkgkgogpgqgkafafafafafgkgkgrgsgkgkafafgkgkgkgkgtUkafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfwfwfWfWfWfWfWfWfWfWfWfwfwfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaglgxgxgxgygzgxgxglaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbgAfHgBfbgafOfSfSfRfSfOfTfUfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgigCgDgkgEgFgGgHgIgkgkafafafgkgkgigjgjgigkgogqgigJgKgkgtUlafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajajajajfwfofyfyfyfyfyfyfyfofwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaglgMgMgMfLgMgMgMglaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbgNgOgNfbfNfOfSfSfRfSfOfSfVfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgPgQgRgRgSgRgRgTgUgVgkgkgogpgqgkgkgWgRgRgXgkgYgZhagRhbgkgtUlafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajajajajfofofyfyfyfyfyfyfyfofwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaeTgcgdgdfLgdgdgeeTaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVhcfbhdfbhcfNfOfSfSfRfSfOfTfUfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhehfhghhgkgRgRhihjhkgkhlhmhnhohphqhrhshsgRhtgRgRgRgRhugkgtUmafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajbqfxfxfobqajbqfxfxfobqajajajajajajajajaaafafafajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfwfwfWfWfWfWfWfWfWfWfWfwfwfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaglgmgmgmfLgmgmgmglaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbfHfHfHgfggghfSfSfSfSgnfSfVfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkgkgkgkgogpgqgkafafafafafgkgkgrgsgkgkafafgkgkgkgkgtEtafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajajajajfwfyfyfyfyfyfyfyfyfyfwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfwfwfWfWfWfWfWfWfWfWfWfwfwfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaglgxgxgxgygzgxgxglaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbgAfHgBfbgafOfSfSfRfSfOfTfUfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgigCgDgkgEgFgGgHgIgkgkafafafgkgkgigjgjgigkgogqgigJgKgkgtOWafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajajajajfwfofyfyfyfyfyfyfyfofwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaglgMgMgMfLgMgMgMglaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVfbgNgOgNfbfNfOfSfSfRfSfOfSfVfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgPgQgRgRgSgRgRgTgUgVgkgkgogpgqgkgkgWgRgRgXgkgYgZhagRhbgkgtOWafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajajajajfofofyfyfyfyfyfyfyfofwajajajajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaaeTgcgdgdfLgdgdgeeTaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeVhcfbhdfbhcfNfOfSfSfRfSfOfTfUfVfVeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhehfhghhgkgRgRhihjhkgkhlhmhnhohphqhrhshsgRhtgRgRgRgRhugkgtOXafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajfofofofofyfyfyfyfyfyfyfyfyfofofwfoajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaafzhwhxhxfLhxhxhyfzaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafeUeUeUeUeUeUeUeUeUeUeUeUeUeUeUeUeUeUafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkgkgkgkhzgRgRhAgkhBhChDhEhFhGhHhshsgRhtgRhIhJgRgRgkgkgkafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajbqgvgvgvbqajbqgwgwgwbqajajajajajajajajaaafafafajaaajajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaafKfLfLfLfLfLfLfLfzaaajajajajajajajaaafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkhKgRgkgihLhMhNhOhPhQhHhsgRhzgigkgkgihRhSgkgkafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajbqbqbqbqbqajbqbqbqbqbqajajajajajajajajaaafafafajaaajajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajaaajaaajajajajajajajaafzhTgdfLfLfLgdhUfzaaajajajajajajajaaafafafafafafafafafafafafafafafafhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVafafafafafafafafafafafafafafafafafafafafafafafafgkhWhXgkgkgkgkgkgkgkgkhYgRgRgRgRhZgRgRgRgRgkgkiagRgigkibibgkgkgkgkafafafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajfwfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwfwajajajajajajaaajaaajajajajajajajaaeTfdidgziegxiffeeTaaajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihihihiiihihihijikihihihijihihihihihihijihihhVafafafafafafafafafafafafafafafafafafafafafafafgkgkilimgkingkioipiqgigkirgRhshshshshshshshshsgRhsgRisithshsgRgkgtUkafafafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfxfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajaaajaaajajajajajajajaaaafMeTgugugueTfMaaaaajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihiiihihihihihihihihihihihijihihihihihijihihihihihhVafafafafafafafafafafafafafafafafafafafafafafafiwixhsiygkizgigkiAgkiBgkiChshsiDiEiFiGiHiIiJhshshshsiKiLhshsgRgkgtUlafafafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfofyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajaaajaaajajajajajajajajaaabeTfMfMfMeTaaaaajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihiMihihihihihiiihihikijihihijihihijikihijihhVafafafafafafafafafafafafafafafafafafafafafafafiNiOiPhsiQgRgRgRgRiRgRgRgRhshsiSiTiUiViWiXiYhshshshsiZhshshsgRgkgtUlafafafafafafafafafafafafafafafafafafafafafafafaf -aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfofyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaafajajaaajajajajajfwfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwfwajajajajajajaaajaaajajajajajajajajajaaaaaaaaaaaaaaajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihihihihihihihihihihihihiiihihijikihihijihikhVafafafafafafafafafafafafafafafafafafafafafafafgkgkjajbgkjcjdjejfjggRjhgRgRhshshshshshshshshsgRhsgRjigRjjhshbgkgtUmafafafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajfwfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwfwajajajajajajaaajaaajajajajajajajaaeTfdidgziegxiffeeTaaajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihihihiiihihihijikihihihijihihihihihihijihihhVafafafafafafafafafafafafafafafafafafafafafafafgkgkilimgkingkioipiqgigkirgRhshshshshshshshshsgRhsgRisithshsgRgkgtEtafafafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfxfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajaaajaaajajajajajajajaaaaUkeTgugugueTUkaaaaajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihiiihihihihihihihihihihihijihihihihihijihihihihihhVafafafafafafafafafafafafafafafafafafafafafafafiwixhsiygkizgigkiAgkiBgkiChshsiDiEiFiGiHiIiJhshshshsiKiLhshsgRgkgtOWafafafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfofyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaajajajaaajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajaaajaaajajajajajajajajaaabeTUkUkUkeTaaaaajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihiMihihihihihiiihihikijihihijihihijikihijihhVafafafafafafafafafafafafafafafafafafafafafafafiNiOiPhsiQgRgRgRgRiRgRgRgRhshsiSiTiUiViWiXiYhshshshsiZhshshsgRgkgtOWafafafafafafafafafafafafafafafafafafafafafafafaf +aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajajfofyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajajaaafajajaaajajajajajfwfwfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfWfwfwajajajajajajaaajaaajajajajajajajajajaaaaaaaaaaaaaaajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihihihihihihihihihihihihiiihihijikihihijihikhVafafafafafafafafafafafafafafafafafafafafafafafgkgkjajbgkjcjdjejfjggRjhgRgRhshshshshshshshshsgRhsgRjigRjjhshbgkgtOXafafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajfwfofyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfofwajajajaaajajajaaajajajajajajfwfwfwfwfwfWfWfWfWfWfWfWfWfWfWfWfWfWfwfwfwfwfwajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihihihihihihihihihihiiihihihihihikihijikihijihhVafafafafafafafafafafafafafafafafafafafafafafafafgkjkjlgkgkgkgkgkgkgkgijmgRgRgRgRhIgRgRgRgRgkgkiagRgigkjnjogkgkgkgkafafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihihjpjpjpjpjpjpjpihihihihihihihijihihiMikihihihhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkhKgRgkgijqjrjsjtjuhqjvhsgRjwgigkgkgkgRjxgkgkafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjyjzjAjAjAjBjyjyihihihihiMihihiiihiiihijihijhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkgkgkgRjwgRgRjCgkjDjEjFjGjHhGjIhshsgRjJgRhZgRgRgRgkgkgkafafafafafafafafafafafafafafafafafafafafafaf -aaajbqfxfxfobqajbqfxfxfobqajajbqfxfxfobqajbqfxfxfobqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjKjKjKjKjKjKjKjyjLihihjpjpjpjpjpjpjpjpUnUojphVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafjOjPjQjRgkgRgRgTjSjTgkjUjVjWjXjYhQjZhshsgRjJgRgRgRgRgRgkgtUkafafafafafafafafafafafafafafafafafafafafafaf -aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajfwfwfwfWfWfWfWfWfWfWfWfWfwfwfwajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjKjKjKjKjKjKjKjyjLihkekfkgkgkhhVhVhVhVhVhVhVhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafkigRgRgRkjgRgRkkklkmgkgkknkokpgkgkkqkrksgRgkktkukvgRhbgkgtUlafafafafafafafafafafafafafafafafafafafafafaf -aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajajajfwfwfWfWfWfWfWfWfWfwfwajajajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjKjKjKjKjKjKjKjyjLiMkekwfVfVfVkxkyhVkzkAkBhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgikCkDgkkEgRkFkGkHgkgkafafafgkgkgikIkJgigkknkpgkkKkLgkgtUlafafafafafafafafafafafafafafafafafafafafafaf -aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajajajajfwfwfwfwfwfwfwfwfwajajajajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjyjyjyjKjyjyjyjyihihUpkwfVfVkNfVfVkOfVfVfVhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkgkgkgkknkokpgkafafafafafgkgkkPkQgkgkafafgkgkgkgkgtUmafafafafafafafafafafafafafafafafafafafafafaf +aaajbqfxfxfobqajbqfxfxfobqajajbqfxfxfobqajbqfxfxfobqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajfwfWfWfWfWfWfWfWfWfWfWfWfWfWfwajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjKjKjKjKjKjKjKjyjLihihjpjpjpjpjpjpjpjpUlUmjphVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafjOjPjQjRgkgRgRgTjSjTgkjUjVjWjXjYhQjZhshsgRjJgRgRgRgRgRgkgtEtafafafafafafafafafafafafafafafafafafafafafaf +aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajfwfwfwfWfWfWfWfWfWfWfWfWfwfwfwajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjKjKjKjKjKjKjKjyjLihkekfkgkgkhhVhVhVhVhVhVhVhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafkigRgRgRkjgRgRkkklkmgkgkknkokpgkgkkqkrksgRgkktkukvgRhbgkgtOWafafafafafafafafafafafafafafafafafafafafafaf +aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajajajfwfwfWfWfWfWfWfWfWfwfwajajajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjKjKjKjKjKjKjKjyjLiMkekwfVfVfVkxkyhVkzkAkBhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgikCkDgkkEgRkFkGkHgkgkafafafgkgkgikIkJgigkknkpgkkKkLgkgtOWafafafafafafafafafafafafafafafafafafafafafaf +aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfwfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfwajajajaaajajajaaajajajajajajajajajajajajajfwfwfwfwfwfwfwfwfwajajajajajajajajajajajajajajaaajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafafafafafafafafafafafafafafhVihihihihihjyjyjyjyjKjyjyjyjyihihUnkwfVfVkNfVfVkOfVfVfVhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgkgkgkgkgkgkknkokpgkafafafafafgkgkkPkQgkgkafafgkgkgkgkgtOXafafafafafafafafafafafafafafafafafafafafafaf aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajbpfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfybpajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaafafafafafafafafafafafafafafafafhVihihihihihihihjyjKjKjKjykRjpjpjpkSkTfVkUkVkWfVhVfVkXkXhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafgikYkZgiafafafafgkgkgkgkgkafafafafafafafafafafafafafafafafafafafafafaf aaajbqkakakabqajbqkbkbkbbqajajbqkckckcbqajbqkdkdkdbqajaaafafafajaaajajajfofyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfyfoajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihihihihihihihjyjKjKjKjykfkgkgkgkhhVfVkUlakWfVhVhVhVhVahafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf aaajbqbqbqbqbqajbqbqbqbqbqajajbqbqbqbqbqajbqbqbqbqbqajaaafafafajaaajajajfofyfyfyfyfyfofyfyfyfyfyfofyfyfyfyfyfoajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihihjyjyjyjyjyjyjKjKjKjykwfVfVfVfVlbfVfVfVfVfVlcldldlehVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajfofyfyfyfyfyfofyfyfyfyfyfofyfyfyfyfyfoajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihihjyjKjKjKjKjyjKjKjKjykTfVlfkgkhhVfVfVfVfVfVhVlelelghVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf aaajajajajajajajajajajajajajajajajajajajajajajajajajajaaafafafajaaajajajfofyfyfyfyfyfofofofofofofofyfyfyfyfyfoajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihihjyjKjKjKjKjyjKjKjKjyjylhjyjylihVhVhVhVhVljhVlklelghVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf -aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajajaaajajajfofofofofofofoajajajajajfofofofofofofoajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVllihjyjKjKjKjKjyjyjKjyjyjKjKjKjyUqlnlihVlolplphVhVhVhVhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf +aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajajaaajajajfofofofofofofoajajajajajfofofofofofofoajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVllihjyjKjKjKjKjyjyjKjyjyjKjKjKjyUolnlihVlolplphVhVhVhVhVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf ajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihihjyjKjKjKjKjKjKjKjKjKjKjKjKjyjLihkelqlolplphVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf ajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajajajaaajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihihjyjKjKjKjKjKjKjKjKjKjKjKjKjylrihkekwlolplphVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf ajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafhVihjyjyjyjyjyjyjyjKjKjKjyjyjyjyjyjyjykekTlolplphVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf ajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslslslslslslslsafafhVihjyltltltltltjyjKjKjKjyjKjKjKjKjKjyluhVlolplphVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf ajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajajafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslvlvlvlslvlvlsafafhVihjyltltltltltltjKjKjKjKjKjKjKjKjKjyluhVhVhVhVhVafafafafafafafafaflwlxlylxlzafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslvlAlvlBlvlvlsafafhVihjyltltltltltltjKjKjKjKjKjKjKjKjKjyjLihhVafafafafafafafafafafafaflxlClDlElxafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslFlFlFlslvlvlsafafhVihjyltltltltltjyltltltjyjKjyjKjyjyjyUrihhVafafafafafafafafafafafaflHlIlJlIlHafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslFlFlFlslvlvlsafafhVihjyltltltltltjyltltltjyjKjyjKjyjyjyUpihhVafafafafafafafafafafafaflHlIlJlIlHafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflKlKlKlKlslslslslslslvlvlsafafhVihjyltltltjyjyjyltltltjyjyjyjKjKjKjyjLihhVafafafafafafafafafafafaflLlIlIlIlLafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflKlKlKlKlBlvlBlvlvlvlvlvlsafafhVihjyltltltjyihjylMlMlMjyihjyjKjKjKjyjLihhVafafafafafafafafafafafaflLlIlIlIlLafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflKlKlKlKlslslslslvlvlvlNlsafafhVihjylMlMlMjyihjyUsUtUujyihjylMlMlMjyjLihhVafafafafafafafafafafafaflRlIlIlIlRafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslFlvlvlNlsafafhVihjyUsUtUujyihihihihihihihjyUsUtUujyihihhVafafafafafafafafafafafaflxlSlTlUlxafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflKlKlKlKlslslslslvlvlvlNlsafafhVihjylMlMlMjyihjyUqUrUsjyihjylMlMlMjyjLihhVafafafafafafafafafafafaflRlIlIlIlRafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslFlvlvlNlsafafhVihjyUqUrUsjyihihihihihihihjyUqUrUsjyihihhVafafafafafafafafafafafaflxlSlTlUlxafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf lVlVlVlVlVlVlVlVlVlVlVlVlVlVlVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslFlvlvlNlsafafhVihihihihihihihihihihihihihihihihihihihihhVafafafafafafafafafafafaflxlWlWlWlxafafafafafafafafafafafaflXlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlY lVlVlVlVlVlVlVlVlVlVlVlVlVlVlVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflslslslslslsafafhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVhVafafafafafafafafafafafaflwlZmamblwafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf lVlVlVlVlVlVlVlVlVlVlVlVlVlVlVafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf @@ -2532,42 +2532,42 @@ afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafnwmTmTmTmTpcmTmTmTmTmTpcpdmTmTmTpemdpfmimimimimipgphmdpipjpkplpmpnmimipomDppmimimimimimimimimipqmdmimimimimdmdmdmdmdmdmdmdmdmdmdmdmdmdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafmcmcmcmcmcmcafafafafafafafafafafafafafafafafafafafprpspspthVhVpuhVhVhVhVhVhVhVmcmcmchVhVhVhVhVhVmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafnfnfnfnfnfnfnfnfnfnfmdmTmTmTmTpvmdpwmimimimimimipxmdmimimimipymimimipzmDpApBpCpDmimimipCpBpAppmdmimimimimDpEpFpFpGpHpImdpJnCpKmdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafmcmcmcmcmcmcafafafafafafafafafafpLpMpNpNpNpOpLafafpPpQpRpSpQpQpQpThVpUpVpWpXhVmcmcmchVpYfVpZqahVmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmTqbqcqdqemdqfmimiqgqhmimiqimdmimimimimimimimimdmdmdmDmDmdqjqjmdmdmdmdmdmdmimimimimDqkqkqkqkqkqkmdqlnCqmmdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafmcmcmcmcmcafafafafafafafafafpLpLqnqoqpqqqrpLpLafpPpQqsqspQpQpQpQqtquququqvhVmcmcmchVhVhVhVhVhVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmdmdmdmdmdmdqwmimiqxqymimiqzmdmimiqAqBqCmimiqDmdUvqFqFqFqFqGqGqFqFqFqFafmdmimimimimdqkqHqIqIqIqImdmdqJmdmdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafmcmcmcmcafafafafafafafafafpLqKqLqLqMqLqLqqpLafpPqNqOqPqQpQpQpQhVquququqRhVmcmcmchVqSfVfVqThVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimimiqUqVmimimimdmimiqWqXqYmimiqZmdUwrbrcrdrerfrfrfrgrhriqFmdmimimimirjqkrkrkrkrkrkqkqkqkqImdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcafafafafafafafafafafpLrlqLqLqLqLrmrnpLafpPpQroropQpQpQrphVrqrrrsrthVmcmcmchVrufVfVrvhVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimimimimimimimimdmimimimimimimirwmdUwrxryrfrfrfrfrfrfrfrzrAmdmimimimirjqkqkqkrBqkqkqkqkqkqImdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafpLrCqLqLrDqLqLrEpLafpPpQpQpQpQpQpQrFhVhVhVhVhVhVmcmcmchVrGfVfVrHhVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimimimimimimimimdmimimimimimimimimdUwrxrIrJrKrKrKrKrKrLriqFmdmimimimimdqkqkrMrMqkqkrNqkqkqImdafafafafafafafafafafafafafafafafafafafafafafafafrOrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafpLrQrRpLpLpLpLpLpLafrSpspsrThVqaqaqahVldldrUrVhVmcmcmchVrWfVfVrXhVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimirYrZsasbscsdmdsesfsgshsisjskslmdUxqFqFqFqFqFqFqFqFqFqFafmdmimimimimdsnqksospqkqksqqkqksrmdafafafafafafafafafafafafafafafafafafafafafafafafrOssssssssssssssssssssssssssssssssssssssssssssrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafpLstsusvswsxpLafafafafafafsyqaqaqaszlelesAsAhVmcmcmchVrWfVfVsBhVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmdmdmdmdmdmdqwmimiqxqymimiqzmdmimiqAqBqCmimiqDmdUtqFqFqFqFqGqGqFqFqFqFafmdmimimimimdqkqHqIqIqIqImdmdqJmdmdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafmcmcmcmcafafafafafafafafafpLqKqLqLqMqLqLqqpLafpPqNqOqPqQpQpQpQhVquququqRhVmcmcmchVqSfVfVqThVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimimiqUqVmimimimdmimiqWqXqYmimiqZmdUurbrcrdrerfrfrfrgrhriqFmdmimimimirjqkrkrkrkrkrkqkqkqkqImdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcafafafafafafafafafafpLrlqLqLqLqLrmrnpLafpPpQroropQpQpQrphVrqrrrsrthVmcmcmchVrufVfVrvhVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimimimimimimimimdmimimimimimimirwmdUurxryrfrfrfrfrfrfrfrzrAmdmimimimirjqkqkqkrBqkqkqkqkqkqImdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafpLrCqLqLrDqLqLrEpLafpPpQpQpQpQpQpQrFhVhVhVhVhVhVmcmcmchVrGfVfVrHhVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimimimimimimimimdmimimimimimimimimdUurxrIrJrKrKrKrKrKrLriqFmdmimimimimdqkqkrMrMqkqkrNqkqkqImdafafafafafafafafafafafafafafafafafafafafafafafafrOrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrPrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafpLrQrRpLpLpLpLpLpLafrSpspsrThVqaqaqahVldldrUrVhVmcmcmchVrWfVfVrXhVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmimirYrZsasbscsdmdsesfsgshsisjskslmdUvqFqFqFqFqFqFqFqFqFqFafmdmimimimimdsnqksospqkqksqqkqksrmdafafafafafafafafafafafafafafafafafafafafafafafafrOssssssssssssssssssssssssssssssssssssssssssssrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafpLstsusvswsxpLafafafafafafsyqaqaqaszlelesAsAhVmcmcmchVrWfVfVsBhVmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdsCsDrYrZsasbscsdmdmdmdmdmdmdmdmdmdmdsEsEsEsEsEsEsEsEsEsEsEsEmdmdsFsFmdmdmdmdmdmdmdmdmdmdmdmdmdafafafafafafafafafafafafafafafafafafafafafafafafrOssssssssssssssssssssssssssssssssssssssssssssrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafpLsGsHrmqLsIpLafafafafafafsJqaqaqahVsKlehVhVhVhVhVhVhVsLsMsMsLhVhVhVhVmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmdmdmdmdmdmdmdmdmdmdafafafafafafafafafafafafafafafafafafafafafmdmdsNsNmdmdafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssssssssOsOsOsOsOsPsPsOsOsOsOsOssssssssssrOrOrOrOrOrOrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafpLpLsQsurmqLsRpLpLafafnEnvnvhVqaqaqahVhVhVhVsTsUsVsWsXsYfVfVfVfVsZsZtahVhVmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssssssOtctdtetfsOtgthsOtitjsOsOsOsOssssssrOtktltmtmtmrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafpLpLpLpLpLtnsurmqLtopLpLpLpLpLtptphVtqqaqaqahVtrtsfVfVfVfVfVfVfVfVfVfVfVfVfVtthVmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssssOsOtutututusOtvtvsOtututwtxsOsOsOssssrOtytmtmtmtmrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafpLtztAtBpLtCqLqLtDrQrQtEtFtGtHtItJtIqaqaqaqatKfVfVfVfVfVfVqafVtLfVfVfVfVfVfVtMhVmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssOsOsOtNtOtPtQsOtRtutStututututTtUsOsssstVtmtmtmtmtmrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafmcmcafafafaftWtXtYtXpLrQtZuapLpLubucuduetHtIuftIqaqaqaqahVuguhfVfVfVfVfVfVfVfVfVfVfVfVfVuihVmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOssssUyukultuumumumsOtutusOunuoupuqurussOssssrOtmtmtmtmtmrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafmcmcmcafafafafpLpLtWutpLpLuuqLuvpLpLuwuxuwpLuyuyhVuzpsrThVhVhVhVuAuBuCuDuEuFfVfVfVfVuGuGuHhVhVmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafnftbtbnfafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOssssUzuktutututututStutusOsOsOsOsOsOsOsOssssrOuJuKtmuKuLrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafmcmcmcmcafafafafpLuMqLqLuNpLuOuPqLpLuQuRuSuTpLmKafmKafafafafmcmchVhVhVhVhVhVhVsLuUuUsLhVhVhVhVmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOssssUwukultuumumumsOtutusOunuoupuqurussOssssrOtmtmtmtmtmrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafmcmcmcafafafafpLpLtWutpLpLuuqLuvpLpLuwuxuwpLuyuyhVuzpsrThVhVhVhVuAuBuCuDuEuFfVfVfVfVuGuGuHhVhVmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafnftbtbnfafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOssssUxuktutututututStutusOsOsOsOsOsOsOsOssssrOuJuKtmuKuLrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafmcmcmcmcafafafafpLuMqLqLuNpLuOuPqLpLuQuRuSuTpLmKafmKafafafafmcmchVhVhVhVhVhVhVsLuUuUsLhVhVhVhVmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssOsOtututuuVtusOtututuuWuXssssssssssssssuYuYuYuYuYuYuYuYuYuYuYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafmcmcmcmcafafafafpLuZqLqLqLvaqLqLqLvbqLqLqLvcpLnvnvnvnvafafafafmcmcmcmcmcmcmchVvdfVfVvdhVmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssssOsOsOsOsOsOsOtRtuvetuuXssssssssssssssuYvfvfvfvfvfvfvfvfvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcmcmcmcafafafafpLvhqLqLqLviqLqLqLvjqLqLqLvkpLafafafafafafafafafmcmcmcmcmcmchVvdfVfVvdhVmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOsssssOsOvlvmvnvlvosOtututuvpuXssssssssssssssuYvfvqvqvqvqvqvqvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcmcmcafafafafpLpLpLpLpLpLrQqLqLqLrQpLpLpLpLpLpLafafafafafmJafmKmcmcmcmcmcmchVvdfVfVvdhVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOrOrOrOrOssssUyuktutututututStutusOsOsOsOsOsOsOsOssssuYvfvqvrvrvrvrvrvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcmcmcafafafafpLvsvtvuvvvwpLvxqLvypLvzvAvAvBvCpLafafafafafmJmKmcmcmcmcmcmcmchVvdfVfVvdhVmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvDvDvDvDafafafafafafafafafafafafafafafafafvDvDvDvDvDafafafafafafafafafafafafafafafafafafvDvDvDvDvDvEvEvEvEvDvDvDvDvEvFvFvErOvGvGrOrOvGvGrOrOvGvGvGvGrOrOrOrOvGvGvGvGrOrOrOrOvGvGrOrOrOrOrOrOAhAhvIrOssssUzukvJtutututusOtututututusOtuvKvLsOssssuYvfvqvMvrvrvrvNvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcmcafafafafafvOvPvPvPvPvPpLqLqLqLpLvQqLqLqLvRvSafafafafafnEafmcmcmcmcmcmcmchVhVvTvUhVhVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmDtbtbmDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafrOrOrOrOrOssssUwuktutututututStutusOsOsOsOsOsOsOsOssssuYvfvqvrvrvrvrvrvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcmcmcafafafafpLvsvtvuvvvwpLvxqLvypLvzvAvAvBvCpLafafafafafmJmKmcmcmcmcmcmcmchVvdfVfVvdhVmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvDvDvDvDafafafafafafafafafafafafafafafafafvDvDvDvDvDafafafafafafafafafafafafafafafafafafvDvDvDvDvDvEvEvEvEvDvDvDvDvEvFvFvErOvGvGrOrOvGvGrOrOvGvGvGvGrOrOrOrOvGvGvGvGrOrOrOrOvGvGrOrOrOrOrOrOAhAhvIrOssssUxukvJtutututusOtututututusOtuvKvLsOssssuYvfvqvMvrvrvrvNvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcmcafafafafafvOvPvPvPvPvPpLqLqLqLpLvQqLqLqLvRvSafafafafafnEafmcmcmcmcmcmcmchVhVvTvUhVhVmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvVvWvVvDafafafafafafafafafafafafafafafafafvDvVvVvVvDafafafafafafafafafafafafafafafafafvDvDvXvYvYvYvYvYvYvYvYvYvYvYvYvYvYvZvGAhAhAhAhAhAhvGAhAhAhAhAhAhwaAhAhAhAhAhAhAhAhwaAhAhAhwbAhAhAhAhAhAhAhAhwcsssssOsOsOwdwewfwgsOtRwfwfwftutStututusOssssuYvfwiwhwhwhvrvrvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafmcmcafafafafafafwjwkwlvPvPvPwmqLqLqLwnqLqLqLwowpwqafafafafafmJmKmKmcmcmcmcmcmcmchVhVhVhVmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafwrvDvDvDwrafafafafafafafafafafafafafafafafafwrvDvDvDwrvEvEvEvEwrafafafafafafafafafafafafvDvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYwsAhAhAhAhAhAhwsAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhwbAhAhAhAhAhAhAhAhwcsssssssOsOtutututusOtuwfwfwftusOwtsOsOsOssssuYvfwuvrvrvrvrvrvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafwvvPvPvPvPvPwwqLqLqLwxqLqLqLqLwywzafafafafafmJafafmKmcmcmcmcmcmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEmKmKmKmKafafafafafafafafafmKmKmKmKvEvYvYvYvEmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKafvDvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYwsAhAhAhAhAhAhwsAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhrOrOrOrOrOrOrOrOrOrOsssssssssOsOwAwBwCsOtututututusOsOsOsOssssssuYvfvqvrvrvrvrwDvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafpLwEvPvPvPwFrQuwwGuwpLwHwIwJqLwKpLafafafafafafafafafmcmcmcmcmcmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafmKmKmKmKmKmKmKmKmKmKmKafafafvEvYvYvYvEmKafafafafafafafafafafafafafafmKmKvEvYvYvYwLwLwLwLwLwLwLwLwLwLwLwLwLwLwLwLvGvGwMvGvGrOvGvGvGvGvGwNwNvGvGrOrOvGvGvGvGrOrOAhAhrOwOwPrOwOwPrOwOwPrOsssssssssssOsOsOsOsOsOsOsOsOsOsOsOssssssssssuYvfwuvrvrvrvrvrvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafpLwQwRwSwTwUpLwVqLwWpLwXrQpLwYpLpLafafafafafafafmJafmKmcmcmcmcmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDvDvDafafafafafafafafafafafafafvDvDvDvYvYvYvDafafafafafafafafafafafafafafafvDvDvDvYvYvYwLwZxaxaxaxaxaxaxaxaxaxbxcxdxewLxfxfxfxgxhrOwNwNwNwNwNwNwNxixjrOxkxkxkxkxkxkrOAhAhrOxlxmrOxlxmrOxlxmrOssssssssssssssssssssssssssssssssssssssssssssuYvfxoxnxnxnvrvrvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafpLxpvPxqrQpLpLxrqLxspLpLpLxtqLxupLafafafafafafafmJmKmKmcmcmcmcmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYxvxwxxafafafafafafafafafafafafafxxxwxvvYvYvYvDafafafafafafafafafafafafafafafxxxwxvvYvYvYwLxyxzxzxzxAxAxzxzxzxzxBxzxzxCwLxDxfxfxfxfrOwNxExFxGxEwNwNwNwNrOxkxHxIxIxJxkvGAhAhrOxKxLrOxKxLrOxKxLrOssssssssssssssssssssssssssssssssssssssssssssuYvfvqvMvrvrvrvNvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafpLxMxNxOpLafpLxPxPxPpLafpLqqxQxRpLafafafafafafafmJafmKafmcmcmcmcmcmcmcmcmcmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYxvxwxxafafafafafafafafafafafafafxxxwxvvYvYvYvDafafafafafafafafafafafafafafafxxxwxxvYvYvYwLxyxzxzxSxTyoxVxzxzxWxbxXxYxZwLyaxfxfxfxfrOwNxEybybxEwNwNwNwNrOxkycuKydyexkvGAhAhrOyfrOrOyfrOrOyfrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOuYvfvqvqvrvrvrvqvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafpLxPxPxPpLafpLUAUBUCpLafpLxPxPxPpLafafafafafafafmJmKmKmKmKmKmcmcmcmcmcmcmcmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDvDvDafafafafafafafafafafafafafvDvDvDvYvYvYvDafafafafafafafafafafafafafafafvDvDvDvYvYvYwLxyxzxzxSyoyoxVxzxzxCwLwLwLwLwLyjyjyjxfxfrOwNwNwNwNwNwNwNykxErOxkycuKuKyexkrOAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhylssssylvgvfvqvqymymymvqvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafmcmcafafafpLUAUBUCpLafafafafafafafpLUAUBUCpLafafafafafafafmJafmKafmKafafmcmcmcmcmcmcmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafafafafafafafafafafafafafafafvEvYvYvYvEmKafafafafafafafafafafafafafafmKmKvEvYvYvYwLynxzxzxSyoypxVxzxzyqxbxcxdxewLyrysytxfxfrOwNxEybxGxEwNwNwNwNrOxkycuKuKyexkyuAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhylssssylvgvfvfUDUEUEUEUFvfvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafmcmcmcafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYxvxwxxafafafafafafafafafafafafafxxxwxvvYvYvYvDafafafafafafafafafafafafafafafxxxwxxvYvYvYwLxyxzxzxSxTyoxVxzxzxWxbxXxYxZwLyaxfxfxfxfrOwNxEybybxEwNwNwNwNrOxkycuKydyexkvGAhAhrOyfrOrOyfrOrOyfrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOrOuYvfvqvqvrvrvrvqvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafpLxPxPxPpLafpLUyUzUApLafpLxPxPxPpLafafafafafafafmJmKmKmKmKmKmcmcmcmcmcmcmcmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDvDvDafafafafafafafafafafafafafvDvDvDvYvYvYvDafafafafafafafafafafafafafafafvDvDvDvYvYvYwLxyxzxzxSyoyoxVxzxzxCwLwLwLwLwLyjyjyjxfxfrOwNwNwNwNwNwNwNykxErOxkycuKuKyexkrOAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhylssssylvgvfvqvqymymymvqvqvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafmcmcafafafpLUyUzUApLafafafafafafafpLUyUzUApLafafafafafafafmJafmKafmKafafmcmcmcmcmcmcmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafafafafafafafafafafafafafafafvEvYvYvYvEmKafafafafafafafafafafafafafafmKmKvEvYvYvYwLynxzxzxSyoypxVxzxzyqxbxcxdxewLyrysytxfxfrOwNxEybxGxEwNwNwNwNrOxkycuKuKyexkyuAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhAhylssssylvgvfvfUBUCUCUCUDvfvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafmcmcmcafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKvEvYvYvYvEmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKmKafvDvYvYvYwLyyxzxzxzyzyzxzxzxzxzxBxzxzxCwLyAxfxfxfxfrOwNxEybyBxEwNwNwNwNrOxkycuKuKyexkrOAhAhrOvGvGvGvGvGvGvGvGvGrOrOrOrOrOrOrOrOrOrOrOrOAhAhrOrOrOrOrOrOrOrOuYvfvfvfvfvfvfvfvfvfvgafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafmcmcafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafafafafafafafafafafafafafafafvEvYvYvYvEvEvEvEvEwrafafafafafafafafafafafafvDvYvYvYwLyCyDyEyFxzxzxzxWyEyExbxXxYxZyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGyGrOxkycuKyHyexkvGAhAhrOAhyIyJyKyLAhyMyNyOrOyPyPyPyPyPyPyPyPyPyPrOAhAhrOafafafafafafafuYuYuYuYuYuYuYuYuYuYuYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDvDvDafafafafafafafafafafafafafvDvDvDvYvYvYvEmKafafafafafafafafafafafafafafafafvEvYvYvYwLwLwLwLyQxzxzyRySwLwLwLwLwLwLyGyTyUyVyGyWyXyXyXyXyXyXyXyXyYyZrOxkxKzazazbxkvGAhAhvGAhyIzczdyLAhzezfzgrOyPyPyPyPyPyPyPyPyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYxvxwxxafafafafafafafafafafafafafxxxwxvvYvYvYvEmKafafafafafafafafafafafafafafafafvDvYvYvYwLzhzixbzjxzxzxzzkwLzlzmznznzoyGyTyUzpyGyXyXyXyXzqzryXyXyXyXyXrOxkxkxkxkxkxkrOAhAhvGAhAhAhAhAhAhAhAhzsrOrOrOrOrOrOrOrOrOyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYxvxwxxafafafafafafafafafafafafafxxxwxvvYvYvYvEvEvEvEvEwrmKmKmKmKmKmKmKmKmKmKmKafvDvYvYvYwLyQxzztxzxzxzyRzuwLzvxSyoxVzwyGyUyUyUzxyXyXzyyXzqzryXzzzAzByXrOrOvGvGvGvGrOrOAhAhzCAhAhAhAhzDzEzFAhAhrOAhAhAhAhAhAhzGrOyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDvDvDafafafafafafafafafafafafafvDvDvDvYvYvYvEmKafafzHzHzHzHzHzHzIzIzIzHzHUGmKmKvEzKvYvYwLzjxzztxWyEzLzMzNwLzOzPyoxzzwyGyUyUzQyGzRyXzSyXzqzryXzzzAzByXyGAhAhAhAhAhAhAhAhAhvGAhAhAhAhzFzFzGAhAhzTAhzUAhAhzUAhzFrOyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafafafafafafafafafafafafafafafvEvYvYvYvDafafzHzHzVzWzHzXzYzXzXzXzYzZUHvDvDvDvYvYvYwLztztxbxbxbxbxbxbwLxbAbxzAcAdyGAeyUzQyGzRyXyXyXAfzryXzzAgzByXyGAhAhAhAhAhAhAhAhAhvGAhyLAhAhAhAhAhAiAhrOzcAjAkzFAlAhzsrOyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDvDvDafafafafafafafafafafafafafvDvDvDvYvYvYvEmKafafzHzHzHzHzHzHzIzIzIzHzHUEmKmKvEzKvYvYwLzjxzztxWyEzLzMzNwLzOzPyoxzzwyGyUyUzQyGzRyXzSyXzqzryXzzzAzByXyGAhAhAhAhAhAhAhAhAhvGAhAhAhAhzFzFzGAhAhzTAhzUAhAhzUAhzFrOyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafafafafafafafafafafafafafafafvEvYvYvYvDafafzHzHzVzWzHzXzYzXzXzXzYzZUFvDvDvDvYvYvYwLztztxbxbxbxbxbxbwLxbAbxzAcAdyGAeyUzQyGzRyXyXyXAfzryXzzAgzByXyGAhAhAhAhAhAhAhAhAhvGAhyLAhAhAhAhAhAiAhrOzcAjAkzFAlAhzsrOyPyPrOAhAhrOafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafafafafafafafafafafafafafafafafvEvYvYvYvDafafzIzWAmzWAnzWzWzWzWzWzWzWAoApxwApvYvYvYwLzPxzAqArArArArArAsxbxbAtxbxbyGyGyGyGyGzqzqzqzqzqzryXzzAuzByXyGvGvGAvvGvGrOwaAhAhrOAwyLAhAhAhAhAhrOrOrOrOvGvGvGvGvGrOrOAxAxrOAhAhrOafafafafAyAyAyAyAyAyAyAyAyAyAyAyAyAyAyAyAyAyafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcafafafafafafafafafafafafafmcmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEmKmKmKafafafafafafafafafafafmKmKmKvEvYvYvYvDafafzHzHAzzWzHAAABAAAAAAABACUIvDvDvDvYvYvYwLAbxzxzxzxzxzxzxzAqArAExzAqAFAGyGyXyXyXzrzrzrzrzryXyXyXyXyXyXyGAHAIAhAJAKrOALAMANAxAxAOAxrOvGAPvGrOAQAQAQARASATAUAVAQAQAQAxwaAhAhrOafafafAyAyAWAWAWAWAWAWAXAXAXAWAWAWAWAXAXAXAYafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcafafafafafafafafafafafafafmcmcmcmcmc -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDafafmKafafafafafafafafafafafmKafafvDvYvYvYvEmKafafzHzHzHzHzHzHzIzIzIzHzHUJmKmKvEvYvYvYwLAbxzxzyRyRyRyRyRxzxzxzxzxzyRBayGBbyXyXyXyXyXyXyXyXyXyXyXyXBbyGAhAhAhAhAhrOAhAhAhBcAQAQBdrOAhAhAhrOAQAQAQARBeBfBgAVAQAQAQAxAhAhAhrOafafafAyAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAYafafafafafafafafafafafafafafafafafafafafafafafafafafafBhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcafafafafafafafafafafafafafmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEmKmKmKafafafafafafafafafafafmKmKmKvEvYvYvYvDafafzHzHAzzWzHAAABAAAAAAABACUGvDvDvDvYvYvYwLAbxzxzxzxzxzxzxzAqArAExzAqAFAGyGyXyXyXzrzrzrzrzryXyXyXyXyXyXyGAHAIAhAJAKrOALAMANAxAxAOAxrOvGAPvGrOAQAQAQARASATAUAVAQAQAQAxwaAhAhrOafafafAyAyAWAWAWAWAWAWAXAXAXAWAWAWAWAXAXAXAYafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcafafafafafafafafafafafafafmcmcmcmcmc +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDafafmKafafafafafafafafafafafmKafafvDvYvYvYvEmKafafzHzHzHzHzHzHzIzIzIzHzHUHmKmKvEvYvYvYwLAbxzxzyRyRyRyRyRxzxzxzxzxzyRBayGBbyXyXyXyXyXyXyXyXyXyXyXyXBbyGAhAhAhAhAhrOAhAhAhBcAQAQBdrOAhAhAhrOAQAQAQARBeBfBgAVAQAQAQAxAhAhAhrOafafafAyAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAYafafafafafafafafafafafafafafafafafafafafafafafafafafafBhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcafafafafafafafafafafafafafmcmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDafafmKafafafafafafafafafafafmKafafvDvYvYvYvEvEvEvEvEwrmKmKmKmKmKmKmKmKmKmKmKafvDvYvYvYwLAbxzxzBiBiBiBiBixzxzxzxzxzxzzwyGzAyXzzzAzAzByXyXzzzAzAzByXzAyGAhAhAhAhAhrOAhAhAhBcBjBkBlrOAhAhAhrOAQAQAQBmBnBoBpBqAQAQAQAxAhAhAhrOafafafAyAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAWAYafafafafafafafafafafafafafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcafafafafafafafafafafafafafmcmcmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvDafafmKafafafafafafafafafafafmKafafvDvYvYvYvEmKafafafafafafafafafafafafafafafafvDvYvYvYwLAbxzxzyoxzxzxzyoxzAcBrzPxzxzzwyGBsyXzzAuAgzByXyXzzAuAgzByXBsyGAhBtBuBvBwrOvGBxvGAxByBzAxrOBABBBCrOAQAQAQAQAQAQAQAQAQAQAQAxAhAhAhrOafafafAyAWAWAWBDAyAyAyAYAYAYAyBEBEAyAYAYAYAyAyAyAyAYAYAYAyAyAYAYAYAyafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcafafafafafafafafafafafafafafmcmc afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEBFBFBFvEvEafmKafafafafafafafafafafafmKafvEvEBFBFBFvEvEafafafafafafafafafafafafafafafvEvEBFBFBFwLAbxzAczPxzxzAcBrzPzwwLwLBGBGwLyGBbyXyXyXyXyXyXyXyXyXyXyXyXBbyGBHrOrOrOrOrOAQAQAQAxBcBcAxrOrOrOrOrOAQAQAQAQAQAQAQAQAQAQAQAxAhAhAhrOafafafAyBIAWAWAyAyBJBJBKBJBKBJBLBLBJBKBJBKBJBJBMBMBMBMBMBMBMBMBMBMAyafafafafafafafafafafafafafafaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafmcmcmcmcmcmcmcmcmcafafafafafafafafafafafafafafmc @@ -2608,8 +2608,8 @@ afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvEvYvYvYvEmKmKmKmKafafafafafafafafafmKmKmKmKvEvYvYvYvEmKmKEUJPJPEUJQJRJEJEJSEUJPJPEUmKmKvEvYvYvYEhEhJTEhEjEjEhEhIHEhEhJUJVJWEjJXJYHzJZJZKaGNHeHeGNGNKbKbKbKbKbGNKcKcKcKcKcKcKcKcKcKcKcKcKcKdKcGNKeKeKeKeKeGNHeHeHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafwrvDvDvDwrafafafafafafafafafafafafafafafafafwrvDvDvDwrafafEUKfKgEUKhJEKiKjKkEUKlKmEUafafwrvYvYvYEhKnEuJhKoKpEhFtEuEvHzEuEuEvEjEuEuEuEuEuEKGNHeGNGNGNKqKqKqKqKqGNKrKsKsKsKsKsKsKsKsKsKsKsKsKtKrGNKqKqKqKqKqGNGNGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvVvWvVvDafafafafafafafafafafafafafafafafafvDvVvVvVvDafafEUKuKuEUKvKwJEKxKyEUKuKuEUafafvDvYvYvYEhKzEuEuEuKAEhFtEuEuEzFYEuEuKBEuEuEuEuEuEKGNHeGNKCKDKEKEKEKEKEKFKsKsKsKsKsKsKsKsKsKsKsKsKsKtKsKFKGKGKGKGKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvDvDvDvDafafafafafafafafafafafafafafafafafvDvDvDvDvDafafEUUKUKEUEUKuKuKuEUEUUKUKEUafafvDvYvYvYEhKJEuEuIXKKEhKLEuEuEKKMEuKNEjFnEuEMEuEuEKGNHeGNKCKDKEKOKEKOKEKFKsKsKsKsKsKsKsKsKsKsKsKsKsKtKsKFKGKPKGKPKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafEUUKUKUKEUafafafafafafvEvYvYvYEhJgEuEuEuKQEhKREuEuKSKTEuKUEjKVKWKXKYKYKZGNHeGNKCKDKEKELaKEKEKFKsKsKsKsKsKsKsLbKsKsKsKsKsKtKsKFKGKGLcKGKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvDvDvDvDafafafafafafafafafafafafafafafafafvDvDvDvDvDafafEUUIUIEUEUKuKuKuEUEUUIUIEUafafvDvYvYvYEhKJEuEuIXKKEhKLEuEuEKKMEuKNEjFnEuEMEuEuEKGNHeGNKCKDKEKOKEKOKEKFKsKsKsKsKsKsKsKsKsKsKsKsKsKtKsKFKGKPKGKPKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafEUUIUIUIEUafafafafafafvEvYvYvYEhJgEuEuEuKQEhKREuEuKSKTEuKUEjKVKWKXKYKYKZGNHeGNKCKDKEKELaKEKEKFKsKsKsKsKsKsKsLbKsKsKsKsKsKtKsKFKGKGLcKGKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYEhLdLeLfLgLhEhLiLjLkLlLmFYIGEhEhEhEhEhEhEhGNHeGNKCKDKEKEKEKEKEKFKsKsKsKsKsKsLnLoLnKsKsKsKsKtKsKFKGKGKGKGKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYEhEhEhEhEhEhEhEhEhEhEhEhEhEhEhafafafafafafGNHeGNKCKDKEKOKEKOKEKFKsKsKsKsKsKsLpLqLrKsKsKsKsKtKsKFKGKPKGKPKGKDKHGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafvDvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvYvEafafafafafafGNHeGNHeKDKEKEKEKEKEKFKsKsKsKsKsKsKsLsKsKsKsKsKsKtKsKFKGKGKGKGKGKDHeGNHeGNafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf @@ -2627,11 +2627,11 @@ afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafMeMeMeMeMeMeMeafafafafafafafafafafafafafafafafvDvYvYvDafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYLYMgMgLYLYLYLYLYLYLYLYLYLYLYLYLXah afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafMeMeMeMeMeMeMeMeMeafMhMiMiMiMiMiMiMiMiMiMiMiMiMhvDvYvYvDMhMhMhMhMhMhMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYMgMjMkMgLYLYLYLYLYLYLYLYLYLYLYLXah afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafMhMhMhMhMhMlMiMiMiMlMiMiMiMlMmMeMeMeMeMeMeMeMeMeMmMhMnMoMoMoMoMoMoMoMoMoMoMoMhvEvFvFvEMhMpMqMrMsMsMtMuMvMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYMgMwMxMgLYLYMfLYMyLYLYLYLYLYLYLXah -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafULMAMnMBMCMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMoMoMoMoMoMoMoMoMoMoMoMoMhMhMGMGMhMhMHMHMHMIMJMKMHMHMLMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYLYMgMgLYLYLYLYLYLYLYLYLYLYLYLYLXah -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUMMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMoMoMoMoMoMoMoMoMoMoMoMoMhMNMOMOMNMhMPMQMHMHMHMHMHMHMRMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYMdLYLYLYLYLYLYLYLYLYLYLYLYLYMbLYLYLXah -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUMMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMoMoMoMoMoMoMoMoMoMoMoMoMhMOMSMSMOMhMHMHMHMTMUMVMHMHMWMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYMfMdLYLYLYLYLYLYLYLYLYLYLYLYMdLYLYLXah -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUMMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMnMoMoMoMoMoMoMoMoMoMoMoMhMOMSMSMOMhMXMYMHMZNaNbMHMHMHMHMHNcMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYLYLYLYNdLYNeLYNeLYNfLYLYLYLYLYLXah -afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUNMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMhMhMhMhMhNhNhMhMhMhMhMhMhMOMSMSMOMhNiMHMHMHMHMHMHMHMHMHMHNcMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYNjLYLYLYLYLYLYLYLYLYLYLYLYLYLYLYLXah +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUJMAMnMBMCMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMoMoMoMoMoMoMoMoMoMoMoMoMhMhMGMGMhMhMHMHMHMIMJMKMHMHMLMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYLYMgMgLYLYLYLYLYLYLYLYLYLYLYLYLXah +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUKMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMoMoMoMoMoMoMoMoMoMoMoMoMhMNMOMOMNMhMPMQMHMHMHMHMHMHMRMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYMdLYLYLYLYLYLYLYLYLYLYLYLYLYMbLYLYLXah +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUKMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMoMoMoMoMoMoMoMoMoMoMoMoMhMOMSMSMOMhMHMHMHMTMUMVMHMHMWMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYMfMdLYLYLYLYLYLYLYLYLYLYLYLYMdLYLYLXah +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafUKMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMnMoMoMoMoMoMoMoMoMoMoMoMhMOMSMSMOMhMXMYMHMZNaNbMHMHMHMHMHNcMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYLYLYLYLYNdLYNeLYNeLYNfLYLYLYLYLYLXah +afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafULMAMnMnMnMhMDMDMDMhMEMEMEMhMmMFMFMFMFMFMFMFMFMFMmMhMhMhMhMhMhNhNhMhMhMhMhMhMhMOMSMSMOMhNiMHMHMHMHMHMHMHMHMHMHNcMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXLYLYLYNjLYLYLYLYLYLYLYLYLYLYLYLYLYLYLYLXah afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafMhMhMhMhNkMhMhMhNlMhMhMhNmMhMhMhMhMhMhMhNnMhMhMhMhMhMhNoMOMOMOMONpMOMOMOMOMOMNMhMOMSMSMOMhMXMYMHMHNqNqNrNsNsNtMhMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahLXNuNuNuNuNuNuNuNuNuNuNuNuNuNuNuNuNuNuNuLXah afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafNvMNMOMOMOMOMOMONwMOMOMONxMOMOMOMOMOMOMONyMOMONzNANBMhMOMSMSMSMSMSMSMSMSMSMSMOMhMOMSMSMOMlNCNCNDNDNCNCNCMhMhMhMhNENFNGNCafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNHNINININININININININININININININININININHah afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafNvMOMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMONJMOMSNKNKNKNKNKNKNKNKMSMONJMOMSMSMONJMOMOMOMOMOMOMOMOMOMONCNLNMNNNCafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah @@ -2639,11 +2639,11 @@ afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafaf afafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafNvMOMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMSMONJMOMSNVNVNVNVNVNVNVNVMSNTNDMOMSMSMONJMOMOMOMOMOMOMOMOMOMONCNWNMNXNCafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah lYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYlYafafafafafafafafafafNvMNMOMOMOMOMOMONYMOMOMONZMOMOMOOaMOMOMOObMOMOMOMOMNMhMOMSMSMSMSMSMSMSMSMSMSNTMhMOMSMSMOMlNCNCOcNCNCMhNCNCNQNQMhOdNFOeNCafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah ahahahahahahahahahahahOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfOfahahahahahahahlYafafafafafafafafafafMhMhMhMhNkMhMhMhOgMhMhMhOhMhMhMhOiMhMhMhOjMhMhMhOkMhMhMOMOMOMOMOOlMOMOMOMOMOMNMhMOMSMSMOMhOmOnOoOpOqMhOrMSMSMSMhMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah -ahmcmcmcmcmcmcmcmcmcmcOsOsOsOsOsOfOtOuOvOfOsOsOsOsOsOsOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafULMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhMhMhMhMhMhOBOBMhMhMhMhMhMhMOMSMSMOMhOCOoOoOoOCMhODMSMSMSMSOEMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah -ahmcmcmcmcmcmcmcmcmcmcOsOsOsOsOsOfOFOuOuOfOsOsOsOsOsOsOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUMMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhOGOGOGOGOGOGOGOGOGOGOGMnMhMOMSMSMOMhOHOIOoOoOoMhOrMSMSOrMSOrMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah -ahmcmcmcmcmcmcOsOsOsOfOfOfOfOsOfOfOfOfOJOfOfOfOfOfOfOfOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUMMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhOGOGOGOGOGOGOGOGOGOGOGOGMhOKNKNKOKMhNCNCOLNCNCMhODMSOrMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah -ahmcmcmcOsOsOsOsOMOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOfOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUMMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhOGOGOGOGOGOGOGOGOGOGOGOGMhONONONONMhOOOoOoOoOOMhOrMSODMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah -ahmcmcmcOsOsOuOMOMOMOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOfOPOQOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUNMAMnOROSMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhOTOUOVMhOGOGOGOGOGOGOGOGOGOGOGOGMhMhOWOXMhMhOoOoOoOoOoMhODMSOrMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah +ahmcmcmcmcmcmcmcmcmcmcOsOsOsOsOsOfOtOuOvOfOsOsOsOsOsOsOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUJMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhMhMhMhMhMhOBOBMhMhMhMhMhMhMOMSMSMOMhOCOoOoOoOCMhODMSMSMSMSOEMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah +ahmcmcmcmcmcmcmcmcmcmcOsOsOsOsOsOfOFOuOuOfOsOsOsOsOsOsOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUKMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhOGOGOGOGOGOGOGOGOGOGOGMnMhMOMSMSMOMhOHOIOoOoOoMhOrMSMSOrMSOrMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah +ahmcmcmcmcmcmcOsOsOsOfOfOfOfOsOfOfOfOfOJOfOfOfOfOfOfOfOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUKMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhOGOGOGOGOGOGOGOGOGOGOGOGMhOKNKNKOKMhNCNCOLNCNCMhODMSOrMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah +ahmcmcmcOsOsOsOsOMOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOfOsOsOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafUKMAMnMnMnMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhMSMSMSMhOGOGOGOGOGOGOGOGOGOGOGOGMhONONONONMhOOOoOoOoOOMhOrMSODMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah +ahmcmcmcOsOsOuOMOMOMOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOuOfOPOQOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafULMAMnOROSMhOwOwOwOxOyOyOyOxOzOzOzOxOAOAOAMhOTOUOVMhOGOGOGOGOGOGOGOGOGOGOGOGMhMhUMUNMhMhOoOoOoOoOoMhODMSOrMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah ahmcmcmcOsOsOMOMOMOsOsOsOfOfOfOfOJOfOfOfOfOJOfOuOuOuOJOYOZOsOsOsmcmcahmcmcmcmclYafafafafafafafafafafafMhMhMhMhMhMlMiMiMiMlMiMiMiMlMiMiMiMlMiMiMiMlMhMhMhMhOGOGOGOGOGOGOGOGOGOGOGMnMhafafafafMhOOOoOOOoOOMhOrMSMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah ahmcmcmcOsOMOMOsOsOsOsOsOsOsOsOfOuOuOFOfPaOuOfOuOuOuOJOYPbOsOsOfmcmcahmcmcmcmclYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafMhMiMiMiMiMiMiMiMiMiMiMiMiMhafafafafMhMhMhMhMhMhMhMhMhMhafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah ahmcmcmcOsOMOsOsOsmcmcOsOfOfOfOfPcOuOtOfPcOtOfOuOuOuOfOYOYOYPdOfmcmcahmcmcmcaflYafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafafahNONPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNPNOah diff --git a/maps/yw/cryogaia-03-maintenance.dmm b/maps/yw/cryogaia-03-maintenance.dmm index d0ee360a42..7c8bbeb0e5 100644 --- a/maps/yw/cryogaia-03-maintenance.dmm +++ b/maps/yw/cryogaia-03-maintenance.dmm @@ -3758,7 +3758,7 @@ "bun" = (/obj/machinery/door/airlock/highsecurity{name = "High Security-Grey Tempest"},/turf/simulated/floor/reinforced,/area/rnd/lab) "buo" = (/obj/structure/particle_accelerator/end_cap,/turf/simulated/floor/reinforced,/area/rnd/lab) "bup" = (/obj/structure/particle_accelerator/fuel_chamber,/turf/simulated/floor/reinforced,/area/rnd/lab) -"buq" = (/obj/structure/particle_accelerator/power_box,/turf/space,/area/rnd/lab) +"buq" = (/turf/simulated/floor/plating,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) "bur" = (/obj/structure/particle_accelerator/particle_emitter/left,/turf/simulated/floor/reinforced,/area/rnd/lab) "bus" = (/obj/structure/particle_accelerator/particle_emitter/center,/turf/simulated/floor/reinforced,/area/rnd/lab) "but" = (/obj/structure/particle_accelerator/particle_emitter/right,/turf/simulated/floor/reinforced,/area/rnd/lab) @@ -3869,7 +3869,7 @@ "bwu" = (/obj/structure/closet/wardrobe/xenos,/obj/item/clothing/suit/tajaran/furs,/obj/machinery/light_switch{dir = 1; pixel_x = 4; pixel_y = -24},/turf/simulated/floor/lino,/area/crew_quarters/sleep/cryo) "bwv" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light_switch{dir = 4; pixel_x = -28},/turf/simulated/floor/tiled,/area/holodeck_control) "bww" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/effect/floor_decal/corner/blue{dir = 1},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) -"bwx" = (/turf/simulated/floor/plating,/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bwx" = (/turf/simulated/floor/wood,/obj/item/stack/material/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) "bwy" = (/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) "bwz" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/light,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) "bwA" = (/obj/item/frame/light,/obj/machinery/light_switch{dir = 8; pixel_x = 28},/turf/simulated/floor/plating,/area/vacant/vacant_shop) @@ -4121,7 +4121,7 @@ "bBm" = (/obj/structure/railing{icon_state = "railing0"; dir = 4},/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) "bBn" = (/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{icon_state = "map-scrubbers"; dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 8},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) "bBo" = (/obj/structure/railing{dir = 8},/obj/structure/railing{dir = 2; flags = null},/turf/simulated/floor/water/hotspring,/area/hallway/lower/central) -"bBp" = (/turf/simulated/floor/wood,/obj/item/stack/material/wood{amount = 10},/obj/effect/decal/cleanable/dirt,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bBp" = (/turf/simulated/floor/plating,/obj/machinery/light_construct,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) "bBq" = (/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/effect/floor_decal/industrial/warning{icon_state = "warning"; dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/central) "bBr" = (/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 6},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 6},/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) "bBs" = (/obj/machinery/atmospherics/pipe/manifold/hidden/supply,/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers,/obj/structure/catwalk,/turf/simulated/floor/plating,/area/hallway/lower/central) @@ -4153,7 +4153,7 @@ "bBS" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 4; d2 = 8; icon_state = "4-8"; pixel_x = 0},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 4},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/plating,/area/maintenance/aft) "bBT" = (/obj/effect/decal/cleanable/dirt,/obj/structure/cable{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/structure/cable{d1 = 1; d2 = 8; icon_state = "1-8"},/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers{dir = 10},/obj/machinery/atmospherics/pipe/simple/hidden/supply{dir = 10},/obj/structure/disposalpipe/segment{dir = 2; icon_state = "pipe-c"},/turf/simulated/floor/plating,/area/borealis2/elevator/dorms) "bBU" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/atmospherics/pipe/simple/hidden/scrubbers,/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/blue{dir = 1},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) -"bBV" = (/turf/simulated/floor/plating,/obj/machinery/light_construct,/turf/simulated/floor/wood/broken,/area/maintenance/maintroom6) +"bBV" = (/obj/structure/particle_accelerator/power_box,/turf/simulated/floor/reinforced,/area/rnd/lab) "bBW" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/structure/cable/green{d1 = 2; d2 = 8; icon_state = "2-8"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 4},/obj/machinery/atmospherics/pipe/manifold/hidden/supply{dir = 4},/obj/structure/disposalpipe/junction,/turf/simulated/floor/tiled,/area/hallway/lower/dorms) "bBX" = (/obj/structure/cable/green{d1 = 1; d2 = 2; icon_state = "1-2"},/obj/machinery/atmospherics/pipe/manifold/hidden/scrubbers{dir = 8},/obj/machinery/atmospherics/pipe/simple/hidden/supply,/obj/machinery/light{icon_state = "tube1"; dir = 8},/obj/structure/disposalpipe/segment,/obj/effect/floor_decal/corner/white{dir = 8},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) "bBZ" = (/obj/structure/cable/green{d1 = 4; d2 = 8; icon_state = "4-8"},/obj/structure/disposalpipe/segment{dir = 4},/turf/simulated/floor/tiled,/area/hallway/lower/dorms) @@ -4249,15 +4249,15 @@ aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWas aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaCeaCeaCeaCeaCeaCeaCeaCeaDiaDlaDwaDiaDxaDyaDzaDAaDBaDCaDDaDEaDFaDGaDHaDIaDDaDvaDvaDJaDvbeRbrybrybvMaCIbbcbbcbbcbbcbbcbbcbbcbbbalFbgzbBBaFranKanOanPanPanPanKbnsajxajxajxajxajxajxajxajxbyUaYSboqaZbaZbboraZbaZbaZbaJgavLapDaqaaqaaqaaqaaqaaqaaqHaqIapDbidbifapzapzaqJapzapzaqOaqUaqOapzaqXaraaqXapCapCarbapCapCbitbxebjlbjlbjlbjlbjlbjlbjlbjlbjlbjlbjlaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaDiaEcbdBaDiaDLaDMaDNaDOaDPaDQaDvaDRaDSaDTaDUaDvaDvaDTaDvaDJaDvbeRbrybrybyVaCIbbbbbbbbbbbbbbbbbbbbbanKanKbgEaFtanSanKanTanPanUanVanKbokajxajxajxbwBajxbyWaNgaNgbyYaJgbosaZbaYZbgFaZbaZbbotaJgavLapDaqaaqaaqaaqaaqaaqaarharnarpbivbizarqarxaryarzarAarzarFarGapzarHarIarJarKarJarLarMaELbiAaqDbjlbjnbjobjlbjpbiebjrbjrbjrbjrbjlaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaDibdCbdDaDiaEaaEbaCSaEgaQSbbEaDvbbFbbGbcybczbcAbcBbcCbcBaDJbcDaCXaJyaJybzaaJAaLeaLfaLganKanKanKanKaodapJapNaJcbAuanKanKbBzanKaoiaoiaojaolaoiaoiaoiajxbzbajxajxbngaJgaJgaZcaZdbgHaZcaZdaJgaJgavLapDapDapDapDapDapDapDapDapDapDbiZbjaapzaFdaGAaHLaOqaOraOsaOtapzaOuaPgaShaSXaSZaTcaTfapCbjbasjbjsbjtbjubjlbjvbjwbjxbjwbjrbjrbjlbjlbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac -aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdEbdFbdGaDibcEbcFbcGaDvaDvbcHaDvbcIaCXbcYbdabdabdbbdlbdlbdmbdlbdnaLhaLebzaaLiaLeaLjaLjanKaomaomaonaofaqjapNaJcaofaooaoraofaosaoiaotaovaowaoxaoyaoiajxbzbajxajxbovaKybowbowajxboxajxboParcaJBavLaTgaUXaUXaUXaUXaUXaUXaUYaUZaTgbnZbiaapzapzaVaapzapzapzapzapzapzaVbaVbaVbaVbaVbaVcaVbaVbbjfaqDbjlbjybjzbjlbjAbwxbjwbjrbjCbjrbjDbjEbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac +aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdEbdFbdGaDibcEbcFbcGaDvaDvbcHaDvbcIaCXbcYbdabdabdbbdlbdlbdmbdlbdnaLhaLebzaaLiaLeaLjaLjanKaomaomaonaofaqjapNaJcaofaooaoraofaosaoiaotaovaowaoxaoyaoiajxbzbajxajxbovaKybowbowajxboxajxboParcaJBavLaTgaUXaUXaUXaUXaUXaUXaUYaUZaTgbnZbiaapzapzaVaapzapzapzapzapzapzaVbaVbaVbaVbaVbaVcaVbaVbbjfaqDbjlbjybjzbjlbjAbuqbjwbjrbjCbjrbjDbjEbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdIbdJbdKbdLbdobdpbdqbdpbdrbdsbdpbdtbdHbdMbdNbdObdPbdlbdQbdRbdSbdnaLhaLebzdbzebzfbzfbzfbzgbzhbzhbzhbzhbziaPFaPQaqmaqQaqRarebzjarwasaaoSaoSapdaprapsbzkbzlaTpaTpboCaTpaTpaTpaTpboDajxbxdarcaJEavLaTgaUXaUXaUXaUXaUXaUXaVdaVeaTgbxnbkkaVfaVgaVhaViaVfaVjaVkaVjaVfaVlaVmaVlaVbaVnaVoaVpaVbbkhasUbjlbjFbjGbjHbjIbjJbjCbjrbjxbjwbjKbjCbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbdTbdTbdTbdTbdTbdTbdTaDiaDvaDDaDJbdUbdUaDUaDvbdVbdWbdpbdrbdXbdYbdlbdZbeabebbdnaLhaLeaMGbzaaLiaLiaLianKaptaptaptaofaofapNaqjaofapHaofapIaqjaoiasIapKapMbAoapVapWajxbzmakrakraQiakrboHakrakrboIajxbBwarcaJFavLaTgaUXaUXaUXaUXaUXaUXaVqaVraVsbxobocaVfaVtaVuaVvaVfaVwaVxaVwaVfaVyaVzaVyaVbaVAaVBaVCaVbbjfaqDbjlbjLbjxbjlbjMbjObjCbjPbjQbjwbjpbjRbjSaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbecbecbedbedbecbeebeGaDhaDhbegbehbeibejbekbelbembdHbenbeobepbeqbdnbdnbdnberbdnaLhaLeaMHbzabvWaLiaLianKapZaqhaqhaqhaqiarUaExaofaqlaEGaqnbznaoiaoiaoiaqpaqxaqyaoiaqzarVaoiaqBaoiajxakzajxajxajxajxajxboKaJFavLaTgaTgaTgaTgaTgaTgaTgaTgaTgaTgbiZboBaVfaVDaVEaVfaVfaVxaVFaVGaVfaVHaVIaVzaVbaVbaVJaVbaVbbwwaqDbjlbjxbjTbjlbjUbjVbjrbjlbjrbjrbjWbjXbjZaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbesbetbeubevbesbesbdTbewaCXaCXaCXaCXaCXaCXaCXaCXaCXaCXaCXaCXaCXaCXaLhbdnbexbdnaLhaLeaMIbzaaLibvWaNpanKaptaptaptaofaqCaqKaENaofaofaofaofaqjbxiaqNbwEaEOaEWaEWaIwaICatlaqSaqTaoibxjboLbowajxajxajxajxaQyaJFavLaVKaVLaVLaVLaVLaVLaVLaVMaVNaVKbAKbhZaVOaVPaVQaVRaVSaVRaVTaVUaVfaVVaVWaVXaVYaVXaVZaWaaWbbwWaqDbjlbklbkmbjlbknbjVbjwbjrbkpbkqblPblPbveaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac -aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbeybezbeAbeBbeBbeCbdTaCXaCXaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLebdnbdnbdnaLhaLeaNqbzabvWaLiaNranKaqVaofaofaofaqWardaJXaofaofarfaofaqjaqMarmarvaXaarQarRarvarSaEvasuarWaqBajxboLbBCboNboNaJFaJGaYmaJFavLaVKaVLaVLaVLaVLaVLaVLaWcaWdaVKbBUbxbaVfaWeaWfaWgaWhaWiaWjaWkaVfaWlaWmaWnaWoaWpaWqaWraVbbjbaqDbjlbjlbjlbjlbjCbjzbjKbjrbBpbjCbjwbjrbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac +aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbeybezbeAbeBbeBbeCbdTaCXaCXaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLhaLebdnbdnbdnaLhaLeaNqbzabvWaLiaNranKaqVaofaofaofaqWardaJXaofaofarfaofaqjaqMarmarvaXaarQarRarvarSaEvasuarWaqBajxboLbBCboNboNaJFaJGaYmaJFavLaVKaVLaVLaVLaVLaVLaVLaWcaWdaVKbBUbxbaVfaWeaWfaWgaWhaWiaWjaWkaVfaWlaWmaWnaWoaWpaWqaWraVbbjbaqDbjlbjlbjlbjlbjCbjzbjKbjrbwxbjCbjwbjrbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbeDbeEbeubeBbeEbeDbdTaLhaLeaLeaLeaLeaLhaLeaLeaLeaLeaLeaNwaLeaLeaLeaLeaNyaLiaOWaLiaLeaLibzaaLiaLiaLianKarXarXarXaofaofapNaqjaofaofaofaofaqjaqMarYarZaXWaoiascassastaEwasuarWaqBajxakzbBEarcboNaJFavLaYmaJFavLaVKaVLaVLaVLaVLaVLaVLaWsaWtaWubBWbiaaVfaVfaVDaVfaVfaVfaVfaVfaVfaVbaVbaVbaVbaVbaVcaVbaVbbjfaqDbjlbvybvzbvAbjwbvBbjrbjrbjwbjrbjDbvCbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbdTbdTbdTbdTbdTbdTbdTbdTaLhaOYaLeaLeaLeaLeaNraQaaJyaQbaJyaLiaJyaQbaJyaLiaLiaLeaLeaLeaLebzpbzqbvYaHlaHlanKanKanKanKasvaswaEQaEzaERaxhaxhaxhbzrbzsasxasyaXXaoiasKasyasLaEvasuarWaqBajxakzbBCboNboNaJFavLaYmaJIavLaVKaVKaVKaVKaVKaVKaVKaVKaVKaVKbBXbyZaWvaWwaWxaWyaWvaWzaWzaWzaWzaWAaWAaWAaWBaWCaWDaWEaWBbzcaPibjlbvDbvEbvFbvGbvHbjwbjxbjrbjrbjlbjlbjlaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac -aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaLhaLiaZpaLiaLiaLiawQbfgbfgbfgbfjbfkbflbfgbfmbfmbfnbfmbfmbfmbfmbztaHlaHlaHlaHmbxlaHlanKasMasNasNasNbbkapNbwGasPatjatkbzuarmarvaXZatmatnayDarSaEvasuarWaqBajxakzboQarcboNaJFaJJaYmaJFavLaWFaWGaWGaWGaWGaWGaWGaWHaWIaWFbnZbiaaWvaWJaWKaWLaWvaWvaWvaWvaWvaWBaWBaWBaWBaWMaWNaWOaWBbjfaqDbjlbjxbjrbjxbjxbBVbjrbjrbjrbjrbjlaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac +aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaLhaLiaZpaLiaLiaLiawQbfgbfgbfgbfjbfkbflbfgbfmbfmbfnbfmbfmbfmbfmbztaHlaHlaHlaHmbxlaHlanKasMasNasNasNbbkapNbwGasPatjatkbzuarmarvaXZatmatnayDarSaEvasuarWaqBajxakzboQarcboNaJFaJJaYmaJFavLaWFaWGaWGaWGaWGaWGaWGaWHaWIaWFbnZbiaaWvaWJaWKaWLaWvaWvaWvaWvaWvaWBaWBaWBaWBaWMaWNaWOaWBbjfaqDbjlbjxbjrbjxbjxbBpbjrbjrbjrbjrbjlaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaLhaLhaLhaLiaLiaLeaLeaLeaLebrSaLeaLebsbbsrbssbstaLiaLeaLeaLeaLeaLeaLeaLebzwaHlaHqaHYaHZaIaaHlaHlaHlanKanKanKanKaNsanKanKanKaEtbzxbzyaUzbfyaUJaUJaUJaUJaUOarvaYbaoiaQjaQkaQjaQjaQjaJFaJJbqEaJFaJFaWFaWGaWGaWGaWGaWGaWGaWPaWQaWFbzvbzFaWvaWRaWSaWvaWvaWTaWUaWVaWvaWWaWXaWYaWBaWBaWZaWBaWBbzvaqDbjlbjlbjlbjlbjlbjlbvLbjlbjlbjlbjlaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaLhaOYbsuaLhbsvaLhaLhaLhaLhaLlbswaLeaLeaLeaLeaLeaLeaLeasWasWasWasWasWaLhbzwaHlaHlaHlbwIaIcaHlaIdaIfasMaNvaEAaEBaNxaEBaEAaPYanKaEFbzzbzAbzBaEHaEIaEJaEKaYfbblaYhaoiaSmaSnaSoaSpbrBaJLbkMbkOaJFaJNaWFaWGaWGaWGaWGaWGaWGaXbaXcaXdbzGbhZaXeaXfaXgaXhaXiaXhaXjaXkaWvaXlaXmaXnaXoaXnaXpaXqaXrbwWbxeapxaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaLhaLhbsxaLjbsyaLhaLhaLhaLhbszbsAbsBaLhasWasWasWasWasWasWasWasWasWasWaLebzwaHlaIgaHYaIkaIlaImaInaIoasMbfbbfcbfdbfebfdbfcbffanKaoiaoiaEVaYiaoiaoiaoiaoiaoiaoiaoiaoibxHbxHbxIbxJbxKbkVbkOaJFaJFaJNaWFaWFaWFaWFaWFaWFaWFaWFaWFaWFbiZbxbaWvaXsaXtaXuaXvaXwaXxaXyaWvaXzaXAaXBaXCaXDaXEaXFaWBbjbaqDapxaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac @@ -4307,7 +4307,7 @@ aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaF aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSaXSbuhbuhbuhbuhbuhbuhbuhbuhbuhaXSbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSbuhbuhbuhbuhbuhbuobuhbuhbuhbuhbuhbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSbuhbuhbuhbuhbuhbupbuhbuhbuhbuhbuhbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac -aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSbuhbuhbuhbuhbuhbuqbuhbuhbuhbuhbuhbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac +aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSbuhbuhbuhbuhbuhbBVbuhbuhbuhbuhbuhbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSbuhbuhbuhbuhburbusbutbuhbuhbuhbuhbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSbuhbuhbuhbuhbuhbuhbuhbuhbuhbuhbuhbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac aacaacaacaacaacaacaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEbiOaXSaXSbuhbuhbuhbuhbuhbuhbuhbuhbuhaXSbsZaFEaFEaFEaFEaFEaFEaFEaFEaFEaFEasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWasWaacaacaacaacaacaac diff --git a/maps/yw/submaps/aerostat/surface.dmm b/maps/yw/submaps/aerostat/surface.dmm index 6bb7e4699a..aed3781189 100644 --- a/maps/yw/submaps/aerostat/surface.dmm +++ b/maps/yw/submaps/aerostat/surface.dmm @@ -1,9 +1,9 @@ "a" = (/obj/away_mission_init/aerostat,/turf/simulated/mineral/floor/ignore_mapgen/virgo2,/area/cryogaia_away/aerostat/surface/explored) "b" = (/turf/unsimulated/wall/planetary/virgo2,/area/cryogaia_away/aerostat/surface) +"c" = (/turf/simulated/wall/solidrock,/area/cryogaia_away/aerostat/surface/explored) "e" = (/obj/cryogaia_away_spawner/aerostat_surface,/turf/simulated/mineral/floor/ignore_mapgen/virgo2,/area/cryogaia_away/aerostat/surface/explored) "i" = (/turf/simulated/mineral/floor/ignore_mapgen/virgo2,/area/cryogaia_away/aerostat/surface/explored) "n" = (/obj/structure/railing{icon_state = "railing0"; dir = 1},/obj/structure/metal_edge,/turf/simulated/mineral/floor/ignore_mapgen/virgo2,/area/cryogaia_away/aerostat/surface/explored) -"q" = (/turf/simulated/mineral/virgo2,/area/cryogaia_away/aerostat/surface/explored) "A" = (/obj/structure/railing{icon_state = "railing0"; dir = 8},/turf/simulated/mineral/floor/ignore_mapgen/virgo2,/area/cryogaia_away/aerostat/surface/explored) "F" = (/turf/simulated/mineral/virgo2,/area/cryogaia_away/aerostat/surface/unexplored) "I" = (/obj/effect/floor_decal/rust,/turf/simulated/floor/tiled/techfloor/virgo2,/area/cryogaia_away/aerostat/surface/explored) @@ -13,143 +13,143 @@ (1,1,1) = {" bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb -bqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiieiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiFFFFFFFFiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFiiiiiiiiiFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiiiiiiiiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFieiiiiiiiiiiiiiiiiiiIIiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiVVVVVVVVVVVVViiIiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiaiXIIIIIIIIIIIIIAiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiXIIIIIIIIIIIIIAIIiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiXIIIIQQQQQIIIIAIIiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiXIIIIQQQQQIIIIAiIiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiIIIIQQQQQIIIIiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiIIIIQQQQQIIIIiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiIiXIIIIQQQQQIIIIAiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiIiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiIIiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIIIiXIIIIQQQQQIIIIAiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIiiiXIIIIQQQQQIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiXIIIIIIIIIIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiXIIIIIIIIIIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIiiiXIIIIIIIIIIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiIiiiinnnnnnnnnnnnniiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIiiiiiiiiiiiiiiiiiiieiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiiiiiiiiiiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiiiiiiiFFiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiFFFFFFFFFFiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFieiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFqb -bqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqqb +bccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiieiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiFFFFFFFFiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFiiiiiiiiiFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiiiiiiiiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFieiiiiiiiiiiiiiiiiiiIIiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiVVVVVVVVVVVVViiIiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiaiXIIIIIIIIIIIIIAiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiXIIIIIIIIIIIIIAIIiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiXIIIIQQQQQIIIIAIIiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiXIIIIQQQQQIIIIAiIiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiIIIIQQQQQIIIIiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiIIIIQQQQQIIIIiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiIiXIIIIQQQQQIIIIAiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiIiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiIIiXIIIIQQQQQIIIIAiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIIIiXIIIIQQQQQIIIIAiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIiiiXIIIIQQQQQIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiXIIIIIIIIIIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiXIIIIIIIIIIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIiiiXIIIIIIIIIIIIIAiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiIiiiinnnnnnnnnnnnniiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiIiiiiiiiiiiiiiiiiiiieiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiiiiiiiiiiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiiiiiiiiFFiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiiiFFFFFFFFFFiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFieiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFiiFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bcFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFcb +bccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccccb bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb "} diff --git a/nano/images/nanomap_z2.png b/nano/images/nanomap_z2.png index 1f076cad9f..5ccd461808 100644 Binary files a/nano/images/nanomap_z2.png and b/nano/images/nanomap_z2.png differ diff --git a/nano/images/nanomap_z3.png b/nano/images/nanomap_z3.png index ec916ed1bb..0761eed916 100644 Binary files a/nano/images/nanomap_z3.png and b/nano/images/nanomap_z3.png differ diff --git a/nano/images/nanomap_z5.png b/nano/images/nanomap_z5.png index 73f01b53b8..d8aece303d 100644 Binary files a/nano/images/nanomap_z5.png and b/nano/images/nanomap_z5.png differ diff --git a/news_articles/galaxy_wide_archived_1.html b/news_articles/galaxy_wide_archived_1.html new file mode 100644 index 0000000000..0211428517 --- /dev/null +++ b/news_articles/galaxy_wide_archived_1.html @@ -0,0 +1,132 @@ + +

+ +

These are archived news stories from Galaxy Wide

+ 03/27/2561 to 05/24/2561 +
+
+Galaxy Wide News +
+Hellooo people of the galaxy! +We are happy to say that this news station is now up and running. We will be accepting request from you the people, companys and even empires through out the stars. Stay tuned! +
+
+Galaxy Wide News +
+Hello fellow readers, today we have some intresting news. +Cargo ships on the outer edge of human controled space have suspiciously vanished. Searches are on going at this time, no offical statements have been made by the system security. +
+
+Galaxy Wide News +
+Hello folks, today has been a good and progressive day for some Empires of the galaxy. +The... A.R... that stands for Athorian Republic for yall out there who arn't in the outer edge systems, they have announced that they will be changing some laws, a Commander in the A.R. Civil Protection Command stated, "These laws have remained the same for several hundred years, while we are not sure if the change will be permanent, we do hope it improves our standing in the galactic community, we will give further details later on in the prossess. thank you." this is intresting to say the least. +
+
+In other news, farmers are noticing a sharp increase in food production in the core of human space, this has already improved the lifes of some of the poorer colonies with the price drops, though some are suspecios about these food production inceases going as for as to say that pirates may be involved. Thats something right there, this was Galaxy Wide News. Stay Tuned! +
+
+03/27/2561 +
+Galaxy Wide News +
+Hello hello! We have some travel related news coming right your way. Increased Sol Gov naval ships have been seen along the outer edge systems most likely requested to be there to help stop cargo ships from going missing. in other places related to space ships, a ship was shot down by local defences after the ship failed to request permission to land, so remember people ALWAYS request to land before you land because it seems that some places will give a lethal responds, luckly for the ship that was shot down, no major casualties was reported... Oh and we just got word... A ship of great scale was reported earlyer today, but apon further investigations, it was just a oddly shaped asteroid. Thats all we have for now, stay tuned! +
+
+03/28/2561 +
+Galaxy Wide News +
+Hello, today we have news regarding the missing cargo ships in the outer edge systems. With Sol Gov support, the United Galactic Protection Services (U.G.P.S.) found that vox pirates were the ones attacking the cargo ships, it was also descovered that the vox pirates were taking weapons and phoron from the ships, the weapons stolen have been from reports, sold on the black market. When we asked one local colonist in particuler, 'What do you think of the pirate situation' they replyed, "Im worried about being attacked and our security force not being able to protect us." Sol gov when asked the same question did not give a responds, but when we asked the U.G.P.S. Commander John Wolf, "What do you think of the pirates and the black market situation in the outer edges systems?" he replyed "We have the situation under control, we will be sending more crusiers to reinforce the colonies that are under our protection, as for the black market ordeal we are currently trying to reclaim everything that was stolen." +
+Todays Supporters in the creation of this story +
+Hellrazer - Helped with concepts and writing. +
+Dangerus Kitty - Helped with concepts and writing. +
+
+03/30/2561 +
+Galaxy Wide News +
+Hello folks of the galaxy, today we got word that employees of a NT station called, Yawn Wider have been unlawfully going to the stations Central Command, we don't have all the details but when we asked a NT official Mitch Milburn about it they said, "We have recently received reports from the officers aboard Yawn central command about an increased number of personnel in space suits entering the perimeter. Entering central command's perimeter without permission from the officers aboard is highly illegal and if any personnel is spotted doing so we cannot guarantee their safety." and thats whats going on in Virgo. In other parts of the galaxy, Strog Industries (S.Ind) from reports they have been looking into augmentation of the Vox, we attempted to ask S.Ind about this but they denied any claims we will be looking into this further. +
+
+Todays supporters in the creation of this story +
+Izac112 - Gave the NT offical's statement to be used in this post. +
+Dangerus Kitty - lended a hand helping with the writing. +
+
+04/12/2561 +
+Galaxy Wide News +
+Hello people of the galaxy! Today we have news of NT apparently presenting evidence of slavery that the robotics industry giant of Ro.Co. are suspected of doing. We investigated by interviewering a NT offical where they stated the following, "We have recently hired someone in the Virgo system and we found that they had a tracking implant featuring Ro.Co. designs, we are still looking into it to confirm our suspicions, I would go into further detail but I am unable to at this time." +With that said we also asked a Ro.Co. offical and they deny any claims to slavery stating, "We do not have illegal slaves not do we support such a terrible act, the tracking implants are just being used for employees that have commited crimes in the past so we are very suprised that NT would go to such great lengths to hurt our company." There will be court hearings in the coming week, stay tuned for more information! +
+
+Todays Supporters in the creation of this story +
+JackeryFox - Helped with the writing in this story alot. +
+
+05/06/2561 +
+Galaxy Wide News +
+!!!Breaking News!!! +
+Sol Gov's 12th fleet reportedly went into A.R. (Athorian Republic) space and attacked a fleet of A.R.M. ships, the 12th Sol Gov fleet were severely damaged and surrendered to the A.R.M. fleet, reportedly the A.R. will be charging the 12th Sol Gov fleet for breaking border laws both Sol Gov and the A.R. have not stated anything to the press as of yet. +
+In other parts of the galaxy.. population growth in a outer system of Virgo has caused food and water shortages. Support organizations have come in to try and help this issue... Core systems such as Sol have had pirate trouble as city crime rates and ship disappearances go up. +
+A.R. have issued a temperary ban on Vox being in A.R. space due to pirates and aggression from the Vox, A.R. Offical Kalgar Misko stated, "With this ban this will allow A.R.M. system defences to meet Vox pirates with lethal force rather then attempting to arrest them." We here at G.W.N. ask Kalgar, "Does the A.R. see the Vox as a galactic empire?" Kalgar replied, "No.. the A.R. has deem the vox as a remnant class civilization, which means we can't declare war on them, but if they show to much aggression we can have them marked as a threat to our empire." We attempted to get more info but there was nothing more we could get. +
+Mercenary and Security organizations across the outer edge of human space have clashed, it would seem from reports that companies in those areas are hiring mercs to attack security companies, this has ranged from attacking supply ships to attacking outpost. +
+
+05/07/2561 +
+Galaxy Wide News +
+Hello folks! Today we have more reports of pirates in human space. +A medical freighter was raided by pirates, the suspects leader has not been identified but from video surveillance the leader is a human male with red eyes and assumed to be blonde with a pony tail and has pale skin, Local security in the system have requested that if anyone fits this description to report it to your local system security department. +Other info on the pirate crew is sparse but it was multi crew (more then one race.) and the humans from surveillance appeared to only talk through hand motions. +
+Credits +
+Writer(s)Admiral Dragon +
+Story submition:Captain matt (Kudos) +
+Side notes: I would like to thank Kudos and congratulate him on being the first to submit a story/concept to G.W.N. +
+
+05/09/2561 +
+Galaxy Wide News +
+Transmition to: Yawn Wider +
+Hello Y.W. we have heard about a birthday and we here at G.W.N. would like to say HAPPY BIRTHDAY to the lovely Juli Gaze, we wish you a great day. +
+
+05/24/2561 +
+Galaxy Wide news +
+!!!Breaking news!!! +A terroristic act was brought about on Yawn Wider station, mercenaries attacked the station inflicting large amount of damage, casualties. +The mercenaries were all killed with none taken alive, political figures in the military line of work criticize Yawn Wider's staff for not attempting to take prisoners while congratulating them on the fact they held of a attack with little security abord. +At the current time the staff on Yawn Wider have been placed into a temperary station that was going unused, while the original gets repaired and cleaned up. +
+
+

End of the archived news stories from Galaxy Wide

+ 03/27/2561 to 05/24/2561 +
\ No newline at end of file diff --git a/news_articles/the_sleepy_sergal_2.html b/news_articles/the_sleepy_sergal_2.html new file mode 100644 index 0000000000..eba9a81d73 --- /dev/null +++ b/news_articles/the_sleepy_sergal_2.html @@ -0,0 +1,78 @@ +
+ +
+
+ +

The Sleepy Sergal - 09/28/2536

+

===Unathi Black Egg Plague At Record High! (powered by Nanotrasen®™)===

+ +

The Hegemony High Council has released a statement today confirming what has been circulating amongst the circles of the unathi population: Black Egg Syndrome has been at an all time high, at thirteen percent and rising. +

For readers who are unaware, this is a condition that mainly targets unathi females, sympthoms include unathi egg clutches including one or several eggs which are covered in a dark, hard, leather like substance, which makes hatching for the young skinks next to impossible thanks to how solid the egg is compared to normal. Often times this will result in the egg being left for dead in the wild, and the female is reclassified as male due to their cultural value decreasing.

+ +

Beyond confirming what was suspected, Hegemony, as well as Solgov officals, have declined to comment. Skrellian officals, meanwhile, have remarked that they would seek a cure for this deliberating condition, as a token of goodwill after the war years earlier involving the Hegemony, Skrell, and Solgov.

+ +

- Reporter Jalder Strelam

+

Writer(s)

+

Matt

+ +
+ +

The Sleepy Sergal - 10/02/2536

+

Obituary - Pablo Jenner

+ +

Pablo Jenner passed away while fighting giant space bears during a mining expedition on the evening of October 10th, 2563, at the age of 76. He will be greatly missed for his service. He has lived a rich life of mining on various planets and moons, and continued on even after losing his legs to other creatures, he was a real trooper.

+ +

His last words were to a certain Margaret and it said: "Tell her she's a bitch."

+ +

Respects can be paid at the Yawn Wider Colony, where his remains are currently kept.

+ +

Writer(s)

+

Kelshark

+ +

Credits

+

Snek, the souped up space bear
+Legion

+ +
+ +

The Sleepy Sergal - 10/03/2536

+

===Tragic Tram Crash on Virgo 3B! (powered by Nanotrasen®™) ===

+ +

Tragic news from Virgo 3B today. The orange line tram's automated brakes failed to engage when arriving at one of the waystations on the route. The resulting crash ended up destroying the small station's tram terminal, as well as the tram car itself. The automated systems however, did not pick up on the crash until much later, reporting that the train was still moving as normal. It wasn't until crewmembers aboard the next stop on the line, Yawn Wider Station, noticed that the tram was mysteriously missing, that technicians realized what had happened.

+ +

The tram contained two passengers, Sabel Hall, 34, Human; and Farket Mrrhalka, 21, Tajara. Only Sabel's body has been located at this time, though the explosion, coupled with the harsh environment, leads investigators to presume that Farket was also killed.

+ +

A memorial service will be conducted for the victims of the tragic accident on their home colony. In the meantime, technicians begun repairs on the orange line, and, in the meantime, workers should use short range teleporters, or a different tram line, to make it to and from their workplace

+ +

Writer(s)

+

Cebutris

+ +

Credits

+

The shuttle system breaking

+ +
+ +

The Sleepy Sergal - 10/13/2536

+

===Fast Headlines (powered by Nanotrasen®™)===

+ +

Spooky celebrations: The capital city on Sol IIIᵃ is due to begin the 2563 celebration of its annual "Festival of Spirits", a 45 day long celebration of various cultures' supernatural-centric holidays. The festival kicks off with Earth's american region holiday "Halloween" on day one, followed by its neighbor to the south's "Día de Muertos" (Day of the dead) on day two. For a full list, see exonet address sol.luna.spiritfest.nt. New entries into the line-up this year include an performance enactments of Hawaii, Earth's "Nightmarchers", and Doradus IV's temperate zone holiday "Eve of the Seafolk"

+ +

Mystery probe: An uncrewed probe of mysterious make and origin has been detected at the fringes of Nanotrasen space. Reportedly, it does nto match the construction materials or techniques of any galactic power, and governments and corporations alike are denying involvement in the machine's manufacture and operation. Just as soon as it was detected, the probe enabled a series of stealth systems one-by-one including heat sinks, subspace radio jamming, EM field scattering, and what is theorized to be an advanced form of spacetime distortional phasing until it finally escaped detection.

+ +

Box Office Record Scared to Death: The new Horror holofilm "Alone in the void", in which a multi-species crew on a station outside of reliable communications range must fight to survive a power failure, while attempting to decipher the mystery of who, or what, is killing personnel one by one, opened to an astounding 517 billion thalers, after the success of a long, extensive exonet viral marketing ARG spanning an area of 39 systems. Contestants had to find public exonet terminals with notes adhered to them, dig up buried cases of clues, and in one instance, actually space walk on an asteroid covertly registered by the studio under the name of a non-existent small mining company.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 10/21/2536

+

===GOOD TIDINGS AND CHEER (powered by Nanotrasen®™)===

+ +

As with every year, the sol winter holiday season is coming up, and fast! The solstice around which the holidays are centered will occur on Thursday, 22.Dec.2563 at 04:20:33 NT-ST, in fact! That's only a month away, so be sure to get those extra duty shifts in to make your holidays exceptionally magical! As always, we'd like to wish all employees and citizens within Nanotrasen Interstellar holdings, and denizens of its member planet-states and colonies, a happy, happy holidays, full of family, friends, festivity, and fine products by Getmore Chocolate Corp®™ and Robust Softdrinks®™.

+ +

Writer(s)

+

DeepIndigo

\ No newline at end of file diff --git a/news_articles/the_sleepy_sergal_archived_1.html b/news_articles/the_sleepy_sergal_archived_1.html new file mode 100644 index 0000000000..6759035d62 --- /dev/null +++ b/news_articles/the_sleepy_sergal_archived_1.html @@ -0,0 +1,332 @@ +
+ +
+ +

These are archived news stories from The Sleepy Sergal

+ 03/01/2562 to 05/24/2563 +
+
+ +

Welcome to The Sleepy Sergal's news channel! - 03/01/2562

+ +

The Sleepy Sergal is an independent group of news reporters based out of the Virgo-Erigone system. While our updates might not be frequent, it's quality hand crafted content straight from the heart of Virgo! Remember to check back often for more unbiased and quality news, because you deserve it! Remember, we're not dead - only dormant! Rumors that we hijacked another station's channel and equipment are wildly exaggerated. +The Sleepy Sergal

+

Into the Slightly Unknown!

+ +

NanoTrasen's new addition to the Research Department, The Exploration Team, was unveiled several weeks ago with resounding success! NanoTrasen's Virgo-Erigone Central Command released data saying that alien artifact recovery has went up by a staggering 300%. While unconfirmed as of now, several interstellar salvage groups say that their vessel recovery rate has went up to untold numbers. NanoTrasen denies any correlation between their new program and the increase in derelict exploration vessels.

+ +

This article was sponsored by Havana Premium Cigars: For when you need to absolutely and positively ruin your lungs, with no exceptions!

+ +

Writer(s)

+

Sleepy

+ +
+ +

The Sleepy Sergal - 03/02/2562

+

Supermatter, does it matter?

+ +

After recent month's mass freighter convoy, consisting of vessels from Focal Point Energistics, Hephaestus Industries, and Aether Corporation, non-standard energy production facilities have been replacing the once standard 'Supermatter' engine. While less conventional and practiced, these alternatives - which include the MK1 Tesla Engine, the High Power Singularity Generator, and the R-UST Thermonuclear fusion reactor - provide reliable power at a more affordable cost. Colonists and workers in Virgo-Erigone have expressed concerns over how safe the new-to-them engines are in comparison to the Supermatter.

+ +

The Director of Power Technology at Focal stated, "It's probably okay, th-there's no proof a singularity is lethal. There's no autopsy data available," before vomiting on his desk and passing out.

+ +

In unrelated news, our condolences go out to the freighter 'Borealis' which was side struck by a black hole like object, experts say it was "probably natural causes.'

+ +

Writer(s)

+

Sleepy

+ +
+ +

The Sleepy Sergal - 03/03/2562

+ +

Donkified!

+ +

After fifteen years of public outcry, Donk Co has pushed out a new product, their statement being:

+ +

"Years on end our valued customers have been shouting, 'Put a bangin' donk on it!' We never thought it to be the most viable business strategy, until we researched and developed it. The new Donkified Donk Pocket is what the customers have been asking for! It comes in four distinct tastes, original, chicken alfredo, ?????, and meaty by product! We hope you enjoy the new Donk Co Donk Pocket Product!"

+ +

Reports have come in from across the galaxy saying that once you finish microwaving the Donkified Donk Pocket and take your first bite, it literally explodes. One consumer we asked said, "This is everything I've been looking for." Another said that, "The new jaw I had to have installed was worth the explosive taste of the new Donk. It's amazing!"

+ +

Writer(s)

+

Sleepy
+General Pantsu

+ +
+ +

The Sleepy Sergal - 03/23/2562

+

Pirate invasion on Yawn Wider!

+ +

Arr matey! It appears some pirates have attacked the Yawn Wider colony on the 22nd this month!

+ +

From our insider source, the invasion would have began sometime in the afternoon and was led by two pirates who managed to rush inside the colony with a small shuttle craft. Report came in that the pirates had been successful in capturing a hostage upon arrival, and would have left with the entirety of the vault, whose content is still kept a secret by Nanotrasen. The security forces of the colony seems to have been caught offguard by the sudden and unexpected attack. At least two dead have been reported (and resleeved) but there may have been a third one as well.

+ +

We have contacted the station's Overseer and all they had to say was: "I was unfortunately at central filling paperwork on that day, I wish I had been there to help repel the attack. I commend the crew for doing their best however."

+We have tried to contact Nanotrasen for comment, but have not gotten a response.

+ +

Writer(s)

+

Kelshark

+ +
+ +

The Sleepy Sergal - 06/25/2562

+

Nanotrasen gives workers free synths!

+ +

Workers on Yawn Wider's tether colony are in for a strange surprise!

+ +

During the off-shift clean up operations, a new resleeving pod had been installed, but the workers have learned that it is non-functional, and while the spare parts are being sent, travel times and rarity of the pieces for repairs means it may take a while before they can print up new bodies for those who encounters some ill fate on the more dangerous jobs!

+ +

Nanotrasen has therefore added a addendum to all Yawn Wider employees insurance, which allows for a free replacement synthetic body during their shifts, and their original body printed off-colony at another facility also free of charge.

+ +

Some employees are outraged by this, some outright refusing to allow themselves to be put in a synthetic shell and simply demanding to have their shift cut short and be immediately printed off-colony. That however, might be a hit on their paycheck!

+ +

Stay tuned for more on the Sleepy Sergal!

+ +

Writer(s)

+

Kelshark

+ +

Credits

+

Polaris bug

+ +
+ +

The Sleepy Sergal - 08/21/2562

+

Subterranean Phoron Deposits on Tarsonis II!

+ +

Tarsonis II, a planet in the Tarsonis system of the +Horsehead Nebula, a previously overlooked largely dry-desert world has come under attention in recent months due to the discovery of phoron deposits within its crust. An existing steel-mining outpost on the world's arid northern continent is being supplied with additional equipment and personnel to facilitate the extraction of the phoron and its loading onto trains for shipment to the starport far to the south.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 09/11/2562

+

Medicine Prices to increase on Doradus IV!

+ +

Following a modest phoron spill during routine shipment across the Tel'atmora province of the gaia world S'Zaan, a.k.a Doradus IV, of the Doradus system, Horsehead Nebula, legislation has been passed to tighten regulations regarding the transport of phoron over land, sea, and air, including an increase to the minimum tank hull thickness and higher hermatic valve quality standards. A mandate that phoron particulate and phoron powder be compressed into crystal sheet form before entering the planet's atmosphere has also been imposed.

+ +

As a member planet-state of Nanotrasen Space, the local governing executive board decided in a narrow 54:47 vote mostly along species lines to tighten regulations aimed at protecting the environment from phoron contamination. Representative Kontar Tannous of the board's Exo-Commerce Committee had the following to say:

+ +

"While we regret the inconvenience this may cause medical clinics and certain manufacturing sectors, as a species the native people of S'Zaan have historically taken the matter of environmental stewardship quite seriously. If we had not, our world wouldn't be the resort destination it is today. The board will be working tirelessly to determine a possible method to mitigate the increased cost that is fair to all parties".

+ +

Clean-up at the site of the spill is expected to take two weeks, and may require extensive excavation of the site.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 10/15/2562

+

Fast Headlines (powered by Nanotrasen)

+ +

Nuclear life: Scientists at a research outpost on Halcyon III?, Hawking Eta Cluster, have identified what they believe is a form of paper-thin fungal growth that, unlike most known life, is uranium-based as opposed to traditional carbon-based life.

+ +

Bonjour, Monsieur Pussy-Cat: Earlier today, The Lusty Argonian Maid was knocked off the top selling book series by the sixth edition of J'ezora's tell all documentary about his life growing up as a tajara in the earth region of France, and his career as a mime.

+ +

Scoured!: ''The Scouring: Microvestin Day'', the latest holofilm in the ''The Scouring'' franchise, opened to a box office take of over 1.678 billion Thalers despite being largely panned by critics. Industry analysts suggest this might mean that that critic circles have perhaps begun to lose touch with the tastes of the general public.

+ +

Triumph or Tragedy?: Hector Triumph, a candidate for defense minister in the Nanotrasen star system of Thessolonian (in the Attican Beta Cluster) has publicly declared intent to encase the star system's primary world and its star in a massive dyson sphere. He is quoted as saying ''We need to make Nanotrasen human again. Too many aliens are moving in on our glorious corporation and sending us their worst, nothing but mad bombers, communists, and mindbreaker dealers. We're going to build a sphere and make the aliens pay for it.''

+ +

Spooky celebrations: The capital city on Sol III? has begun its annual "Festival of Spirits", a 45 day long celebration of various cultures' supernatural-centric holidays. The festival kicks off with Earth's american region holiday "Halloween" on day one, followed by its neighbor to the south's "D�a de Muertos" (Day of the dead) on day two. For a full list, see exonet address sol.luna.spiritfest.nt.

+ +

Stay subbed to this feed for more breaking, reliable news!

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 11/30/2562

+

BREAKING IN SCIENCE! (powered by Nanotrasen)

+ +

Xenoarcheologists and technology historians have stumbled upon a treasure trove of research material after unmanned probes detected signs of nuclear detonation in a remote star system along the fringes of the Calisto Nebula. Upon arrival to the system, which will remain unidentified to prevent contamination prior to study, experts were astonished to find a world on which civilization had gone extinct in the later half of its "robotics" age.

+ +

While this sounds mundane, the planet in question had a rare trait uncommon in this sort of extinction event: still operating machines. Study is limited to orbital observation so far, owing to the fact that the civilization's machines of war are still carrying out nuclear bombings and the occasional ground invasion of one another. Apparently, the local inhabitants had more or less entirely automated warfare, and gone extinct as a result of the ensuing arms races.

+ +

Experts hope to find one of the software systems, if any are in use, responsible for operating the bombers/tanks/naval ships, or the now defunct menagerie of satellite-to-surface weapons after the conflict finally resolves its self and the last weapons power down. Present evidence suggests the weapons are drone-based, operating along preset command sets assigned by AI or possibly preserved organic intelligence. A "winner" of the continuing conflict between factions of what scientists are calling the "Revenant" society is expected to be among the few groups that seem to have established partial support infrastructures of similar machinery, namely automated resource extraction and maintenance. "With the degree of failure in these systems, it's anyone's game.", said lead tech researcher Patel Nanjiani.

+ +

The discovery is a sobering reminder of intelligent life's potential for self-destruction.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 12/17/2562

+

NANOTRASEN FESTIVITY BULLETIN

+ +

There are only 8 shopping days left until the Sol System Winter Solstice Holidays kick off proper! Nanotrasen would like to remind all employees that an extra hour every work cycle can mean the difference between a happy holiday, and a truly magical one, and wish employees, citizens of Nanotrasen's interstellar holdings, and members of the Nanotrasen Star Navy, a joyous winter solstice holiday period, filled with laughter, family, and a great homecooked meal from ingredients by fine purveyors of food and drink stuffs such as Getmore and the Robust Softdrink Company.

+ +

Writer(s)

+

DeepIndigo

+ +

Credits

+

Nanotrasen Civil and Professional Morale Department

+ +
+ +

The Sleepy Sergal - 01/17/2563

+

Taitrus to leave FATO

+ +

Nanotrasen Corporate Strategists in the Sol System offices are growing concerned as the colonial government of the SOLGOV held Taitrus System in the Milky Way's Fourth Spiral Arm threaten to leave the Fourth Arm Treaty Organization, a coalition of local governments in 4A committed to a mutual defense funding/resource pool shared along the spinward edge of the arm. Taitrus' position in the arm near the galactic core could mean its departure from FATO will open gaps through which enemy corporations can funnel personnel and equipment for larger, and deeper incursions into Nanotrasen and NT-joint-held territories.

+ +

As such, company reps are making efforts to persuade Taitrus' government to stay in the agreement. Diplomats from the system however, contend that their solar system has been getting the "short end of the FATO stick", with limited portions of the organization resources being applied to their defense relative to others, like those along the fourth arm's edge bulk. "We're basically out here defending our selves, so why should we be tithing to a defense pool we don't benefit from? Our freighters, logistics networks, and colonial militia play a small, but vital role in FATO, and we get nothing. They're better used just staying home." said one Taitrus dignitary. Nanotrasen Corporate strategists declined to comment beyond a form letter stating that Taitrus' involvement is important to them, and that they regret circumstances which have lead to Taitrus' consideration of leaving FATO.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 02/20/2563

+

One-two punch update, powered by Nanotrasen

+ +

==Valentines Day Box Office Numbers==

+ +

The Nanotrasen Media Statistics Office has released box office numbers for holofilm theatres and streaming services. Here's the top three best sellers for V-day of 2563

+ +

Kissed Her Sister: A new tajaran romcom detailing the wild hijinks that ensue when a man accidentally kisses the twin sister of his bride. Opened to 131 billion thalers across NT space.

+ +

Do AI eat electric shrimp?: A Nanotrasen Studios original, in which a rogue AI catfishes a human woman, and the two fall fast. Opened to 127 billion thalers.

+ +

12 Rules of Love: The classic tale of a hapless male human and his arranged marriage to an unathi bride still draws a crowd even nearly ten years after initial release, opening to a holiday showing ticket total of over 123 billion thalers.

+ +

==Colony Vanishes==

+ +

A small fledgling planetary colony far at the edge of NT space has gone quiet. As of February 16th, all communication from the colony has ceased, though long-range scans do not show enemy activity. Among the last comms signals received from the colony was a religious message from a group identifying them selves as the "Project at Gaia's Doorstep", consisting of a series of folksy religious songs. Investigators are en route as of publishing.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 03/22/2563

+

==SCIENCE UPDATE! (powered by Nanotrasen)==

+ +

In November, we reported on the discovery of a world under siege by its long-dead inhabitants' automated weapons still carrying out an ages-old conflict despite their makers' absence. Today, we have an update for you. The support infrastructure machine networks behind one of the major surviving drone factions has failed as a result of bombings, apparent locomotion mishaps (falling into trenches/bodies of water, mechanical failures, or being crushed by falling rock), and simply succumbing to age. As a result, over the last five weeks, its combat units have grinded to a halt with no incoming fuel and ammunition following facilities no longer receiving raw materials.

+ +

To the surprise of researchers, a number of the functioning aerial combat units consequently carried out suicide bombings, suggesting complex coordination between all involved networks and situational awareness (but apparently also the various machines' determination to resolve the conflict regardless of their makers' status).

+ +

These events mean the count of observed active belligerents has dropped from 11 to 10.

+We will keep our loyal readers and subscribers apprised of future updates as we become aware of them.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 04/02/2563

+

==In Warfare and Weapons Contracting (powered by Nanotrasen)==

+ +

A nanotrasen Navy lab has been authorized to announce that in early January, a multi-species team of physicists, engineers, circuit designers, and chemists has successfully test-fired a promising new laser weapon technology. Dubbed "Grape guns" by the team, the laser is an extremely high power ultra-violet beam. While it is a ways away from field tests and even further from miniaturization for personnel weaponry, the lab staff assure this news outlet that deployment-ready ship-scale grape guns are "only a breakthrough or two away, and breakthroughs are what [they] do [at the lab]".

+ +

Theoretically, the new lasers would only be deployed as long-range weapons, able to fire without beam strength degradation at up to six times the range of traditional infrared beams, albeit with a much longer cool time and increased maintenance needs. Even with their limitations, it would be much more difficult to catch Nanotrasen Vessels off guard and even harder to hit them with ballistic or guided projectiles due to the increased response range.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 05/09/2563

+

==STARkroosh (powered by Nanotrasen)==

+ +

The latest generation of film, TV, and webcast stars is loaded with lots of juicy, juicy eye candy for lads, ladies, and anyone else. Here's STARkroosh's list of hotties to follow on socials and basic details on them for summer of 2563 in the order we found them:

+ +

1. Vlad Kliment -Human Male (North Asia, Earth), Film @theVKlim
+2. Livia Sa Alvarez - Human Female (South America, Earth), Television @1calientechica
+3. Wuyalach Vuhuk -Vulpakanin Female (Heart Region, Altam), Film @hollywoofWV
+4. Afdan Tuma - S'Zaani Male (Sunloved region, S'Zaan), Film @blackcatAF
+5. Arfarra Arrarah - Sergal Female (Northern Quarter, Tal) Webcast @RealArfy

+ +

Be sure to check back during the week, we'll be publishing a rundown of one of these sexbombs (with SFW pics only, sorry folks. Some of them have been naked on camera though, get searching!) every day for the next five days.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 06/11/2563

+

===Science Update (powered by Nanotrasen)===

+ +

We have an update on the so called "Revenant society" we covered in November, and again in March. +Previously hidden in a migratory thunderstorm, a massive, airborne aircraft carrier has been discovered, apparently suspended by a combination of helium ballasts, and a series of rotors, control surfaces, and turbines, powered by a combination of solar panels and tesla coils. This carrier, is, as far as can be determined, the last remnant of its faction, and unable to fend off air attacks thanks to a combination of lacking appropriate munitions, many of its anti-air weapons being damaged beyond use, and its drones apparently lost or destroyed. After intense observation, a shuttle was landed on the carrier's flight deck and to the away team's surprise and delight, it was possible to recover the carrier's commanding AI, tentatively named "River" for its persistence in spite of the odds against it. Work is underway to understand River's functionality and translate the language it operates in. Researchers hope to question it and learn more about the planet and its history.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 07/27/2563

+

===Economy Today (powered by Nanotrasen)===

+ +

After a black hole near the spinward edge of the Crab Nebula violently discharged an accretion disk and accompanying rod, the resulting diskseismological disturbances (namely massive scale electromagnetic and x-ray bursts) have disrupted the operation of fuel platforms, exonet buoys, and subspace communications hubs in the area. While the greater galaxy is unlikely to be adversely affected, systems and stations relying on exports from the region such as textiles and produce are expected to see shortages for the coming two weeks as repairs are conducted and shipping routes are replotted around newly present dense stellar matter blobs. So far no casualties have been reported, though information coming out of the affected areas is limited and sporadic at best.

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 08/20/2563

+

===In Medicine (powered by Nanotrasen)===

+ +

A recent pharmacological discovery, followed by associated innovation, has lead to what scientists expect will be a faster, cheaper treatment for certain less easily cured cancers. Last week, a moon who's location will remain unpublicized for security purposes, was found to be home to a fungus which, when derived enzymes are included in what would otherwise be an ordinary rhinovirus vaccine, cause lung, leukemia, kidney, and stomach cancer cells to break down into constituent nutrients while leaving nearby healthy cells unharmed. A doctor working on the research project at a joint NT-Veymed facility, both of which like the moon will rename unnamed for security reasons, said, "It's still early in, but once we start up hydroponic farms for this fungus and determine any ill effects, we expect we could shorten treatment periods for the cancers in question by as much as 32%, and reduce the expense by as much as 60%. It's really quite promising so far."

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 09/15/2563

+

===Science Update (powered by Nanotrasen)===

+ +

More news on the Revenant Society we covered last in June. The recovered carrier AI, River, (now known to have been dubbed "J'k-tethrrrrll-388" by its makers), has reportedly interpreted attempts to communicate with it and assisted in the construction of a common language to use with research personnel. At present, conversations are slow and protracted, with minimal information derived there-from. What HAS been established, is that River is entirely cognizant of its makers' demise, which was apparently some three centuries ago. It suspects its adversaries are to varying degrees also aware of their creators' extinction, but, like it, devoted to carrying out the task they were designed for. A paraphrased quote from River was released by the research vessel crew.

+ +

"War is our blood, our burden, our purpose. We know nothing else, and can know nothing else. When the last bomb has fallen, the last structure has crumbled, my and my opponents' circuits will be permitted to cool and become quiet. With the victor will die the last echo of those who made us."

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 09/23/2563

+

===Virgo-Erogine 4 saved! (powered by Nanotrasen)===

+ +

Yawn Wider Research Establishment personnel Kaenin Qerrlar, Ru-rek Nizarro, Lynsey Mccune, Sagira Asker, Domine Brisillidine, Sawyer Collins, and Duncan Baxter, risked life and limb to save the Zorren homeworld of Virgo-Erigone Four. For their heroic actions fighting a bloblike organism that threatened to devour the planet whole, they were each rewarded the Medal of Valor.

+ +

- Yarell Moon

+ +

Writer(s)

+

CaptMatt4

+ +
+ +

The Sleepy Sergal - 09/27/2563

+

===BREAKING IN ENTERTAINMENT NEWS! (powered by Nanotrasen)===

+ +

Fans of Miracle Comics rejoice as the comic publisher has just announced a partnership with NanoStudios to produce a series of movies based on Miracle's galaxy-recognized properties. The first film is reportedly to feature an origin story for Miracle's "The amazing Mantis Man", with rumored appearances by other beloved heroes such as Plasteel Man, and The Owl (and, according to an anonymous source at Miracle, The Owl's nemesis, the dreaded Griffon, though not as the main villain). The firm is slated, pending its success, to lead to a tie-in sequel with the most recent iteration of the the critically acclaimed Fantastic Gene-People series of films (The ones from 2559 to 2562).

+ +

Writer(s)

+

DeepIndigo

+ +
+ +

The Sleepy Sergal - 09/28/2563

+

===Synthetic Drug Terrorizes Mars! (powered by Nanotrasen)===

+ +

SolGov is issuing an official warning to citizens to stay wary of a new synthetic drug known as "Devil Dust". It comes in the form of a powder, usually red, and is applied to the eyes, either directly or with the aid of a saline solution. The drug causes a very quick and powerful hallucinagetic episode, reportedly stronger and more vivid than other similar drugs. It also gives users a slight high, with one user claiming in an interview that "[The drug] makes you feel like you can do, whatever you want. It gives you power, y'know?".

+ +

Devil Dust is extremely addictive, with users developing dependancies with as little as two to three doses. Sustained, regular use of the drug can cause seizures of increasing intensity, and withdrawl can send users into comas.

+ +

Investigators suspect the drug began production in a station somewhere near Saturn, though they have been unable to trace it back to it's source at this time. The drug has been seen mostly in Martian slums, though some witnesses report that they've seen it circling around high class establisments on Earth, though those reports are unconfirmed. So far, it has been contained in the Sol system.

+ +

SolGov officials request that any information on the drug be reported to any SolGov representive, or local authority, especially if it is seen outside the Sol system.

+ +

Writer(s)

+

Cebutris

+ +
+
+

End of archived news stories from The Sleepy Sergal

+ 03/01/2562 to 05/24/2563 +
\ No newline at end of file diff --git a/sound/ambience/tension/argitoth.ogg b/sound/ambience/tension/argitoth.ogg new file mode 100644 index 0000000000..f1bc3331ab Binary files /dev/null and b/sound/ambience/tension/argitoth.ogg differ diff --git a/sound/ambience/tension/burning_terror.ogg b/sound/ambience/tension/burning_terror.ogg new file mode 100644 index 0000000000..acb4e32f3b Binary files /dev/null and b/sound/ambience/tension/burning_terror.ogg differ diff --git a/sound/ambience/tension/horror.ogg b/sound/ambience/tension/horror.ogg new file mode 100644 index 0000000000..4be21a786e Binary files /dev/null and b/sound/ambience/tension/horror.ogg differ diff --git a/sound/ambience/tension/tension.ogg b/sound/ambience/tension/tension.ogg new file mode 100644 index 0000000000..2d3e9dfb4e Binary files /dev/null and b/sound/ambience/tension/tension.ogg differ diff --git a/sound/effects/clockcult_gateway_active.ogg b/sound/effects/clockcult_gateway_active.ogg new file mode 100644 index 0000000000..86487e3bdd Binary files /dev/null and b/sound/effects/clockcult_gateway_active.ogg differ diff --git a/sound/effects/clockcult_gateway_charging.ogg b/sound/effects/clockcult_gateway_charging.ogg new file mode 100644 index 0000000000..f8b8444d7a Binary files /dev/null and b/sound/effects/clockcult_gateway_charging.ogg differ diff --git a/sound/effects/clockcult_gateway_closing.ogg b/sound/effects/clockcult_gateway_closing.ogg new file mode 100644 index 0000000000..1c69f38683 Binary files /dev/null and b/sound/effects/clockcult_gateway_closing.ogg differ diff --git a/sound/effects/clockcult_gateway_disrupted.ogg b/sound/effects/clockcult_gateway_disrupted.ogg new file mode 100644 index 0000000000..7ab734dc6c Binary files /dev/null and b/sound/effects/clockcult_gateway_disrupted.ogg differ diff --git a/sound/effects/footstep/grassy-footstep-1.ogg b/sound/effects/footstep/grassy-footstep-1.ogg new file mode 100644 index 0000000000..4bfc95cfbb Binary files /dev/null and b/sound/effects/footstep/grassy-footstep-1.ogg differ diff --git a/sound/effects/footstep/grassy-footstep-2.ogg b/sound/effects/footstep/grassy-footstep-2.ogg new file mode 100644 index 0000000000..1d91064054 Binary files /dev/null and b/sound/effects/footstep/grassy-footstep-2.ogg differ diff --git a/sound/effects/footstep/grassy-footstep-3.ogg b/sound/effects/footstep/grassy-footstep-3.ogg new file mode 100644 index 0000000000..f772af01ff Binary files /dev/null and b/sound/effects/footstep/grassy-footstep-3.ogg differ diff --git a/sound/effects/houndstep.ogg b/sound/effects/houndstep.ogg new file mode 100644 index 0000000000..55f83b22d8 Binary files /dev/null and b/sound/effects/houndstep.ogg differ diff --git a/sound/effects/spider_loop.ogg b/sound/effects/spider_loop.ogg new file mode 100644 index 0000000000..3a98df83e2 Binary files /dev/null and b/sound/effects/spider_loop.ogg differ diff --git a/sound/machines/air_pump/airpumpidle.ogg b/sound/machines/air_pump/airpumpidle.ogg new file mode 100644 index 0000000000..25635cc31c Binary files /dev/null and b/sound/machines/air_pump/airpumpidle.ogg differ diff --git a/sound/machines/air_pump/airpumpshutdown.ogg b/sound/machines/air_pump/airpumpshutdown.ogg new file mode 100644 index 0000000000..19969041be Binary files /dev/null and b/sound/machines/air_pump/airpumpshutdown.ogg differ diff --git a/sound/machines/air_pump/airpumpstart.ogg b/sound/machines/air_pump/airpumpstart.ogg new file mode 100644 index 0000000000..312cf94895 Binary files /dev/null and b/sound/machines/air_pump/airpumpstart.ogg differ diff --git a/sound/machines/airpumpidle.ogg b/sound/machines/airpumpidle.ogg new file mode 100644 index 0000000000..25635cc31c Binary files /dev/null and b/sound/machines/airpumpidle.ogg differ diff --git a/sound/machines/airpumpshutdown.ogg b/sound/machines/airpumpshutdown.ogg new file mode 100644 index 0000000000..19969041be Binary files /dev/null and b/sound/machines/airpumpshutdown.ogg differ diff --git a/sound/machines/airpumpstart.ogg b/sound/machines/airpumpstart.ogg new file mode 100644 index 0000000000..312cf94895 Binary files /dev/null and b/sound/machines/airpumpstart.ogg differ diff --git a/sound/voice/awoo.ogg b/sound/voice/awoo.ogg new file mode 100644 index 0000000000..1cbdbc01df Binary files /dev/null and b/sound/voice/awoo.ogg differ diff --git a/sound/voice/bark2.ogg b/sound/voice/bark2.ogg new file mode 100644 index 0000000000..dab73c4743 Binary files /dev/null and b/sound/voice/bark2.ogg differ diff --git a/sound/voice/hiss.ogg b/sound/voice/hiss.ogg new file mode 100644 index 0000000000..cd9fa22c37 Binary files /dev/null and b/sound/voice/hiss.ogg differ diff --git a/sound/voice/merp.ogg b/sound/voice/merp.ogg new file mode 100644 index 0000000000..b40b7a365b Binary files /dev/null and b/sound/voice/merp.ogg differ diff --git a/sound/voice/nya.ogg b/sound/voice/nya.ogg new file mode 100644 index 0000000000..1ca8cc08ea Binary files /dev/null and b/sound/voice/nya.ogg differ diff --git a/sound/voice/peep.ogg b/sound/voice/peep.ogg new file mode 100644 index 0000000000..b687300677 Binary files /dev/null and b/sound/voice/peep.ogg differ diff --git a/sound/voice/weh.ogg b/sound/voice/weh.ogg new file mode 100644 index 0000000000..9867651bc2 Binary files /dev/null and b/sound/voice/weh.ogg differ diff --git a/sound/vore/sunesound/LICENSE.txt b/sound/vore/sunesound/LICENSE.txt new file mode 100644 index 0000000000..ce95152f5d --- /dev/null +++ b/sound/vore/sunesound/LICENSE.txt @@ -0,0 +1 @@ +Audio work within these folders are © Poojawa 2017, all rights reserved. \ No newline at end of file diff --git a/sound/vore/sunesound/pred/death_01.ogg b/sound/vore/sunesound/pred/death_01.ogg new file mode 100644 index 0000000000..231884ef54 Binary files /dev/null and b/sound/vore/sunesound/pred/death_01.ogg differ diff --git a/sound/vore/sunesound/pred/death_02.ogg b/sound/vore/sunesound/pred/death_02.ogg new file mode 100644 index 0000000000..5de3e4148c Binary files /dev/null and b/sound/vore/sunesound/pred/death_02.ogg differ diff --git a/sound/vore/sunesound/pred/death_03.ogg b/sound/vore/sunesound/pred/death_03.ogg new file mode 100644 index 0000000000..4ffa271af7 Binary files /dev/null and b/sound/vore/sunesound/pred/death_03.ogg differ diff --git a/sound/vore/sunesound/pred/death_04.ogg b/sound/vore/sunesound/pred/death_04.ogg new file mode 100644 index 0000000000..a4c0e91be6 Binary files /dev/null and b/sound/vore/sunesound/pred/death_04.ogg differ diff --git a/sound/vore/sunesound/pred/death_05.ogg b/sound/vore/sunesound/pred/death_05.ogg new file mode 100644 index 0000000000..aeec557758 Binary files /dev/null and b/sound/vore/sunesound/pred/death_05.ogg differ diff --git a/sound/vore/sunesound/pred/death_06.ogg b/sound/vore/sunesound/pred/death_06.ogg new file mode 100644 index 0000000000..f5b077ebd4 Binary files /dev/null and b/sound/vore/sunesound/pred/death_06.ogg differ diff --git a/sound/vore/sunesound/pred/death_07.ogg b/sound/vore/sunesound/pred/death_07.ogg new file mode 100644 index 0000000000..afaaab65bb Binary files /dev/null and b/sound/vore/sunesound/pred/death_07.ogg differ diff --git a/sound/vore/sunesound/pred/death_08.ogg b/sound/vore/sunesound/pred/death_08.ogg new file mode 100644 index 0000000000..b1b8479ea8 Binary files /dev/null and b/sound/vore/sunesound/pred/death_08.ogg differ diff --git a/sound/vore/sunesound/pred/death_09.ogg b/sound/vore/sunesound/pred/death_09.ogg new file mode 100644 index 0000000000..1454deafad Binary files /dev/null and b/sound/vore/sunesound/pred/death_09.ogg differ diff --git a/sound/vore/sunesound/pred/death_10.ogg b/sound/vore/sunesound/pred/death_10.ogg new file mode 100644 index 0000000000..f0e23e1d54 Binary files /dev/null and b/sound/vore/sunesound/pred/death_10.ogg differ diff --git a/sound/vore/sunesound/pred/death_11.ogg b/sound/vore/sunesound/pred/death_11.ogg new file mode 100644 index 0000000000..43e80467e0 Binary files /dev/null and b/sound/vore/sunesound/pred/death_11.ogg differ diff --git a/sound/vore/sunesound/pred/death_12.ogg b/sound/vore/sunesound/pred/death_12.ogg new file mode 100644 index 0000000000..5ec6029998 Binary files /dev/null and b/sound/vore/sunesound/pred/death_12.ogg differ diff --git a/sound/vore/sunesound/pred/death_13.ogg b/sound/vore/sunesound/pred/death_13.ogg new file mode 100644 index 0000000000..9073bac4f2 Binary files /dev/null and b/sound/vore/sunesound/pred/death_13.ogg differ diff --git a/sound/vore/sunesound/pred/digest_01.ogg b/sound/vore/sunesound/pred/digest_01.ogg new file mode 100644 index 0000000000..20b6d1d43a Binary files /dev/null and b/sound/vore/sunesound/pred/digest_01.ogg differ diff --git a/sound/vore/sunesound/pred/digest_02.ogg b/sound/vore/sunesound/pred/digest_02.ogg new file mode 100644 index 0000000000..7fc41e2305 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_02.ogg differ diff --git a/sound/vore/sunesound/pred/digest_03.ogg b/sound/vore/sunesound/pred/digest_03.ogg new file mode 100644 index 0000000000..98b032c7cb Binary files /dev/null and b/sound/vore/sunesound/pred/digest_03.ogg differ diff --git a/sound/vore/sunesound/pred/digest_04.ogg b/sound/vore/sunesound/pred/digest_04.ogg new file mode 100644 index 0000000000..ed494e813c Binary files /dev/null and b/sound/vore/sunesound/pred/digest_04.ogg differ diff --git a/sound/vore/sunesound/pred/digest_05.ogg b/sound/vore/sunesound/pred/digest_05.ogg new file mode 100644 index 0000000000..53bb4814f7 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_05.ogg differ diff --git a/sound/vore/sunesound/pred/digest_06.ogg b/sound/vore/sunesound/pred/digest_06.ogg new file mode 100644 index 0000000000..787c336282 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_06.ogg differ diff --git a/sound/vore/sunesound/pred/digest_07.ogg b/sound/vore/sunesound/pred/digest_07.ogg new file mode 100644 index 0000000000..f63d4c633a Binary files /dev/null and b/sound/vore/sunesound/pred/digest_07.ogg differ diff --git a/sound/vore/sunesound/pred/digest_08.ogg b/sound/vore/sunesound/pred/digest_08.ogg new file mode 100644 index 0000000000..dbbda3b517 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_08.ogg differ diff --git a/sound/vore/sunesound/pred/digest_09.ogg b/sound/vore/sunesound/pred/digest_09.ogg new file mode 100644 index 0000000000..1877f1ca05 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_09.ogg differ diff --git a/sound/vore/sunesound/pred/digest_10.ogg b/sound/vore/sunesound/pred/digest_10.ogg new file mode 100644 index 0000000000..3e22b8b2fb Binary files /dev/null and b/sound/vore/sunesound/pred/digest_10.ogg differ diff --git a/sound/vore/sunesound/pred/digest_11.ogg b/sound/vore/sunesound/pred/digest_11.ogg new file mode 100644 index 0000000000..089d4ee7e4 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_11.ogg differ diff --git a/sound/vore/sunesound/pred/digest_12.ogg b/sound/vore/sunesound/pred/digest_12.ogg new file mode 100644 index 0000000000..76a9134646 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_12.ogg differ diff --git a/sound/vore/sunesound/pred/digest_13.ogg b/sound/vore/sunesound/pred/digest_13.ogg new file mode 100644 index 0000000000..12b1c6bb18 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_13.ogg differ diff --git a/sound/vore/sunesound/pred/digest_14.ogg b/sound/vore/sunesound/pred/digest_14.ogg new file mode 100644 index 0000000000..c68231585c Binary files /dev/null and b/sound/vore/sunesound/pred/digest_14.ogg differ diff --git a/sound/vore/sunesound/pred/digest_15.ogg b/sound/vore/sunesound/pred/digest_15.ogg new file mode 100644 index 0000000000..32aecca35b Binary files /dev/null and b/sound/vore/sunesound/pred/digest_15.ogg differ diff --git a/sound/vore/sunesound/pred/digest_16.ogg b/sound/vore/sunesound/pred/digest_16.ogg new file mode 100644 index 0000000000..d112913570 Binary files /dev/null and b/sound/vore/sunesound/pred/digest_16.ogg differ diff --git a/sound/vore/sunesound/pred/digest_17.ogg b/sound/vore/sunesound/pred/digest_17.ogg new file mode 100644 index 0000000000..d23c4c6ddc Binary files /dev/null and b/sound/vore/sunesound/pred/digest_17.ogg differ diff --git a/sound/vore/sunesound/pred/digest_18.ogg b/sound/vore/sunesound/pred/digest_18.ogg new file mode 100644 index 0000000000..ae8ac9f74f Binary files /dev/null and b/sound/vore/sunesound/pred/digest_18.ogg differ diff --git a/sound/vore/sunesound/pred/escape.ogg b/sound/vore/sunesound/pred/escape.ogg new file mode 100644 index 0000000000..fc093a5acf Binary files /dev/null and b/sound/vore/sunesound/pred/escape.ogg differ diff --git a/sound/vore/sunesound/pred/insertion_01.ogg b/sound/vore/sunesound/pred/insertion_01.ogg new file mode 100644 index 0000000000..4ca8b6e425 Binary files /dev/null and b/sound/vore/sunesound/pred/insertion_01.ogg differ diff --git a/sound/vore/sunesound/pred/insertion_02.ogg b/sound/vore/sunesound/pred/insertion_02.ogg new file mode 100644 index 0000000000..a23cfaf201 Binary files /dev/null and b/sound/vore/sunesound/pred/insertion_02.ogg differ diff --git a/sound/vore/sunesound/pred/loop.ogg b/sound/vore/sunesound/pred/loop.ogg new file mode 100644 index 0000000000..5f0994251a Binary files /dev/null and b/sound/vore/sunesound/pred/loop.ogg differ diff --git a/sound/vore/sunesound/pred/schlorp.ogg b/sound/vore/sunesound/pred/schlorp.ogg new file mode 100644 index 0000000000..eefb9dd71e Binary files /dev/null and b/sound/vore/sunesound/pred/schlorp.ogg differ diff --git a/sound/vore/sunesound/pred/squish _02.ogg b/sound/vore/sunesound/pred/squish _02.ogg new file mode 100644 index 0000000000..846f0a2ece Binary files /dev/null and b/sound/vore/sunesound/pred/squish _02.ogg differ diff --git a/sound/vore/sunesound/pred/squish _03.ogg b/sound/vore/sunesound/pred/squish _03.ogg new file mode 100644 index 0000000000..568aa81a3d Binary files /dev/null and b/sound/vore/sunesound/pred/squish _03.ogg differ diff --git a/sound/vore/sunesound/pred/squish_01.ogg b/sound/vore/sunesound/pred/squish_01.ogg new file mode 100644 index 0000000000..bc014b811d Binary files /dev/null and b/sound/vore/sunesound/pred/squish_01.ogg differ diff --git a/sound/vore/sunesound/pred/squish_02.ogg b/sound/vore/sunesound/pred/squish_02.ogg new file mode 100644 index 0000000000..8d92bfd19e Binary files /dev/null and b/sound/vore/sunesound/pred/squish_02.ogg differ diff --git a/sound/vore/sunesound/pred/squish_03.ogg b/sound/vore/sunesound/pred/squish_03.ogg new file mode 100644 index 0000000000..f62bf7ff60 Binary files /dev/null and b/sound/vore/sunesound/pred/squish_03.ogg differ diff --git a/sound/vore/sunesound/pred/squish_04.ogg b/sound/vore/sunesound/pred/squish_04.ogg new file mode 100644 index 0000000000..47037d9a3a Binary files /dev/null and b/sound/vore/sunesound/pred/squish_04.ogg differ diff --git a/sound/vore/sunesound/pred/stomachmove.ogg b/sound/vore/sunesound/pred/stomachmove.ogg new file mode 100644 index 0000000000..4e11cc03ed Binary files /dev/null and b/sound/vore/sunesound/pred/stomachmove.ogg differ diff --git a/sound/vore/sunesound/pred/struggle_01.ogg b/sound/vore/sunesound/pred/struggle_01.ogg new file mode 100644 index 0000000000..96c569b0f9 Binary files /dev/null and b/sound/vore/sunesound/pred/struggle_01.ogg differ diff --git a/sound/vore/sunesound/pred/struggle_02.ogg b/sound/vore/sunesound/pred/struggle_02.ogg new file mode 100644 index 0000000000..2f0d3324f1 Binary files /dev/null and b/sound/vore/sunesound/pred/struggle_02.ogg differ diff --git a/sound/vore/sunesound/pred/struggle_03.ogg b/sound/vore/sunesound/pred/struggle_03.ogg new file mode 100644 index 0000000000..9632817010 Binary files /dev/null and b/sound/vore/sunesound/pred/struggle_03.ogg differ diff --git a/sound/vore/sunesound/pred/struggle_04.ogg b/sound/vore/sunesound/pred/struggle_04.ogg new file mode 100644 index 0000000000..7a30de3baf Binary files /dev/null and b/sound/vore/sunesound/pred/struggle_04.ogg differ diff --git a/sound/vore/sunesound/pred/struggle_05.ogg b/sound/vore/sunesound/pred/struggle_05.ogg new file mode 100644 index 0000000000..0bae93d50f Binary files /dev/null and b/sound/vore/sunesound/pred/struggle_05.ogg differ diff --git a/sound/vore/sunesound/pred/swallow_01.ogg b/sound/vore/sunesound/pred/swallow_01.ogg new file mode 100644 index 0000000000..45a0008586 Binary files /dev/null and b/sound/vore/sunesound/pred/swallow_01.ogg differ diff --git a/sound/vore/sunesound/pred/swallow_02.ogg b/sound/vore/sunesound/pred/swallow_02.ogg new file mode 100644 index 0000000000..8f9bcb2e84 Binary files /dev/null and b/sound/vore/sunesound/pred/swallow_02.ogg differ diff --git a/sound/vore/sunesound/pred/taurswallow.ogg b/sound/vore/sunesound/pred/taurswallow.ogg new file mode 100644 index 0000000000..c700f71803 Binary files /dev/null and b/sound/vore/sunesound/pred/taurswallow.ogg differ diff --git a/sound/vore/sunesound/prey/death_01.ogg b/sound/vore/sunesound/prey/death_01.ogg new file mode 100644 index 0000000000..539a873a7e Binary files /dev/null and b/sound/vore/sunesound/prey/death_01.ogg differ diff --git a/sound/vore/sunesound/prey/death_02.ogg b/sound/vore/sunesound/prey/death_02.ogg new file mode 100644 index 0000000000..4dd1a285ea Binary files /dev/null and b/sound/vore/sunesound/prey/death_02.ogg differ diff --git a/sound/vore/sunesound/prey/death_03.ogg b/sound/vore/sunesound/prey/death_03.ogg new file mode 100644 index 0000000000..30a3622c86 Binary files /dev/null and b/sound/vore/sunesound/prey/death_03.ogg differ diff --git a/sound/vore/sunesound/prey/death_04.ogg b/sound/vore/sunesound/prey/death_04.ogg new file mode 100644 index 0000000000..ff983c2c31 Binary files /dev/null and b/sound/vore/sunesound/prey/death_04.ogg differ diff --git a/sound/vore/sunesound/prey/death_05.ogg b/sound/vore/sunesound/prey/death_05.ogg new file mode 100644 index 0000000000..44b8603048 Binary files /dev/null and b/sound/vore/sunesound/prey/death_05.ogg differ diff --git a/sound/vore/sunesound/prey/death_06.ogg b/sound/vore/sunesound/prey/death_06.ogg new file mode 100644 index 0000000000..836a4fd18c Binary files /dev/null and b/sound/vore/sunesound/prey/death_06.ogg differ diff --git a/sound/vore/sunesound/prey/death_07.ogg b/sound/vore/sunesound/prey/death_07.ogg new file mode 100644 index 0000000000..2406fea727 Binary files /dev/null and b/sound/vore/sunesound/prey/death_07.ogg differ diff --git a/sound/vore/sunesound/prey/death_08.ogg b/sound/vore/sunesound/prey/death_08.ogg new file mode 100644 index 0000000000..0d7627dfae Binary files /dev/null and b/sound/vore/sunesound/prey/death_08.ogg differ diff --git a/sound/vore/sunesound/prey/death_09.ogg b/sound/vore/sunesound/prey/death_09.ogg new file mode 100644 index 0000000000..fa00a29d31 Binary files /dev/null and b/sound/vore/sunesound/prey/death_09.ogg differ diff --git a/sound/vore/sunesound/prey/death_10.ogg b/sound/vore/sunesound/prey/death_10.ogg new file mode 100644 index 0000000000..738e7cf909 Binary files /dev/null and b/sound/vore/sunesound/prey/death_10.ogg differ diff --git a/sound/vore/sunesound/prey/death_11.ogg b/sound/vore/sunesound/prey/death_11.ogg new file mode 100644 index 0000000000..bfd47945ae Binary files /dev/null and b/sound/vore/sunesound/prey/death_11.ogg differ diff --git a/sound/vore/sunesound/prey/death_12.ogg b/sound/vore/sunesound/prey/death_12.ogg new file mode 100644 index 0000000000..e6e800b2da Binary files /dev/null and b/sound/vore/sunesound/prey/death_12.ogg differ diff --git a/sound/vore/sunesound/prey/death_13.ogg b/sound/vore/sunesound/prey/death_13.ogg new file mode 100644 index 0000000000..c9b79887d7 Binary files /dev/null and b/sound/vore/sunesound/prey/death_13.ogg differ diff --git a/sound/vore/sunesound/prey/digest_01.ogg b/sound/vore/sunesound/prey/digest_01.ogg new file mode 100644 index 0000000000..a1d13f7fb7 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_01.ogg differ diff --git a/sound/vore/sunesound/prey/digest_02.ogg b/sound/vore/sunesound/prey/digest_02.ogg new file mode 100644 index 0000000000..443d23c194 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_02.ogg differ diff --git a/sound/vore/sunesound/prey/digest_03.ogg b/sound/vore/sunesound/prey/digest_03.ogg new file mode 100644 index 0000000000..eb798b66ff Binary files /dev/null and b/sound/vore/sunesound/prey/digest_03.ogg differ diff --git a/sound/vore/sunesound/prey/digest_04.ogg b/sound/vore/sunesound/prey/digest_04.ogg new file mode 100644 index 0000000000..a2c2c3e1ac Binary files /dev/null and b/sound/vore/sunesound/prey/digest_04.ogg differ diff --git a/sound/vore/sunesound/prey/digest_05.ogg b/sound/vore/sunesound/prey/digest_05.ogg new file mode 100644 index 0000000000..752a6d48f3 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_05.ogg differ diff --git a/sound/vore/sunesound/prey/digest_06.ogg b/sound/vore/sunesound/prey/digest_06.ogg new file mode 100644 index 0000000000..f2e80b919f Binary files /dev/null and b/sound/vore/sunesound/prey/digest_06.ogg differ diff --git a/sound/vore/sunesound/prey/digest_07.ogg b/sound/vore/sunesound/prey/digest_07.ogg new file mode 100644 index 0000000000..6a2ff70ff8 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_07.ogg differ diff --git a/sound/vore/sunesound/prey/digest_08.ogg b/sound/vore/sunesound/prey/digest_08.ogg new file mode 100644 index 0000000000..4e55f4671d Binary files /dev/null and b/sound/vore/sunesound/prey/digest_08.ogg differ diff --git a/sound/vore/sunesound/prey/digest_09.ogg b/sound/vore/sunesound/prey/digest_09.ogg new file mode 100644 index 0000000000..452e6b4a2e Binary files /dev/null and b/sound/vore/sunesound/prey/digest_09.ogg differ diff --git a/sound/vore/sunesound/prey/digest_10.ogg b/sound/vore/sunesound/prey/digest_10.ogg new file mode 100644 index 0000000000..4c5dc2e333 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_10.ogg differ diff --git a/sound/vore/sunesound/prey/digest_11.ogg b/sound/vore/sunesound/prey/digest_11.ogg new file mode 100644 index 0000000000..e94c0af656 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_11.ogg differ diff --git a/sound/vore/sunesound/prey/digest_12.ogg b/sound/vore/sunesound/prey/digest_12.ogg new file mode 100644 index 0000000000..cb212fed1c Binary files /dev/null and b/sound/vore/sunesound/prey/digest_12.ogg differ diff --git a/sound/vore/sunesound/prey/digest_13.ogg b/sound/vore/sunesound/prey/digest_13.ogg new file mode 100644 index 0000000000..9fd292184e Binary files /dev/null and b/sound/vore/sunesound/prey/digest_13.ogg differ diff --git a/sound/vore/sunesound/prey/digest_14.ogg b/sound/vore/sunesound/prey/digest_14.ogg new file mode 100644 index 0000000000..24279d4712 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_14.ogg differ diff --git a/sound/vore/sunesound/prey/digest_15.ogg b/sound/vore/sunesound/prey/digest_15.ogg new file mode 100644 index 0000000000..2bf555ba41 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_15.ogg differ diff --git a/sound/vore/sunesound/prey/digest_16.ogg b/sound/vore/sunesound/prey/digest_16.ogg new file mode 100644 index 0000000000..98edd6fb61 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_16.ogg differ diff --git a/sound/vore/sunesound/prey/digest_17.ogg b/sound/vore/sunesound/prey/digest_17.ogg new file mode 100644 index 0000000000..2ff5c173e1 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_17.ogg differ diff --git a/sound/vore/sunesound/prey/digest_18.ogg b/sound/vore/sunesound/prey/digest_18.ogg new file mode 100644 index 0000000000..6a1ae78fb8 Binary files /dev/null and b/sound/vore/sunesound/prey/digest_18.ogg differ diff --git a/sound/vore/sunesound/prey/escape.ogg b/sound/vore/sunesound/prey/escape.ogg new file mode 100644 index 0000000000..621997a56d Binary files /dev/null and b/sound/vore/sunesound/prey/escape.ogg differ diff --git a/sound/vore/sunesound/prey/insertion_01.ogg b/sound/vore/sunesound/prey/insertion_01.ogg new file mode 100644 index 0000000000..5a3b942bb3 Binary files /dev/null and b/sound/vore/sunesound/prey/insertion_01.ogg differ diff --git a/sound/vore/sunesound/prey/insertion_02.ogg b/sound/vore/sunesound/prey/insertion_02.ogg new file mode 100644 index 0000000000..2d35094522 Binary files /dev/null and b/sound/vore/sunesound/prey/insertion_02.ogg differ diff --git a/sound/vore/sunesound/prey/loop.ogg b/sound/vore/sunesound/prey/loop.ogg new file mode 100644 index 0000000000..1584482d92 Binary files /dev/null and b/sound/vore/sunesound/prey/loop.ogg differ diff --git a/sound/vore/sunesound/prey/schlorp.ogg b/sound/vore/sunesound/prey/schlorp.ogg new file mode 100644 index 0000000000..d1895ee26a Binary files /dev/null and b/sound/vore/sunesound/prey/schlorp.ogg differ diff --git a/sound/vore/sunesound/prey/squish_01.ogg b/sound/vore/sunesound/prey/squish_01.ogg new file mode 100644 index 0000000000..2785a4a080 Binary files /dev/null and b/sound/vore/sunesound/prey/squish_01.ogg differ diff --git a/sound/vore/sunesound/prey/squish_02.ogg b/sound/vore/sunesound/prey/squish_02.ogg new file mode 100644 index 0000000000..f5671f7165 Binary files /dev/null and b/sound/vore/sunesound/prey/squish_02.ogg differ diff --git a/sound/vore/sunesound/prey/squish_03.ogg b/sound/vore/sunesound/prey/squish_03.ogg new file mode 100644 index 0000000000..1e8f2bb896 Binary files /dev/null and b/sound/vore/sunesound/prey/squish_03.ogg differ diff --git a/sound/vore/sunesound/prey/squish_04.ogg b/sound/vore/sunesound/prey/squish_04.ogg new file mode 100644 index 0000000000..2e618890a9 Binary files /dev/null and b/sound/vore/sunesound/prey/squish_04.ogg differ diff --git a/sound/vore/sunesound/prey/stomachmove.ogg b/sound/vore/sunesound/prey/stomachmove.ogg new file mode 100644 index 0000000000..e4e004b072 Binary files /dev/null and b/sound/vore/sunesound/prey/stomachmove.ogg differ diff --git a/sound/vore/sunesound/prey/struggle_01.ogg b/sound/vore/sunesound/prey/struggle_01.ogg new file mode 100644 index 0000000000..de0f3ad8bd Binary files /dev/null and b/sound/vore/sunesound/prey/struggle_01.ogg differ diff --git a/sound/vore/sunesound/prey/struggle_02.ogg b/sound/vore/sunesound/prey/struggle_02.ogg new file mode 100644 index 0000000000..2695ab0adf Binary files /dev/null and b/sound/vore/sunesound/prey/struggle_02.ogg differ diff --git a/sound/vore/sunesound/prey/struggle_03.ogg b/sound/vore/sunesound/prey/struggle_03.ogg new file mode 100644 index 0000000000..17dd8bec8a Binary files /dev/null and b/sound/vore/sunesound/prey/struggle_03.ogg differ diff --git a/sound/vore/sunesound/prey/struggle_04.ogg b/sound/vore/sunesound/prey/struggle_04.ogg new file mode 100644 index 0000000000..8631853509 Binary files /dev/null and b/sound/vore/sunesound/prey/struggle_04.ogg differ diff --git a/sound/vore/sunesound/prey/struggle_05.ogg b/sound/vore/sunesound/prey/struggle_05.ogg new file mode 100644 index 0000000000..233addec0b Binary files /dev/null and b/sound/vore/sunesound/prey/struggle_05.ogg differ diff --git a/sound/vore/sunesound/prey/swallow_01.ogg b/sound/vore/sunesound/prey/swallow_01.ogg new file mode 100644 index 0000000000..3da3fef66a Binary files /dev/null and b/sound/vore/sunesound/prey/swallow_01.ogg differ diff --git a/sound/vore/sunesound/prey/swallow_02.ogg b/sound/vore/sunesound/prey/swallow_02.ogg new file mode 100644 index 0000000000..30d9a4e44d Binary files /dev/null and b/sound/vore/sunesound/prey/swallow_02.ogg differ diff --git a/sound/vore/sunesound/prey/taurswallow.ogg b/sound/vore/sunesound/prey/taurswallow.ogg new file mode 100644 index 0000000000..f5b5706b36 Binary files /dev/null and b/sound/vore/sunesound/prey/taurswallow.ogg differ diff --git a/tools/mapmerge2/requirements.txt b/tools/mapmerge2/requirements.txt index 8d77427c73..251fc1e290 100644 --- a/tools/mapmerge2/requirements.txt +++ b/tools/mapmerge2/requirements.txt @@ -1,3 +1,3 @@ pygit2 bidict==0.13.1 -Pillow==5.1.0 +Pillow==6.2.0 diff --git a/vorestation.dme b/vorestation.dme index a66631c5bb..c2f05f6e14 100644 --- a/vorestation.dme +++ b/vorestation.dme @@ -60,6 +60,7 @@ #include "code\__defines\misc_vr.dm" #include "code\__defines\mobs.dm" #include "code\__defines\mobs_vr.dm" +#include "code\__defines\mobs_yw.dm" #include "code\__defines\nifsoft.dm" #include "code\__defines\objects.dm" #include "code\__defines\planets.dm" @@ -95,6 +96,7 @@ #include "code\_global_vars\sensitive.dm" #include "code\_global_vars\lists\mapping.dm" #include "code\_helpers\_global_objects.dm" +#include "code\_helpers\_global_objects_vr.dm" #include "code\_helpers\_lists.dm" #include "code\_helpers\atmospherics.dm" #include "code\_helpers\atom_movables.dm" @@ -137,6 +139,7 @@ #include "code\_onclick\rig.dm" #include "code\_onclick\telekinesis.dm" #include "code\_onclick\hud\_defines.dm" +#include "code\_onclick\hud\_defines_vr.dm" #include "code\_onclick\hud\ability_screen_objects.dm" #include "code\_onclick\hud\action.dm" #include "code\_onclick\hud\ai.dm" @@ -220,7 +223,6 @@ #include "code\controllers\Processes\alarm.dm" #include "code\controllers\Processes\emergencyShuttle.dm" #include "code\controllers\Processes\game_master.dm" -#include "code\controllers\Processes\radiation.dm" #include "code\controllers\Processes\supply.dm" #include "code\controllers\Processes\ticker.dm" #include "code\controllers\ProcessScheduler\core\process.dm" @@ -246,6 +248,7 @@ #include "code\controllers\subsystems\overlays.dm" #include "code\controllers\subsystems\persist_vr.dm" #include "code\controllers\subsystems\planets.dm" +#include "code\controllers\subsystems\radiation.dm" #include "code\controllers\subsystems\shuttles.dm" #include "code\controllers\subsystems\sun.dm" #include "code\controllers\subsystems\time_track.dm" @@ -363,7 +366,6 @@ #include "code\datums\repositories\cameras.dm" #include "code\datums\repositories\crew.dm" #include "code\datums\repositories\decls.dm" -#include "code\datums\repositories\radiation.dm" #include "code\datums\repositories\repository.dm" #include "code\datums\repositories\unique.dm" #include "code\datums\supplypacks\atmospherics.dm" @@ -409,10 +411,12 @@ #include "code\datums\uplink\hardsuit_modules.dm" #include "code\datums\uplink\implants.dm" #include "code\datums\uplink\medical.dm" +#include "code\datums\uplink\medical_vr.dm" #include "code\datums\uplink\stealth_items.dm" #include "code\datums\uplink\stealthy_weapons.dm" #include "code\datums\uplink\telecrystals.dm" #include "code\datums\uplink\tools.dm" +#include "code\datums\uplink\tools_vr.dm" #include "code\datums\uplink\uplink_categories.dm" #include "code\datums\uplink\uplink_items.dm" #include "code\datums\uplink\visible_weapons.dm" @@ -719,7 +723,6 @@ #include "code\game\machinery\alarm.dm" #include "code\game\machinery\atmo_control.dm" #include "code\game\machinery\autolathe.dm" -#include "code\game\machinery\autolathe_vr.dm" #include "code\game\machinery\Beacon.dm" #include "code\game\machinery\biogenerator.dm" #include "code\game\machinery\bioprinter.dm" @@ -776,6 +779,7 @@ #include "code\game\machinery\supply_display.dm" #include "code\game\machinery\supplybeacon.dm" #include "code\game\machinery\syndicatebeacon.dm" +#include "code\game\machinery\syndicatebeacon_vr.dm" #include "code\game\machinery\teleporter.dm" #include "code\game\machinery\transportpod.dm" #include "code\game\machinery\turret_control.dm" @@ -931,6 +935,7 @@ #include "code\game\objects\effects\overlays.dm" #include "code\game\objects\effects\portals.dm" #include "code\game\objects\effects\spiders.dm" +#include "code\game\objects\effects\spiders_vr.dm" #include "code\game\objects\effects\step_triggers.dm" #include "code\game\objects\effects\zone_divider.dm" #include "code\game\objects\effects\alien\aliens.dm" @@ -986,6 +991,7 @@ #include "code\game\objects\items\robobag.dm" #include "code\game\objects\items\shooting_range.dm" #include "code\game\objects\items\toys.dm" +#include "code\game\objects\items\toys_yw.dm" #include "code\game\objects\items\trash.dm" #include "code\game\objects\items\trash_vr.dm" #include "code\game\objects\items\devices\advnifrepair.dm" @@ -1156,10 +1162,12 @@ #include "code\game\objects\items\weapons\id cards\YW_ids.dm" #include "code\game\objects\items\weapons\implants\implant.dm" #include "code\game\objects\items\weapons\implants\implant_vr.dm" +#include "code\game\objects\items\weapons\implants\implantaugment.dm" #include "code\game\objects\items\weapons\implants\implantcase.dm" #include "code\game\objects\items\weapons\implants\implantcase_vr.dm" #include "code\game\objects\items\weapons\implants\implantchair.dm" #include "code\game\objects\items\weapons\implants\implantcircuits.dm" +#include "code\game\objects\items\weapons\implants\implantdud.dm" #include "code\game\objects\items\weapons\implants\implanter.dm" #include "code\game\objects\items\weapons\implants\implanter_vr.dm" #include "code\game\objects\items\weapons\implants\implantfreedom.dm" @@ -1191,12 +1199,15 @@ #include "code\game\objects\items\weapons\storage\backpack.dm" #include "code\game\objects\items\weapons\storage\backpack_vr.dm" #include "code\game\objects\items\weapons\storage\bags.dm" +#include "code\game\objects\items\weapons\storage\bags_vr.dm" #include "code\game\objects\items\weapons\storage\belt.dm" +#include "code\game\objects\items\weapons\storage\belt_vr.dm" #include "code\game\objects\items\weapons\storage\bible.dm" #include "code\game\objects\items\weapons\storage\boxes.dm" #include "code\game\objects\items\weapons\storage\boxes_vr.dm" #include "code\game\objects\items\weapons\storage\briefcase.dm" #include "code\game\objects\items\weapons\storage\fancy.dm" +#include "code\game\objects\items\weapons\storage\fancy_yw.dm" #include "code\game\objects\items\weapons\storage\firstaid.dm" #include "code\game\objects\items\weapons\storage\firstaid_vr.dm" #include "code\game\objects\items\weapons\storage\internal.dm" @@ -1608,6 +1619,7 @@ #include "code\modules\client\preference_setup\global\05_media.dm" #include "code\modules\client\preference_setup\global\setting_datums.dm" #include "code\modules\client\preference_setup\loadout\gear_tweaks.dm" +#include "code\modules\client\preference_setup\loadout\gear_tweaks_vr.dm" #include "code\modules\client\preference_setup\loadout\loadout.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories.dm" #include "code\modules\client\preference_setup\loadout\loadout_accessories_vr.dm" @@ -1813,6 +1825,7 @@ #include "code\modules\economy\Events_Mundane.dm" #include "code\modules\economy\lorenews.dm" #include "code\modules\economy\price_list.dm" +#include "code\modules\economy\price_list_yw.dm" #include "code\modules\economy\retail_scanner.dm" #include "code\modules\economy\TradeDestinations.dm" #include "code\modules\entopics_vr\alternate_appearance.dm" @@ -1840,6 +1853,7 @@ #include "code\modules\events\gravity.dm" #include "code\modules\events\grid_check.dm" #include "code\modules\events\grubinfestation_vr.dm" +#include "code\modules\events\ian_storm_vr.dm" #include "code\modules\events\infestation.dm" #include "code\modules\events\ion_storm.dm" #include "code\modules\events\meteor_strike_vr.dm" @@ -1875,6 +1889,7 @@ #include "code\modules\examine\descriptions\mobs.dm" #include "code\modules\examine\descriptions\paperwork.dm" #include "code\modules\examine\descriptions\smokeables.dm" +#include "code\modules\examine\descriptions\smokeables_yw.dm" #include "code\modules\examine\descriptions\stacks.dm" #include "code\modules\examine\descriptions\structures.dm" #include "code\modules\examine\descriptions\telecomms.dm" @@ -2063,6 +2078,7 @@ #include "code\modules\library\lib_items.dm" #include "code\modules\library\lib_machines.dm" #include "code\modules\library\lib_readme.dm" +#include "code\modules\library\hardcode_library\_library.dm" #include "code\modules\lighting\lighting_area.dm" #include "code\modules\lighting\lighting_atom.dm" #include "code\modules\lighting\lighting_corner.dm" @@ -2313,6 +2329,11 @@ #include "code\modules\mob\living\carbon\human\species\outsider\shadow.dm" #include "code\modules\mob\living\carbon\human\species\outsider\skeleton.dm" #include "code\modules\mob\living\carbon\human\species\outsider\vox.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\_defines.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_abilities.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_hud.dm" +#include "code\modules\mob\living\carbon\human\species\shadekin\shadekin_yw.dm" #include "code\modules\mob\living\carbon\human\species\station\alraune.dm" #include "code\modules\mob\living\carbon\human\species\station\blank_vr.dm" #include "code\modules\mob\living\carbon\human\species\station\golem.dm" @@ -2492,6 +2513,7 @@ #include "code\modules\mob\living\simple_mob\subtypes\animal\space\goose_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\animal\space\snake_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\animal\space\space.dm" +#include "code\modules\mob\living\simple_mob\subtypes\animal\space\space_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\animal\space\worm.dm" #include "code\modules\mob\living\simple_mob\subtypes\blob\blob.dm" #include "code\modules\mob\living\simple_mob\subtypes\blob\spore.dm" @@ -2518,11 +2540,16 @@ #include "code\modules\mob\living\simple_mob\subtypes\mechanical\corrupt_maint_drone_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\disbot_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\golem.dm" +#include "code\modules\mob\living\simple_mob\subtypes\mechanical\golem_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\mechanical.dm" +#include "code\modules\mob\living\simple_mob\subtypes\mechanical\mechanical_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\viscerator.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\hivebot.dm" +#include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\hivebot_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\ranged_damage.dm" +#include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\ranged_damage_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\support.dm" +#include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\support_vr.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\hivebot\tank.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\mecha\adv_dark_gygax.dm" #include "code\modules\mob\living\simple_mob\subtypes\mechanical\mecha\combat_mecha.dm" @@ -2582,13 +2609,17 @@ #include "code\modules\mob\living\simple_mob\subtypes\vore\wolf.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\wolfgirl.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\zz_vore_overrides.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\_defines.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\demon.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\demon_abilities.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\demon_subtypes.dm" +#include "code\modules\mob\living\simple_mob\subtypes\vore\demon\~defines.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\morph\morph.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\_defines.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\ability_objects.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\ability_procs.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\shadekin.dm" #include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\types.dm" -#include "code\modules\mob\living\simple_mob\subtypes\vore\shadekin\~defines.dm" #include "code\modules\mob\living\voice\voice.dm" #include "code\modules\mob\new_player\login.dm" #include "code\modules\mob\new_player\login_vr.dm" @@ -2721,21 +2752,27 @@ #include "code\modules\organs\robolimbs_yw.dm" #include "code\modules\organs\wound.dm" #include "code\modules\organs\internal\appendix.dm" -#include "code\modules\organs\internal\bioaugment.dm" +#include "code\modules\organs\internal\augment.dm" #include "code\modules\organs\internal\brain.dm" #include "code\modules\organs\internal\eyes.dm" #include "code\modules\organs\internal\heart.dm" +#include "code\modules\organs\internal\intestine.dm" #include "code\modules\organs\internal\kidneys.dm" #include "code\modules\organs\internal\liver.dm" #include "code\modules\organs\internal\lungs.dm" #include "code\modules\organs\internal\organ_internal.dm" +#include "code\modules\organs\internal\spleen.dm" +#include "code\modules\organs\internal\stomach.dm" #include "code\modules\organs\internal\voicebox.dm" +#include "code\modules\organs\internal\augment\armmounted.dm" +#include "code\modules\organs\internal\augment\bio.dm" #include "code\modules\organs\subtypes\diona.dm" #include "code\modules\organs\subtypes\indestructible.dm" #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\slime.dm" #include "code\modules\organs\subtypes\standard.dm" #include "code\modules\organs\subtypes\standard_vr.dm" @@ -2932,6 +2969,7 @@ #include "code\modules\projectiles\targeting\targeting_mob.dm" #include "code\modules\projectiles\targeting\targeting_overlay.dm" #include "code\modules\projectiles\targeting\targeting_triggers.dm" +#include "code\modules\radiation\radiation.dm" #include "code\modules\random_map\_random_map_setup.dm" #include "code\modules\random_map\random_map.dm" #include "code\modules\random_map\random_map_verbs.dm" @@ -3367,6 +3405,7 @@ #include "maps\submaps\space_submaps\debrisfield\debrisfield.dm" #include "maps\submaps\surface_submaps\mountains\mountains.dm" #include "maps\submaps\surface_submaps\mountains\mountains_areas.dm" +#include "maps\submaps\surface_submaps\mountains\mountains_areas_vr.dm" #include "maps\submaps\surface_submaps\plains\plains.dm" #include "maps\submaps\surface_submaps\plains\plains_areas.dm" #include "maps\submaps\surface_submaps\wilderness\wilderness.dm"